/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
    --primary: #3f220f;
    --white: #fff;
    --dark: #000;
	--secondary: #3a6a3b;
	--red: #cf2127;
	--yellow: #FFC200;
}
a{
	text-decoration: none;
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}
.container{
	max-width: 1250px;
}
h1,h2,h3,h4,h5,h6{
   font-family: serif;
}
/* ================================
   Desktop Navigation
================================ */
.site-header .main-header {
	 position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
      background: transparent !important;
}
.site-header{
	position: relative;
}
.site-header .main-header:hover{
	background: var(--yellow) !important;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: var(--yellow) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header.sticky .nav > li > a{
	color: var(--primary);	
}
.site-header.sticky .btn-primary{
	background: var(--primary);
	color: #fff;
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.wpcf7-submit {
    background: var(--primary);
    padding: 8px 30px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    border: none;
}
.form-control{
	border-radius: 0;
	padding: 10px;
}
.site-header .nav > li > a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 35px 12px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
  color: var(--primary);
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
button#mobileMenuBtn {
    height: 35px;
    width: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    margin-right: 25px;
    background: transparent;
    border-radius: 5px;
}

@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.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 {
    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;
}
#menu-primary-1 li {
    padding: 8px 10px;
}
#menu-primary-1 li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
.mega-menu-section{
    padding:40px 0;
}
.megamenu > li {
    position: static !important;
}
.menu-simple-popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    background: transparent;
    padding: 0;
    display: none;
    z-index: 99999;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    overflow: hidden !important;
}
/* ================================
  Footer Section CSS
================================ */
footer {
    background: #fff;
    position: relative;
    color: #000; 
}
footer .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
footer .container{
	 position: relative;
    z-index: 2;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.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;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
    padding: 9px;
    border-radius: 6px;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    position: relative;
    align-items: baseline;
    gap: 10px;
}
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;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
footer h3 {
    margin-bottom: 18px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: #fff !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	  transition: transform 0.3s ease
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--primary);
}
footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: inline-block;
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
	display: flex;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    padding: 3px;
    height: 40px;
    width: 40px;
    color: var(--light);
    background-color: #bcc6cc;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
footer .social-icons i {
    padding: 0 10px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
	color: var(--primary) !important;
	line-height: 40px;
}
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: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    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%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--yellow);
    color: #fff;
    font-size: 20px;
    padding: 10px 18px;
    border-radius: 10px;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 4;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
#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: 30px;
}
.logo{
    padding: 5px 0;
    border-radius: 10px;
}
.hm-title-bgbox h2 {
    color: #fff;
    font-size: 38px;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}
.contact-btom-img{
	position: relative;
}
.overlay1{
    background-color: #c6d5ee;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    position: absolute;
}
.contact-btom-img img{
	height: 100%;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
}
.btn-primary {
    display: inline-block;
    position: relative;
    padding: 14px 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    z-index: 2;
  }
  .btn-primary-box{
    position:relative;     
    display:block;
    width:100%;
    height:1em;           
  }
  .btn-primary-box .btn-primary-text{
    width:100%;
    text-align:center;
    display:block;
    transition: transform .36s cubic-bezier(.2,.9,.2,1), opacity .28s ease;
    -webkit-backface-visibility:hidden; 
    backface-visibility:hidden;
    will-change:transform, opacity;
    white-space:nowrap;
    box-sizing:border-box;
    padding:0;
    margin:0;
}
  .btn-primary-box .btn-primary-text:nth-child(1){
    top:0;                 
    transform: translateY(0) !important;
    opacity:1 !important;
  }
  .btn-primary-box .btn-primary-text:nth-child(2){
    top:100%;              
    transform: translateY(0) !important;  
    opacity:0;
  }
  .btn-primary:hover .btn-primary-box .btn-primary-text:nth-child(1){
    transform: translateY(-100%) !important;
    opacity:0 !important;
  }
  .btn-primary:hover .btn-primary-box .btn-primary-text:nth-child(2){
    transform: translateY(-100%) !important; /* top:100% + translateY(-100%) => visible at top:0 */
    opacity:1 !important;
  }
  .btn-primary:focus .btn-primary-box .btn-primary-text:nth-child(1),
  .btn-primary:focus .btn-primary-box .btn-primary-text:nth-child(2){
    transition: transform .36s cubic-bezier(.2,.9,.2,1), opacity .28s ease;
  }
.heading {
    position: relative;
    display: block;
    padding-bottom: 15px;
	text-align: center;
}
.heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: var(--red);
}
.heading::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--yellow);
}
/* ================================
   Bradcrumb
================================ */
section.breadcrumb-section {
    background: url(https://loveafricaexpedition.com/wp-content/uploads/2025/12/breadcrumb-bg.jpg);
    padding: 230px 0 80px !important;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
	position: relative;
}
.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(0 0 0 / 27%), rgb(0 0 0 / 20%));
  z-index: 1;
}
.breadcrumb-section .container {
  position: relative;
  z-index: 2;
}
ol.breadcrumb li {
    font-size: 18px;
    color: var(--yellow) !important;
}
.breadcrumb-title h2 {
    font-size: 50px;
    color: var(--yellow) !important;
}
.breadcrumb-item a{
	color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: #fff;
}
/* ================================
   Hero Section
================================ */
.hero-video-wrapper{
	 position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
video{
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.31);
    z-index: 2;
}
        .hero-caption {
            top: 52%;
            transform: translateY(-50%);
            left: 0;
            right: 0;
            text-align: left;
			position: absolute;
			z-index: 2;
        }    
		.hero-caption h1 {
			color: #fff;
			font-size: 75px;
			font-family: serif;
			line-height: 90px;
		}
		.hero-caption h3 {
			color: #ffff;
			display: block;
			font-weight: 500;
			font-size: 30px;
			letter-spacing: 2px;
			padding-left: 60px;
			margin-bottom: 10px;
			position: relative;
		}
.hero-caption h3:before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 52px;
    height: 3px;
    background: var(--yellow);
}
		.hero-caption p {
            color: #fff;
           font-size: 30px;
			font-family: serif;
        }
.hero-buttons {
    display:flex;
    gap:20px;
    margin-top:40px;
}
.btn {
    padding:16px 40px;
    font-size:16px;
    text-decoration:none;
    border-radius:4px;
    transition:0.3s ease;
    font-family:Arial, sans-serif;
}
.btn-outline {
    border:1px solid #fff;
    color:#fff;
}
.btn-outline:hover {
    background:#fff;
    color:#000;
}
.btn-fill {
    background: var(--yellow);
    color:#fff;
}
.btn-fill:hover {
    background: #f1c128;
}
/* ================================
   About Section
================================ */
section{
	padding: 60px 0 30px;
}
.about-content .about-heading {
    justify-content: start;
}
.about-btn .btn-primary{
	background: var(--primary);
	color: #fff !important;
}
 .about-heading img{
	height: 50px;
	width: 50px;
	object-fit: cover;
}
 .about-heading span {
    color: var(--secondary);
    font-size: 25px;
    font-weight: 600;
    font-style: italic;
    font-family: serif;
}
.about-heading{
    display: flex;
    align-items: center;
    gap: 10px;
	justify-content: center;
}
.safari .about-heading,
.experience .about-heading{
	justify-content: center;
}
.about-subheading {
    color: var(--primary);
    font-size: 33px;
    font-weight: 600;
    font-family: serif;
}
/* ================================
   Favoirate safari
================================ */
.safari{
	position: relative;
}
.tiger-img{
	position: absolute;
    left: 0%;
    height: 200px;
    top: -10px;
	transform: scale(0.6);
    opacity: 0;
    transition: transform 1.2s ease-out, opacity 1s ease-out;
}
.tiger-zoom-active {
        transform: scale(1);
        opacity: 1;
    }
.safari-card{
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 420px;
    cursor: pointer;
}
.safari-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}
.safari-card::after{
    content: "";
    position: absolute;
    left:0; top:0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 81%), rgba(0, 0, 0, 0));
    z-index: 1;
}
.safari-info{
    position: absolute;
    left: 0;
    bottom: -140px;
    padding: 20px;
    color: #fff;
    z-index: 2;
    transition: all .4s ease;
}
.safari-info small{
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: .8;
}
.safari-info h4{
    font-family: 'Playfair Display', serif;
    margin: 5px 0;
    font-size: 25px;
	font-weight: 700;
}
.safari-info span {
    font-size: 25px;
    display: block;
    font-weight: 600;
	color: var(--yellow);
}
.safari-btn{
    margin-top: 15px;
    opacity: 0;
    transform: translateY(15px);
    transition: .4s ease;
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
	text-decoration: none;
}
.safari-description{
	 opacity: 0;
    transform: translateY(15px);
    transition: .4s ease;
}
.safari-card:hover img{
    transform: scale(1.08);
}
.safari-card:hover .safari-info{
    transform: translateY(-140px);
}
.safari-card:hover .safari-btn{
    opacity: 1;
    transform: translateY(0);
}
.safari-card:hover .safari-description{
    opacity: 1;
    transform: translateY(0);
}
.safari-title {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 40px;
    color: var(--primary);
    font-family: serif;
}
/* ================================
   Safari Experiences
================================ */
.slider-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 7px;
    border-bottom: 5px solid var(--yellow);
}
    .slider-item img {
      width: 100%;
		height: 430px;
		object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }
    .slider-item:hover img {
      transform: scale(1.05);
    }
    .gradient-overlay {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(
        180deg,
        #3f220f -5.59%,
        rgba(13,22,17,0) 19.92%,
        rgba(13,22,17,0) 54.98%,
        #3f220f 90.96%,
        #3f220f 100%
      );
      z-index: 1;
    }
    .slider-title {
      position: absolute;
      bottom: 20px;
      left: 20px;
      font-size: 25px;
      color: #fff;
      z-index: 5;
	transition: all .4s ease;
    }
.slider-item:hover .slider-title{
	transform:translateY(-30px);
}
    .view-btn {
		text-transform: uppercase;
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 10px 18px;
		background: var(--yellow);
		color: #fff;
		opacity: 0;
		transform: translateY(20px);
		transition: all 0.4s ease;
		z-index: 5;
		cursor: pointer;
		width: 100%;
		text-align: center;
		font-weight: 600;
		font-family: serif;
	}
    .slider-item:hover .view-btn {
      opacity: 1;
      transform: translateY(0);
    }
    .experience{
        max-width: 100%;
        background: #fff;
        z-index: 2;
    }
.experience .slick-prev,
.experience .slick-next{
	display: none !important;
}
/* ================================
       why earth tour
================================ */
.weg-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: serif;
}
        .weg-desc {
            font-size: 17px;
            color: #4a4a4a;
            line-height: 1.7;
        }
    .weg-quote-box {
		margin-top: 25px;
		padding: 20px 25px;
		border-left: 4px solid var(--yellow);
		background: #ffc2001c;
		border-radius: 8px;
		font-style: italic;
		font-weight: 600;
	}
        .weg-feature-box {
            background: #ffffff;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #eee;
            transition: 0.3s ease;
            text-align: center;
			height: 200px;
        }
        .weg-feature-box i {
            font-size: 35px;
            color: var(--yellow);
            margin-bottom: 15px;
        }
        .weg-feature-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.12);
        }
/* ================================
   Dream Section
================================ */
.dream {
        height: 100vh;
        width: 100%;
        background-image: url('https://loveafricaexpedition.com/wp-content/uploads/2025/12/dream-bg.jpg');
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: center;
        color: white;
    }
    .dream::after {
        content: "";
        position: absolute;
        inset: 0;
        background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(180deg, #3f220f33 37%, #3a6a3b6b 100%);
    }
    .dream-content {
        position: relative;
        z-index: 2;
		width: 70%;
    }
    .dream-sub {
        font-size: 20px;
        color: #e8a542;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        font-weight: 500;
    }
    .dream-sub img {
        width: 40px;
        opacity: 0.9;
    }
    .dream-title {
		font-size: 60px;
		font-family: serif;
		margin-bottom: 20px;
		line-height: 1.15;
	}
    .dream-desc {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 35px;
	}
.weg-feature-box h5 {
    font-size: 23px;
    font-weight: 600;
    color: var(--primary);
}
/* ================================
   Contact Section
================================ */
.contact{
	background: url(https://t4.ftcdn.net/jpg/06/81/90/07/360_F_681900708_eob62aR9Utlko6VsjCrPs2RHN0qVpWmE.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.contact .overlay{
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        180deg,
        #3f220f -5.59%,
        rgba(13,22,17,0) 19.92%,
        rgba(13,22,17,0) 54.98%,
        #3f220f 90.96%,
        #3f220f 100%
      );
    z-index: 1;
}
.contact-form{
	    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 3;
}
/* ================================
   Blog Section
================================ */
.section-title{
    font-family: sarif;
    font-weight: 700;
    font-size: 40px;
}
.section-title span{
    color: var(--secondary);
}
.sub-section-title{
	color: var(--secondary);	
}
.small-post {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
    align-items: center;
}
.small-post img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:6px;
}
.small-post-title{
    font-weight:600;
    font-size:17px;
	color: var(--primary);
}
.post-meta{
    font-size:13px;
    color:#777;
}
.feature-post{
    position:relative;
    overflow:hidden;
    border-radius:8px;
    margin-bottom:30px;
}
.feature-post::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.3); /* semi-transparent black */
  z-index: 1; /* behind content */
  transition: background 0.3s ease;
}
.feature-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #fff; /* adjust text color for visibility */
}
.feature-post img{
    width:100%;
    height: 400px;
    object-fit:cover;
    transition:0.4s ease;
}
.feature-post:hover img{
    transform:scale(1.05);
}
.feature-content{
    position:absolute;
    bottom:20px;
    left:20px;
    color:white;
}
.feature-content .tag {
    background: var(--yellow);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    display: inline-block;
    font-weight: 600;
}
.feature-title a{
    font-size:26px;
    font-weight:700;
    margin-top:10px;
    font-family: 'Playfair Display', serif;
	color: #fff !important;
}
.feature-meta{
    font-size:14px;
    margin-top:8px;
}
/* ================================
   Testimonial Section
================================ */
.testimonial .testimonial-title{
  text-align:center;
  font-size:34px;
  font-weight:700;
	color: var(--primary);
}
.testimonial .rating-left{
  text-align:center;
  padding:20px;
}
.testimonial .rating-left h3{
  font-size:26px;
  font-weight:700;
}
.testimonial .stars img{
  width:150px;
}
.testimonial .rating-left small{
  color:#333;
  font-size:14px;
}
.testimonial .testimonial-card {
    background: #fafafa;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    min-height: 230px;
    display: flex !important;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
}
.testimonial .profile-box{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.testimonial .profile-box img{
  width:45px;
  height:45px;
  border-radius:50%;
}
.testimonial .profile-info h5{
  font-size:16px;
  margin:0;
  font-weight:600;
}
.testimonial .profile-info small{
  color:#666;
  font-size:12px;
}
.testimonial .review-stars{
  margin:10px 0;
}
.testimonial .testimonial-card p{
  font-size:14px;
  color:#444;
}
.testimonial .slick-prev:before, .slick-next:before{
  color:#000;
  font-size:30px;
}
.testimonial .slick-slide {
    padding: 20px;
    margin: 15px;
}
.testimonial .ti-stars{
    display: flex;
}
.testimonial-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.verify-button{
	display: block;
    text-align: right;
    font-size: 12px;
    color: #000000;
    margin: 12px 0;
}
.verify-inner{
	display: inline-block;
    position: relative;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
	background-color: #157351;
    color: white;
}
.verify-inner:hover .verify-text{
	visibility: visible;
	opacity: 1;
	transition-delay: 0.1s;
}
.verify-text{
	    width: 320px !important;
    left: unset;
    transform: unset;
    right: -7px;
    visibility: hidden;
    opacity: 0;
    padding: 12px 24px;
    position: absolute;
    bottom: 100%;
    width: 100%;
    min-width: 220px;
    max-width: 585px;
    background: white;
    border: 1px solid black;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    text-align: left;
    z-index: 2147483647;
    color: #000000 !important;
    transition: all 0.3s;
    transition-delay: 0.35s;
    white-space: normal !important;
    right: unset;
    left: 50%;
    transform: translateX(-70%);
}
.verify-text::before{
	position: absolute;
    content: "";
    bottom: -18px;
    margin: 0 auto;
    width: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: 20px solid #000;
    border-top: 0;
    transform: rotate(45deg);
	left: unset;
    right: 15px;
}
.verify-text::after{
	position: absolute;
    content: "";
    bottom: -18px;
    margin: 0 auto;
    width: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: 20px solid var(--yellow);
    border-top: 0;
    transform: rotate(45deg);
	left: unset;
    right: 15px;
	    bottom: -16px;
    margin-right: 1px;
    border-bottom-color: white;
}
.verify-inner img{
	filter: invert(1);
}
section.client-logo {
    background: var(--primary);
    padding: 60px 0;
}
.client-logo-inner {
    width: 100%;
    margin: auto;
}
.client-logo-inner img{
    width: 180px;
}
.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.testimonial-left h2 {
    font-weight: 600;
}
/*=======================
  Safari Page Css 
==============================*/
.safari-icon-box img{
	height: 70px;
	width: 70px;
}
.safari-icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.safari-quality-box {
    background: #fff;
    box-shadow: 0 0 10px 0 #80808042;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--yellow);
	height: 170px;
}
.destination-section .destination-safari-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:all .35s ease;
    height:100%;
}
.destination-section .destination-safari-card:hover{
    transform:translateY(-10px);
}
.destination-section .destination-safari-card .safari-img{
    height:260px;
    overflow:hidden;
}
.destination-section .destination-safari-card .safari-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}
.destination-section .destination-safari-card:hover img{
    transform:scale(1.08);
}
.destination-section .destination-safari-card .safari-content{
    padding:28px;
}
.destination-section .destination-safari-card .safari-content h3{
    font-size:24px;
    margin-bottom:12px;
}
.destination-section .destination-safari-card .safari-content p{
    color:#555;
    font-size:15.5px;
    line-height:1.7;
}
.list{
	position: relative;
    padding-left: 34px !important;
}
.list li{
	line-height: 35px;
}
.list li::before{
    content: "\f058"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    position: absolute;
    left: 0;
    color: var(--yellow); 
    font-size: 18px;
}
section.update {
    text-align: center;
    background: url(https://loveafricaexpedition.com/wp-content/uploads/2025/12/update-bg-scaled.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
	z-index: 1;
	color: #fff;
	padding: 80px 0;
    position: relative;
}
section.update::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 34%); /* black overlay */
    z-index: -1;
}
section.update .heading{
	color: #fff !important;
}
/* ==================
 About Page css
===========================*/
.team-section {
  text-align: center;
}
.team-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: #fff;
  margin-bottom: 30px;
  height: 370px;
  transition: transform 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
}
.team-card img {
  width: 100%;
  padding: 30px;
  display: block;
  transition: transform 0.4s ease;
}
.team-card:hover img {
  transform: scale(1.05);
}
.team-info {
  background: #fff;
  padding: 15px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.team-info h5 {
  margin-bottom: 5px;
  font-weight: 600;
  color: #000;
}
.team-info p {
  margin-bottom: 0;
  color: #af1a1a;
}
.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffc20094;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.team-card:hover .team-overlay {
  opacity: 1;
  transform: translateY(0);
}
.team-overlay p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.15s,
              transform 0.4s ease 0.15s;
    color: var(--primary);
    font-weight: 600;
}
.team-card:hover .team-overlay p {
  opacity: 1;
  transform: translateY(0);
}
/* ==================
    Contact Page
====================*/
.contact-page-form {
    background: #fff;
    padding: 30px;
}
iframe {
    border: 0;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 #80808030;
}
.contact-details-box {
    background: #fff;
    box-shadow: 0 0 10px 0 #80808040;
    padding: 20px 40px;
    border-radius: 10px;
    border: 1px dashed var(--yellow);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-details-box h2 {
    font-size: 26px !important;
    font-weight: 600;
}
.contact-details-box span{
	color: #000;
}
.box-inner-contact {
    display: flex;
    align-items: center;
}
.contact-details-box i {
    background: var(--yellow);
    height: 40px;
    width: 40px;
	padding: 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 10px;
    font-size: 22px;
}
section.contact-details {
    background: url(https://loveafricaexpedition.com/wp-content/uploads/2025/12/contact-box-bg.png) var(--primary);
    padding: 70px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.contact-details-box a{
	color: #000;	
}
/* ===================
 Tekking page css
======================*/
.tekking .about-heading{
   justify-content: flex-start;
}
.trek-section {
            background: url('https://www.uyaphi.com/sites/default/files/styles/hero_1200/public/tanzania/safari/walk-the-great-migration.jpg?itok=R0UP6V7B') center/cover no-repeat;
	padding: 100px 0;
	position: relative;
	z-index: 1;
        }
.trek-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}
.trek-section .container {
    position: relative;
    z-index: 2;
}
.trek-overlay {
    background: rgba(0,0,0,.6);
}
.trek-box {
   background: var(--primary);
   transition: all .35s ease;
}
.trek-box:hover{
	transform: translatey(-10px);
}
.trek-box h5{
	color: var(--yellow);
}
/*----------------------
 *  kilimanjaro Page 
 * ----------------------------*/
.form-box {
        background: rgb(255 255 255 / 36%);
        backdrop-filter: blur(6px);
        border-radius: 12px;
        padding: 30px;
        max-width: 70%;
        margin: 0 auto;
}
    .range-labels p{
        font-size: 15px;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        margin-top: 5px;
        opacity: .8;
    }
section.fit-form {
    background: url(https://loveafricaexpedition.com/wp-content/uploads/2025/12/Kilimanjaro-bg-form.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.year-box {
  background:var(--yellow);
  color: var(--primary);
  font-weight:700;
  padding:12px 35px;
  display:inline-block;
  border-radius:6px 6px 0 0;
  margin-bottom:20px;
  font-size:20px;
}
.nav-tabs .nav-link {
  background: var(--primary);
  color:#fff;
  font-weight:600;
  margin-right:10px;
  padding:12px 28px;
  border-radius:4px;
  border:none;
}
.mounth-tour .nav-tabs{
	border: none;
}
.nav-tabs .nav-link.active {
  background:var(--yellow);
  color: var(--primary);
}
.tour-card {
    border: 1px solid #ddd;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    width: 80%;
    margin: 10px auto;
    background: url(https://loveafricaexpedition.com/wp-content/uploads/2025/12/tour-box-bg.jpg);
	background-position: center;
    color: #fff;
	position: relative;
	z-index: 1;
}
.tour-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8); /* overlay strength */
    z-index: -1;
}
.tour-btn {
 background:var(--yellow);
  color: var(--primary);
  padding:10px 20px;
  border-radius:4px;
  font-weight:600;
  display:inline-block;
  margin-left:auto;
  transition:0.3s;
}
.fact-box {
    background: #ffffff91;
    border: 1px solid var(--primary);
    padding: 30px;
    border-radius: 10px;
    height: 140px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.fact-box:hover {
    background: #ffc20061;
    border-color: var(--primary);
    transform: translateY(-5px);
    color: var(--primary);
}
.fact-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 5px;
}
        .fact-value {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
        }

section.fact {
    background: url(https://loveafricaexpedition.com/wp-content/uploads/2025/12/fact-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0;
    
}
/* ================================
  		Zanzibar Page
================================ */
.best-place-section .sticky-img {
  position: sticky;
  top: 100px;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
}
.best-place h3 {
    font-weight: 700;
    color: var(--secondary);
}
.best-place-section .best-place {
    background-color: #ffeb3b1c;
    padding: 30px;
    box-shadow: 0 0 10px 0 #8080805c;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px dashed var(--secondary);
}
.fixed-image-box {
    position: sticky;
    top: 100px;
}
.fixed-image-box img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
/* ================================
   Gallery Page
================================ */
.gallery-section .tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    align-items: center;
    justify-content: center;
}
.gallery-section .tab-btn {
  padding: 10px 25px;
  border: none;
  background: #ddd;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
}
.gallery-section .tab-btn.active {
    background: var(--yellow);
    color: var(--primary);
    font-weight: 700;
}
.gallery-section .tab-content {
  display: none;
}
.gallery-section .tab-content.active {
  display: block;
}
.gallery-section #imageGallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .4s ease;
}
.gallery-section #imageGallery img:hover {
  transform: scale(1.05);
}
.gallery-section .video-item video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}
.slick-next {
    right: 0px;
    z-index: 4;
}
.slick-prev {
    left: 0px;
    z-index: 4;
}
/*===========================
    Package Details Page
=========================== */
h1.safari-main-heading {
    color: var(--primary);
    font-weight: 600;
    font-size: 40px;
}
h4.safari-tag {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
}
 .itinerary-table th,
  .itinerary-table td {
    vertical-align: top;
    font-weight: 500;
  }
  .country-title {
    font-size: 20px;
    font-weight: 700;
  }
  .sub-text {
    font-weight: 400;
    display: block;
  }
.itinerary-table {
    background-color: var(--primary);
    color: #fff;
}
.itinerary-table table {
  background-color: #fff3b0; 
}
.itinerary-table thead {
  background-color: #f4c430; 
  color: #000;
}
.itinerary-table th,
.itinerary-table td {
  background-color: #fff7cc; 
  vertical-align: top;
  font-weight: 500;
}
.itinerary-table tbody tr:hover td {
  background-color: #ffe066;
}
.country-title {
  font-size: 20px;
  font-weight: 700;
}
.sub-text {
  font-weight: 400;
  display: block;
}
.day1-img{
	overflow: hidden;
}
.day1-img img{
	width: 100% !important;
	max-height: 80vh !important;
	object-fit: cover !important;
	transition: transform 0.4s ease;
}
.day1-img:hover img {
  transform: scale(1.05);
}
.img-box{
	overflow:hidden;
}
.img-box img{
	transition: transform 0.4s ease;
}
.img-box:hover img {
  transform: scale(1.10);
}
.day1-contain {
    position: relative;
    width: 50%;
    margin: auto;
}
.day1-heading {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
}
.day1-heading h2 {
    font-weight: 600;
    font-size: 40px;
}
.day1-content hr {
    color: var(--yellow);
    opacity: 1;
    margin: 2rem 0;
}
.plan {
    background: #ffc20042;
    color: #000000;
    padding: 10px 40px;
    width: 40%;
    border-left: 4px solid var(
    --yellow);
    border-radius: 7px;
}
.plan p{
	margin: 0;
}
.multi-slider {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}
.slide {
  min-width: 33.3333%;
  padding: 10px;
}
@media (max-width: 991px) {
  .slide { min-width: 50%; }
}
@media (max-width: 576px) {
  .slide { min-width: 100%; }
}
.img-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.img-box img {
    width: 100%;
    transition: transform 0.4s ease;
    height: 65vh;
    object-fit: cover;
}
.img-box:hover img {
  transform: scale(1.10);
}
.img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
}
section.day-tabs {
    background: #ffc20036;
}
section.safari-contact .contact-page-form {
    background: transparent;
}
section.safari-contact {
    background: #ffc20036;
}
.img-title {
    position: absolute;
    bottom: 40px;
    left: 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    z-index: 2;
    font-family: serif;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 15px;
  z-index: 5;
  cursor: pointer;
}
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.tab-content img {
    max-width: 100% !important;
    height: 400px !important;
    max-height: 400px !important;
    object-fit: cover !important;
}
/*===========================
    Tour Package Details 
===================================*/
.leo-breadcrumb{
	background: #721121;
    padding: 40px 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
	font-size: 18px;
	font-weight: 600;
    width: 100%;
    box-shadow: 0 0 7px 0 #8080807d;
}
.leo-breadcrumb a{
	color: #fff !important;
}
ul,figure{
	margin: 0 !important;
}
.btn-primary {
    background-color: var(--primary) !important;
    color: #fff !important;
	border: none !important;
    z-index: 0 !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    letter-spacing: .6px !important;
}
.package-content h2 {
	padding-left: 15px;
	border-left: 3px solid var(--primary);
	line-height: 22px;
	font-weight: 500;
	font-size: 23px;
}
.packagedtlstab {
	column-gap: 35px;
	border-bottom: 1px solid #dee2e6 !important;
	padding: 15px 0 25px;
	margin-top: 20px;
	list-style-type: none;
}
.meal {
    background: #3f220f1f;
    display: inline-block;
    padding: 10px;
    width: 60%;
    border-left: 4px solid var(--primary);
}
.meal p{
	padding: 0;
	margin: 0;
}
.packagedtlstab li a {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    margin-bottom: 10px;
    text-decoration: none;
}
.packages-details .accordion-item {
	margin: 0;
	border: none !important;
	position: relative;
	z-index: 1;
}
.accordion-body ul {
	margin: 12px 0;
}
.accordion-body ul li {
	position: relative;
	margin-bottom: 7px;
	padding-left: 20px;
}
.accordion-body ul li:before {
	position: absolute;
	content: '\2022';
	top: 0;
	left: 0;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	color: var(--primary);
	transform: rotate(90deg);
	font-size: 13px;
}
.packages-details .accordion-item p strong {
	font-weight: 500;
	color: var(--primary);
	font-size: 17px;
}
#accordion1 .accordion-header button {
    padding-left: 30px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    padding-right: 35px;
}
.packagedtlslist#Itinerary #loadMore {
	display: inline-flex !important;
	font-size: 15px;
	font-weight: 500;
	padding: 0;
	border: none;
	background: 0 0;
	color: #525252;
	align-items: center;
}
.packagedtlslist#Itinerary #loadMore i {
	font-size: 12px;
	margin-left: 5px;
	transition: .5s;
}
#loadMore.nocontent i {
	transform: rotateX(180deg);
}
.packagedtlslist .openall {
	padding: 0 !important;
	font-size: 15px !important;
	display: none;
	border: none;
	background: 0 0;
	color: var(--primary);
}
.packagedtlslist .openall:focus {
	box-shadow: none;
}
.itenerarylist .accordion-item {
	padding-bottom: 22px;
}
#accordion1 .itenerarylist.active,
.inputfield span,
.packagesidebar>p strong {
	display: block;
}
#accordion1 .accordion-item:before {
    position: absolute;
    bottom: 22px;
    left: 13px;
    top: 25px;
    height: 100%;
    content: '';
    border-left: 1px dashed var(--primary);
    z-index: -1;
}
#accordion1 .itenerarylist:nth-child(2) .accordion-item:before {
    bottom: -1px !important;
}
#accordion1 .accordion-item .accordion-header:before {
	position: absolute;
	top: 20px;
	left: 11px;
	height: 6px;
	width: 6px;
	background: var(--primary);
	content: '';
	z-index: 9;
	border-radius: 50px;
	outline: 1px solid var(--primary);
	outline-offset: 4px;
}
#accordion1 .accordion-item .accordion-header:after {
	position: absolute;
	content: "";
	top: 18px;
	left: 4px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #11722661;
	box-shadow: 0 0 10px #11722661;
	animation: 3s linear infinite forwards playbtn;
	z-index: 1;
	display: none;
}
#accordion1 .accordion-header:hover:after {
	display: block !important;
	z-index: 11;
}
#accordion1 .accordion-body {
	padding-left: 55px;
}
.accordion-body p {
	font-size: 14px;
	line-height: 28px;
}
.packagedtlslist {
	padding-top: 40px;
}
.accordion-button img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}
.packagedtlslist h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}
.packagedtlslist button i {
	font-size: 18px;
	margin-left: 8px;
}
.package-item .fa-check-circle,
.packagedtlslist button .fa-check-circle {
	color: green;
}
.packagedtlslist button .fa-times-circle {
	color: var(--primary);
}
.packagesidebar {
	box-shadow: 0 5px 10px #ddd !important;
	padding: 20px 20px 15px;
	border-radius: 6px;
	position: sticky;
	top: 150px;
}
.wpcf7-not-valid::placeholder {
	color: red;
}
.packagesidebar form strong {
	font-size: 10px;
	display: block;
	margin-bottom: 10px;
	letter-spacing: 0;
	font-weight: 600;
}
.packagesidebar form strong a {
	color: var(--primary);
	text-decoration: underline;
	font-size: 10px;
	font-weight: 600;
}
.packagesidebar input[type=submit] {
	width: 100%;
	font-weight: 400;
	border-radius: 3px;
	color: var(--white);
}
.packagesidebar-top {
	background: #ededed;
	padding: 15px 20px;
	border-radius: 10px;
	margin-bottom: 15px;
}
.packagesidebar-top img {
	width: 48px;
}
.packagesidebar-top h3 {
	margin: 8px 0 2px;
	font-size: 18px;
	font-weight: 600;
}
.packagesidebar-top p {
	font-size: 13px;
	font-weight: 500;
}
.packagesidebar>p {
	margin: 10px 0 20px;
	font-size: 14px;
}
.packagesidebar>p span {
	font-size: 19px;
	font-weight: 500;
	margin-right: 5px;
	color: var(--primary);
}
.choosepackages h2 {
	font-size: 16px;
	margin-bottom: 50px;
}
.choosepackages .package-item {
	padding: 30px 12px;
	height: 100%;
	box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0;
	border-radius: 15px;
}
.choosepackages .package-item h3 {
	text-align: center;
	text-transform: uppercase;
	background: #8e6f4a;
	color: var(--white);
	font-weight: 400;
	font-size: 20px !important;
	letter-spacing: .5px;
	padding: 25px;
	border-radius: 15px;
	margin-top: -50px;
}
.choosepackages .row .col-sm-4:first-child .package-item h3 {
	background: #626772;
}
.choosepackages .row .col-sm-4:last-child .package-item h3,
.choosepackages .row .col-sm-4:nth-child(3) .package-item h3 {
	background: #141414;
}
.package-item h4 {
	text-align: center;
	font-size: 15px;
	margin: 20px 0 10px;
	letter-spacing: -.1px;
}
.package-item ul li {
	padding-left: 20px;
	position: relative;
	font-size: 14px;
	line-height: 24px;
	margin: 5px 0;
}
.package-item ul li i {
	position: absolute;
	top: 6px;
	left: 0;
}
.ammount {
	margin-bottom: 10px;
	color: #565656;
	font-size: 15px;
	line-height: 26px;
}
.ammount strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
}
#amount,
#quantity,
small {
	font-size: 19px;
	font-weight: 500;
	color: var(--primary);
}
.packagesidebar form span.wpcf7-list-item {
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
}
.packagesidebar form input[type=email],
.packagesidebar form input[type=tel],
.packagesidebar form input[type=text],
.packagesidebar form select,
.packagesidebar form textarea {
	padding: 10px 14px;
	font-size: 14px;
	margin-top: 6px;
	height: 46px;
}
.packagesidebar form textarea {
	height: 100px;
	margin: 0 0 6px;
}
.packagesidebar .intl-tel-input.allow-dropdown {
	margin-bottom: 10px;
}
.number-input {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 10px;
}
.number-input p {
	font-size: 16px;
	font-weight: 500;
}
.inputfield {
	display: flex;
	align-items: center;
}
.inputfield input[type=number] {
	width: 31px;
	padding: 0;
	text-align: center;
	border: none;
	margin: 0 2px;
	font-size: 20px;
}
.inputfield button {
	border: none;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	font-size: 11px;
}
.inputfield input::-webkit-inner-spin-button,
.inputfield input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.socialshare {
	margin-top: 18px;
	text-align: center;
}
.placesldr-item img {
	border-radius: 6px;
	height: 215px;
	object-fit: cover;
}
.place {
	margin-top: 40px;
}
.place h3 {
	font-size: 20px;
	font-weight: 600;
	color: #1c1c1c;
}
.placesldr-item h3 {
	font-size: 17px !important;
	font-weight: 600;
	margin-top: 12px !important;
}
.placesldr button.slick-next.slick-arrow,
.placesldr button.slick-prev.slick-arrow {
	top: 42%;
}
.placesldr .slick-slide {
	margin: 0 6px;
}
.secondary-container.packages-details .safarislist {
	box-shadow: 3px 3px 15px #00000014;
}
.choosepackages h3,
.secondary-container.packages-details .packagedtlslist h3 {
	font-size: 16px;
	margin-bottom: 5px;
}
.secondary-container.packages-details .safarisldr .slick-slide {
	margin: 20px 6px 15px;
}
.servicesdtls-sidebar form input[type=email],
.servicesdtls-sidebar form input[type=tel],
.servicesdtls-sidebar form input[type=text],
.servicesdtls-sidebar form textarea {
	border-radius: 2px;
	margin-bottom: 10px;
	padding: 10px 12px !important;
	width: 100%;
	line-height: normal;
	font-size: 13.5px;
	min-height: 45px;
	background: #ff75000d;
	border: 1px solid #ff4f3a2e;
}
.servicesdtls-sidebar form input.wpcf7-form-control.has-spinner.wpcf7-submit {
	border-radius: 6px;
	margin: 5px 0 0;
	padding: 10px !important;
	width: 100%;
	line-height: normal;
	font-size: 13.5px;
	min-height: 45px;
}
.servicesdtls-sidebar form label {
	display: block;
	font-weight: 500;
	color: #181818;
}
.servicesdtls-sidebar h3 {
	font-size: 19px;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: .5px;
}
.servicesdtls-sidebar h3:after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2.8px;
	background: #d1d1d1;
	border-radius: 13px;
}
.hotel-name {
            font-weight: 600;
        }
        .hotel-type {
            display: block;
            font-size: 0.9rem;
        }
.highlight h3,
.itenerarylist h3{
    color: var(--primary);
    margin: 1.5rem 0 !important;
    font-weight: 700;
    font-size: 20px !important;
}
.servicesdtls-sidebar ul li a {
	position: relative;
	line-height: 34px;
	font-weight: 500;
	padding-left: 19px;
}
.servicesdtls-sidebar ul li a:before {
	position: absolute;
	content: '\f0a4';
	font-family: 'Font Awesome 5 Free';
	top: -6px;
	left: 0;
	color: var(--primary);
	font-size: 14px;
}
.wpcf7 form .wpcf7-response-output {
	margin: 1em 0 0 !important;
	padding: 8px 10px !important;
	font-size: 14px !important;
}
/* --------------------------- */
figure.packagedtlstop-img {
	overflow: hidden;
}
figure.packagedtlstop-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: .5s 
ease-in-out;
}
figure.packagedtlstop-img:hover img{
	transform: scale(1.1);
}
span.scheduled_day {
    position: absolute;
    right: 15px;
    top: 30px;
    background: #00000061;
    color: #fff;
    padding: 4px 13px;
    font-size: 14px;
    letter-spacing: .5px;
    border-radius: 4px;
    border: 1px solid #cccccc82;
}
span.datetag {
    position: absolute;
    top: 25px;
    left: 20px;
    background: #fff;
    padding: 8px 20px 8px 55px;
    line-height: normal;
    border-radius: 30px;
    font-weight: 400;
}
span.datetag i {
    height: 42px;
    width: 42px;
    background: var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border: 3px solid #fff;
}
figure.packagedtlstop-img ul {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    border-top: 1px solid #ffffffba;
    background: #0000004d;
	margin: 0 !important;
}
figure.packagedtlstop-img ul li {
    background: #ffffffe8;
    color: var(--primary);
    padding: 3px 18px 4px;
    border-radius: 5px;
    font-weight: 600;
    transition: .5s ease-in-out;
}
.secondary-container{
	padding: 60px 0;
}
.tour_map iframe {
    height: 360px;
    width: 100%;
}
.download-icon {
    cursor: pointer;
    margin-left: 10px;
    display: flex;
    align-items: center;
	color: #721121;
}
.fullitnry {
    margin-top: -15px;
    background: #fff;
    z-index: 1;
    position: relative;
    padding: 15px;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(.25rem - 1px) !important;
    border-top-right-radius: calc(.25rem - 1px) !important; 
}
.accordion-item .accordion-button {
    box-shadow: rgba(99, 99, 99, .2) 0 2px 8px 0 !important;
}
.packagedtlslist button {
    font-weight: 500;
    padding: 14px;
    font-size: 18px;
}
.accordion-button:hover{
	background: #fff !important;
	color: #000 !important;
}
.accordion-button {
    position: relative !important;
    display: flex !important;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #000 !important;
    text-align: left;
    background-color: #fff !important;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s 
ease-in-out, background-color .15s 
ease-in-out, border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out, border-radius .15s 
ease;
    box-shadow: 0 2px 3px #e7e7e7 !important;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.05rem !important;
    height: 1.05rem !important;
    margin-left: auto !important;
    content: "";
    background-size: 16px !important;
    transition: transform .2s 
ease-in-out !important;
    position: absolute !important;
    right: 16px !important;
    top: 19px !important;
}
.accordion-body {
    padding: 15px !important;
	padding-left: 30px !important;
}
.itenerarylist .accordion-item figure, .support p i {
    padding-right: 10px;
}
.accordion-body img {
    height: 250px;
    width: 300px;
    object-fit: contain;
}
button.slick-prev.slick-arrow {
    left: -10px;
}
button.slick-prev.slick-arrow, button.slick-next.slick-arrow {
    position: absolute;
    right: -80px;
    height: 30px;
    width: 30px;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    transition: .5s;
    border-radius: 50px;
    z-index: 1;
    box-shadow: 0 0 10px #c5c5c5;
}
button.slick-prev.slick-arrow:after, button.slick-next.slick-arrow:after {
    position: absolute;
    content: "\f053";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    background: #fff;
    font-size: 15px;
}
.slick-prev:before, .slick-next:before {
	display: none;
}
button.slick-next.slick-arrow:after {
    content: "\f054";
}
.scheduled button.slick-prev.slick-arrow:after, button.slick-prev.slick-arrow:after, button.slick-next.slick-arrow:after {
    font-size: 12px !important;
    padding: 0 !important;
}
button.slick-next.slick-arrow {
    right: -10px;
}
.tourslider-nav .slick-slide {
	margin: 0 5px 0 0;
}
.tourslider img {
	height: 456px;
	width: 100% !important;
	object-fit: cover;
	transition-duration: 1s;
}
.tourslider img:hover {
	transform: scale(1.2);
}
.tourslider button.slick-next.slick-arrow,
.tourslider button.slick-prev.slick-arrow {
	right: 65px !important;
	z-index: 1 !important;
	bottom: 10px !important;
	transform: translate(0) !important;
	top: inherit;
	left: inherit;
	opacity: 1;
	border: 1px solid var(--primary);
}
.tourslider button.slick-next.slick-arrow {
	right: 10px !important;
}
.pagesidebar,
.tourdtl-sidebar {
	position: sticky;
	top: 0;
}
.tours-slider .package-contactform input[type=submit] {
	width: 100%;
}
.tours-slider .package-contactform {
	padding: 20px;
	border-radius: 4px;
	border: 2px solid #f7941d59;
}
figure.destinationthumb img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 12px;
	object-position: top;
}
.destinationplace {
	padding: 10px 0 20px;
}
.destinationplace button.slick-next.slick-arrow,
.destinationplace button.slick-prev.slick-arrow {
	top: 44% !important;
	transform: translateY(-56%) !important;
}
.destinationplace .leftheading {
	text-transform: capitalize;
	font-size: 30px;
	letter-spacing: 0;
	margin: 30px 0 20px;
}
.destinationsldr-items img {
	height: 250px;
	border-radius: 6px;
}
.destinationsldr-items h3 {
	font-size: 19px;
	font-weight: 600;
	padding-top: 20px;
}
.destinationdtls.place {
	padding: 40px 0 30px;
}
.destinationdtls.place .placesldr-item figure img {
	height: 280px;
}
.destinationdtls.place .placesldr-item h3 {
	font-size: 22px !important;
}
.destinationdtls.place h2 {
	font-size: 36px;
	text-transform: capitalize;
}
.tours-info.slick-slide,
.tours-slider .slick-slide {
	margin: 0 !important;
}
.tours-info {
	padding: 20px;
	border: 1px solid #f7941d30;
	margin-top: 20px;
	box-shadow: 6px 8px 15px #0000000f;
}
.tours-info h2 {
	font-weight: 600;
	border-left: 3px solid var(--primary);
	line-height: 24px;
	padding-left: 15px;
}
.tours-info h3 {
	font-size: 19px;
	color: #04b6e5;
	margin-bottom: 10px;
}
.tours-info p {
    text-align: justify;
}
.moreinfo-list h3,
.moreinfo-list li strong {
	color: var(--black);
}
.moreinfo {
	background: #f2fcff;
	padding: 60px 0;
	margin-top: 60px;
}
.moreinfo-list {
	box-shadow: 3px 3px 18px #00000021;
	padding: 20px;
	height: 100%;
	border-radius: 6px;
	background: #fff;
}
.moreinfo-list h3 {
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 21px;
}
.moreinfo-list li {
	position: relative;
	color: #6d6c72;
	font-size: 15px;
	padding-left: 20px;
}
.moreinfo-list li:before {
	content: '\f192';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-size: 13px;
}
.secondary-container,
.secondary-container.testimonials .reviews,
.tour-benefits {
	padding: 60px 0;
}
.tourbenefits-item {
	box-shadow: 3px 3px 18px #10101017;
	padding: 30px;
	border-radius: 5px;
	height: 100%;
}
.tourbenefits-item h3 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 10px;
}
.tourbenefits-item li {
	line-height: 45px;
	display: flex;
	align-items: center;
	column-gap: 14px;
	font-size: 16px;
}
.scheduled-info h3,
.toursdtl h3 {
	line-height: 30px;
	text-decoration: underline;
}
.scheduled-info ul,
.toursdtl ul {
	row-gap: 8px;
	column-gap: 6px;
}
#GoToTop img,
.tourbenefits-item li img {
	width: 24px;
}
.tour-benefits #whatsapp {
	width: 15%;
	margin: 40px auto 0;
	padding: 10px 16px;
}
.question .accordion-body p {
	font-size: 14px;
	margin: 0;
}
.question .accordion-button:focus {
	border-color: none;
	box-shadow: none;
}
.secondary-container.safarispage.safari .safaris {
	background: 0 0;
	padding: 0;
}
.secondary-container.safarispage .safarislist {
	box-shadow: 6px 8px 15px #00000014;
}
.safaris .row {
	justify-content: center;
	row-gap: 23px;
}
.safarislist img {
	width: 100% !important;
	height: 200px !important;
	object-fit: cover !important;
}
.safarislist:hover figure img {
	transform: rotate(360deg);;
}
.safarislist {
	position: relative;
	border-radius: 6px;
	background: var(--white);
	transition: .5s;
}
.safarislist:hover {
	transform: translateY(-10px);
}
.safarislist:hover a.safarilinks img {
	transform: scale(.8) rotate(-35deg);
}
.safarislist-info {
	transition: .5s;
	padding: 0 15px 15px;
}
.safarislist-info {
    transition: .5s;
    padding: 0 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.safarislist-info figure {
	height: 75px;
	width: 75px;
	background: var(--primary);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 8px;
	border-radius: 50%;
	margin-top: -35px !important;
	position: relative;
}
.secondary-container.packages-details .safarislist-info figure {
    height: 65px;
    width: 65px;
}
.safarislist-info figure img {
	width: 35px !important;
	height: 35px !important;
	clip-path: inherit;
	transition: .5s;
}
.safarislist-info h3 {
    font-size: 15px !important;
    transition: .5s;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;     
    text-overflow: ellipsis;
    font-weight: 600;
    margin: 10px 0 5px;
}
.safarislist-info p,
.scheduled-info h3,
.toursdtl h3 {
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.safarislist-info p {
	display: -webkit-box;
}
.info-card {
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
   border-left: 1px solid var(--primary);
}
.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.info-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.info-card strong{
	color: var(--primary);
}
.info-card ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}
.info-card ul li:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #0d6efd;
}
.styled-list li:before {
    content: "\f061";
}
.check-list li:before {
    content: "\f00c"; 
    color: #28a745;
}
.cross-list li:before {
    content: "\f00d"; 
    color: #d9534f;
}
.highlight-box .price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}
.packages-details .accordion-body h2 {
    font-size: 30px;
    color: var(--primary);
    font-weight: 600;
}
#accordion1 .itenerarylist:last-child .accordion-item::before {
    display: none;
}
.modal-content {
    background: transparent;
    border: none;
}
.video-section button.video-play-btn.btn {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
}
i.fa-solid.fa-play {
    font-size: 40px;
    color: #fff;
}
.btn-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}
.ratio iframe{
	width: 100%;
	height: 100%;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: var(--primary);
}
@media(max-width: 768px){
    .video-play-btn { font-size: 50px; padding: 15px 20px; }
}
@media(max-width: 480px){
    .video-play-btn { font-size: 40px; padding: 12px 15px; }
}
/*===========================
		Responsive
=========================== */
@media(max-width: 1024px){
	.tiger-img{
		left: 0;
	}
	.hero-caption h1{
		font-size: 65px;
	}
	.weg-title {
		font-size: 38px;
	}
	.dream-title{
		font-size: 50px;
	}
	
	h3.feature-title {
    	font-size: 20px;
		font-weight: 700;
	}
	.safari {
		padding-top: 150px;
	}
	.tiger-img {
		height: 150px;
		top: 15px;
		left: 50%;
		transform: translateX(-50%);
	}
}
@media(max-width: 991px){
	.about-subheading{
		font-size: 27px;
	}
	.about-heading span{
		font-size: 22px;
	}
	.heading{
		font-size: 35px !important;
	}
	.dream-title {
		font-size: 45px;
	}
	.feature-content{
		padding: 0;
	}
	.safari-icon-box img {
		height: 60px;
		width: 60px;
	}
	.contact-details-box{
		padding: 10px;
	}
}
@media(max-width: 767px){
	.hero-caption h1 {
		font-size: 50px;
	}
	.hero-caption h3{
		font-size: 25px;
	}
	.btn {
		padding: 10px 30px;
	}
	.tiger-img{
		height: 150px;
		top: 15px;
	}
	.weg-title {
		font-size: 30px;
	}
	.dream-desc{
		font-size: 16px;
	}
	.dream-title {
        font-size: 35px;
    }
	
	section {
		padding: 40px 0 20px;
	}
	.heading {
		font-size: 28px !important;
	}
	.safari-quality-box{
		height: auto;
	}
	.form-box{
		max-width: 100%;
	}
	.tour-card{
		width: 100%;
	}
	.team-card{
		height: auto;
	}
	.contact-details-box{
		height: auto;
	}
}
@media (max-width: 667px){
	.hero-caption h1{
		line-height: 50px;
		font-size: 40px;
	}
	.hero-caption h3 {
		font-size: 22px;
	}
	.hero-caption p {
		font-size: 22px;
	}
	.safari {
		padding-top: 150px;
	}
	.tiger-img {
		height: 150px;
		top: 15px;
		left: 50%;
		transform: translateX(-50%);
	}
	.dream-content{
		width: 100%;
	}
	.client-logo-inner {
		width: 100%;
		margin: auto;
	}
	.dream{
		height: 85vh;
	}
}

@media(max-width: 568px){
	.safari-card{
		height: auto;
	}
	.logo-box{
		flex-wrap: wrap;
	}
	
	.blog-template .row{
		flex-direction: column-reverse;
	}
	.tour-card {
		flex-direction: column;
		text-align: center;
	}
}

@media(max-width: 479px){
	.hero-caption h1{
		font-size: 32px;
	}
	.hero-buttons {
		display: inline-flex;
	 	gap: 0; 
		 margin-top: 0; 
		flex-direction: column;
	}
	.weg-feature-box h5 {
    	font-size: 18px;
	}
	.weg-feature-box{
		padding: 10px;
	}
	.gallery-section #imageGallery img {
		height: 180px;
	}
	.gallery-section .video-item video{
		height: 180px;
	}
}

@media(max-width: 414px){
	.hero-caption p {
		font-size: 18px;
	}
	.hero-caption h1 {
		font-size: 45px;
		line-height: 60px;
	}
	.hero-caption h3 {
		font-size: 16px;
	}
	.mounth-tour .nav-tabs {
		gap: 10px;
	}
}

@media(max-width: 375px){
	.dream-title {
		font-size: 25px;
	}

	.about-heading img {
		height: 40px;
		width: 40px;
		object-fit: cover;
	}
	.weg-title {
		font-size: 26px;
	}
	.about-heading span {
		font-size: 20px;
	}
	button#mobileMenuBtn{
		margin-right: 0;
	}
	.best-place-section .best-place{
		padding: 20px;
	}
	.contact-page-form{
		padding: 15px;
	}
}
@media(max-width: 360px){
	.hero-caption h1 {
		font-size: 32px;
		line-height: 48px;
	}
	.about-subheading {
		font-size: 20px;
	}
	.weg-feature-box{
		height: 230px;
	}
}