

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root{
  --font-cormorant:"Cormorant Garamond", serif;
  --font-flanklin:"Libre Franklin", sans-serif;
  
/* =================== colors======================== */
--color-deep-earth:#3f3725;
--color-warm-sand:#f4f0eb;
--color-charcol:#2B2B2B;
--color-savannah:#C67A2C;
}
body{
  position: relative;
  margin: 0;
  padding: 0;
}
/* 
// <weight>: Use a value from 300 to 700
// <uniquifier>: Use a unique and descriptive class name

.cormorant-garamond-<uniquifier> {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
Libre Franklin: CSS class for a variable style

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.libre-franklin-<uniquifier> {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */
/* ===== HEADER LAYOUT ===== */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    z-index: 100000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
 transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* left spacer (balances Book Now width) */
.main-header::before {
    content: "";
    width: 120px; /* MUST match Book Now width */
}
.main-header .logo img {
    height: 130px;
    width: 130px;
}

.main-header .right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MAIN NAV ===== */
.main-header nav ul.level-1 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.main-header nav li.level-1 {
    position: relative;
}

/* main links */
.main-header nav a.level-1 {
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #222;
    padding: 10px 0;
    display: flex;
    gap: 6px;
    transition: color 0.3s ease;
}

.main-header nav li.level-1:hover > a.level-1,
.main-header nav li.level-1.active > a.level-1 {
    color: #c49a4b;
}

/* ===== DROPDOWN ICON ===== */
.main-header nav a .icon::after {
    content: "▾";
    font-size: 12px;
    transition: transform 0.3s ease;
}

.main-header nav li.level-1:hover a .icon::after {
    transform: rotate(180deg);
}

/* ===== DROPDOWN ===== */
.main-header ul.level-2 {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* show dropdown on hover */
.main-header li.level-1:hover > ul.level-2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* dropdown items */
.main-header ul.level-2 li {
    list-style: none;
}

.main-header ul.level-2 a.level-2 {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease;
}

.main-header ul.level-2 a.level-2:hover,
.main-header ul.level-2 li.active a.level-2 {
    background: #f6f2ea;
    color: #c49a4b;
}

/* ===== BOOK NOW BUTTON ===== */
.main-header nav li.booknow {
    margin-left: auto;
}

.main-header li.booknow a.level-1 {
    background: #c49a4b;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 30px;
    margin-left: 200px;
}

.main-header li.booknow a.level-1:hover {
    background: #b08a3f;
}
/* ===============================
   SWITCH BUTTON (HAMBURGER)
================================ */

.switch-btn {
  display: block; /* hidden on desktop */
  font-size: 26px;
  cursor: pointer;
  position: relative;
}

.switch-btn i {
  color: #111;
  display: none;
}

/* Show hamburger by default */
.switch-btn .fa-bars {
  display: none;
}

/* Active state (menu open) */
.switch-btn.active .fa-bars {
  display: none;
}

.switch-btn.active .fa-xmark {
  display: block;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 0px;
    flex-direction: column;
    width: 50%;
    height: 100%;
    align-items: start;
    border-top: 1px solid #eee;
    justify-content: center;
    overflow-y: auto;
  }
  .mobile-nav.active{
    display: block;
  }
  /* ========================== Main header when scrolled start================================ */
  /* ===== HEADER WHEN SCROLLED ===== */
.main-header.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Change link color when header is white */
.main-header.scrolled nav a.level-1 {
    color: #222;
}

/* Active link when scrolled */
.main-header.scrolled nav li.level-1.active > a.level-1 {
    color: #a57809;
}
  /* ========================== Main header when scrolled End================================ */
  /* ===== HERO SECTION ===== */
.hero {
    position: relative;
  /* padding: 80px 20px; */
  height: 100vh;
  overflow: hidden;
  background: #000;
  color: #fff;
  text-align: center;
}
.btn-main{
    display: flex;
    width: 100%;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
}
.btn-main a{
    font-family: var(--font-cormorant);
    text-transform: uppercase;
    background: rgba(0, 0, 0, .4);
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
}
.btn-main a:first-child{
    margin-right: 20px;
}
.hero-content{
    position:relative ;
    top: 0px;
    left: 0px;
    width: 100%;
    height:100%;

}

.hero h1 {
    position: absolute;
    text-transform: uppercase;
    top: 54%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-family: var(--font-cormorant);
    padding: 0 10%;
  font-size: 80px;
  font-weight: bold;
  z-index: 50;
  margin-bottom: 15px;
}
.hero h1::after{
    z-index: 1000;
    position: absolute;
    content: '';
    width: 50px;
    height: 5px;
    background: #fff;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.hero p {
    position: absolute;
    top:90%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 18px;
  color: #ddd;
}
.hero .hero-desc-m{
    position: absolute;
    left: 50%;
    top:70%;
    font-size: 16;
}

/* ===== VIDEO AREA ===== */
.video-wrapper {
  position: absolute;
  /* max-width: 900px; */
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}
.video-poster {
top: 0;
left: 0;
 position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
 
}

/* Video hidden initially */
.video-wrapper video {
  display: none;
  width: 100%;
}

/* Play button */
.play-btn {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.play-btn:hover {
  background: rgba(0,0,0,0.8);
}
  /* ================================ hero section end============================= */
/* ============= mobile menu================= */
 /* Show mobile navigation */
 @media (max-width: 768px) {
  .switch-btn .fa-bars {
  display: block;
}
.main-header::before {
   display: none;
} 
.main-header .right {
    flex: 0;   
}

  /* Hide desktop navigation */
  .main-header nav {
    display: none;
  }

  

  .mobile-main {
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
  }

  .mobile-main > li {
    display: block;
    padding: 0;
  }

  .mobile-title ,.mobile-single {
    display: block;
    align-items: start;
    background: var(--color-savannah);
    font-weight:500;
    font-size: 16px;
    padding: 20px 0px 20px 20px;
    color: #222;
  }

  .mobile-sub {
    list-style: none;
    align-items: start;
    margin: 0;
  }

  .mobile-sub li {
    padding: 20px 0;
    background-color: var(--color-deep-earth);
    border-top: 1px solid var(--color-warm-sand);

  }

  .mobile-sub a,
  .mobile-single a {
    text-decoration: none;
    display: block;
    padding-left:20px ;
    color: #fff;
    text-align: start;
    font-size: 15px;
  }

  .mobile-single a {
    display: block;
    width: 100%;
    padding: 20px 0 20px 20px;
    font-weight: 700;
    text-align: center;
    font-size: 16px;
    color: #fff;
  }
}
 @media (max-width: 768px) {
  .why-item {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .3s ease;
}

 }
 /* ============================= ovelappping btn styling=============================== */
 .section-overlap{
  padding:60px 20px;
 }
 
.container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:40px;
    overflow: hidden;
    padding: 0 20px;
}

/* Column */
.col{
    flex:1;
}

/* Text column */
.text-col{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}


/* Button */
.cta-btn{
    display:inline-block;
    padding:12px 22px;
    background:#007bff;
    color:white;
    text-decoration:none;
    border-radius:6px;
}

.cta-btn:hover{
    opacity:0.85;
}

/* Image column */
/* .container{
    max-width:1100px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:40px;
} */

.col{
    flex:1;
}

/* Text column */
.text-col{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.text-content h2{
    font-size:36px;
    margin-bottom:20px;
    font-family: var(--font-cormorant);
}

.cta-btn{
    display:inline-block;
    padding:12px 22px;
    background:var(--color-deep-earth);
    color:white;
    text-decoration:none;
    border-radius:6px;
}

/* Image column */
.image-col{
    position:relative;
    min-height:420px;
}

/* Images */
.image-col img{
    width:65%;
    border-radius:12px;
    position:absolute;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* Small overlap positioning */
.img1{
    top:0;
    left:0;
    z-index:1;
}

.img2{
    top:60px;
    left:160px;
    z-index:2;
}

.img3{
    top:180px;
    left:60px;
    z-index:3;
}

/* Responsive */
@media(max-width:768px){
    .container{
        flex-direction:column;
    }

    .image-col{
        min-height:auto;
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .image-col img{
        position:relative;
        width:100%;
        top:auto;
        left:auto;
    }
}
/* ========================= contact info============================== */
.contact-bar{
    height:150px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:var(--color-deep-earth);
    padding:0 20px;
    font-family:Arial, sans-serif;
}

.contact-item{
    flex:1;
    text-align:center;
    padding-left:20px;
}

.contact-item:not(:first-child){
    border-left:2px solid var(--color-savannah);
}

.contact-item h4{
    margin:0 0 8px;
    font-size:16px;
    color: var(--color-savannah);
}

.contact-item a{
    text-decoration:none;
    color:var(--color-savannah);
}

.contact-item a:hover{
    text-decoration:underline;
}

.icon{
    width:20px;
    height:20px;
    vertical-align:middle;
    margin-right:6px;
    color: var(--color-savannah);
}

/* Button */
.contact-btn{
    padding:10px 18px;
    background:var(--color-savannah);
    color:var(--color-charcol) !important;
    border-radius:5px;
    display:inline-block;
}

.contact-btn:hover{
    opacity:0.85;
}

/* Mobile */
@media(max-width:768px){
    .contact-bar{
        flex-direction:column;
        height:auto;
    }

    .contact-item{
        width:100%;
        padding:15px 0;
        border-left:none !important;
        border-top:1px solid #ccc;
    }

    .contact-item:first-child{
        border-top:none;
    }
}
/* =================== contact form designation start========================== */
.wrapper-cont{
          width: auto;
        padding: 0 20px 40px;
    }

 form {
    display: flex;
    align-items: flex-start;
}
form .left-cont {
    width: 50%;
    padding-right: 15px;
    display: flex;
    flex-wrap: wrap;
}
 form .right-cont {
    width: 50%;
    padding-left: 15px;
}
 form .box {
    margin-bottom: 30px;
}
 form .box.box-name {
    width: 50%;
    padding-right: 15px;
}
 form .label {
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-family: var(--font-cormorant);
    color: var(--color-deep-earth);
}
input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="number"], textarea {
    border-color: var(--color-deep-earth);
    height: 35px;
    font-size: 16px;
    line-height: 18px;
    width: 100%;
}
textarea {
    border: solid 1px var(--color-deep-earth);
    padding: 10px 14px;
    width: 100%;
    height: 150px;
    resize: none;
    border-radius: 0;
    -webkit-appearance: none;
}

 form .box.box-when {
    width: 50%;
    padding-left: 15px;
}
 form .box.box-email {
    width: 70%;
    padding-right: 15px;
}
 form .box.box-phone {
    width: 30%;
    padding-left: 15px;
}
 form .box.box-adults {
    width: 33.3%;
    padding-right: 15px;
}

select {
    background: #fff url(../images/select.png) no-repeat right center;
    padding-right: 40px;
    border-color: var(--color-deep-earth);
    width: 100%;
    height: 35px;
    border-radius: 0 !important;
    font-size: 16px;
}
 form .box.box-teens {
    width: 33.3%;
    padding: 0 15px;
}
 form .box.box-children {
    width: 33.3%;
    padding-left: 15px;
}
 form .right-cont textarea {
    height: 200px;
    font-size: 16px;
    line-height: 18px;
}
 form .box-submit {
    margin-bottom: 0;
    text-align: right;
    transition: .3 ease-in-out;
}
input[type="submit"] {
    background-color: var(--color-deep-earth);
    border: solid 2px var(--color-deep-earth);
    width: auto;
    height: 50px;
    padding: 0 50px 0 20px;
    color: var(--color-warm-sand);
    font-size: 14px;
    line-height: 14px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}
 form .box-submit:hover{
    color: #fff;
    
 }

 form .box.box-mandatory {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    margin-top: 30px;
    font-size: 12px;
}
@media screen and (max-width: 960px) {
     form {
        flex-direction: column;
        position: relative;
    }
         form .left-cont {
        width: 100%;
        padding-right: 0;
    }
   form .right-cont {
        width: 100%;
        padding-left: 0;
    }
}
@media screen and (max-width: 480px) {
    .main-header .logo img {
    height: 100px;
    width: 100px;
}
     form .box.box-name, form .box.box-when, form .box.box-email, form .box.box-phone {
        width: 100%;
        padding: 0;
    }
     form .label {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-family: "Amiri", serif;
    color: #a57809;
}
     form .box-submit {
        text-align: center;
    }
}

/* ===================== contact form designation end=================================================== */
/* ===================== two block styling======================== */
.two-column {
    position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 10px;
  background-color: var(--color-warm-sand);
  /* max-width: 1200px; */
  margin: auto;
  overflow: hidden;
}
.two-column::before {
    z-index: 1000;
position: absolute;
content: '';
height: 10px;
width: 100%;
top: -5px;
left: 0;
background: url(../../assset/images/separator-02.png);
background-position: center;
background-repeat: repeat-x;

}
.two-column::after {
    z-index: 100;
position: absolute;
content: '';
height: 20px;
width: 100%;
bottom: -10px;
left: 0;
background: url(../../assset/images/priva-separator.svg);
background-position: center;
background-repeat: repeat-x;

}

.text-content {
  flex: 1;
}

.text-content h2 {
  position: relative;
  color: var(--color-deep-earth);
  font-size: 60px;
  text-align: center;
  margin-bottom: 15px;
  font-family: var(--font-cormorant);
}
.text-content h2::after{
  content: '';
  position: absolute;
  background:var(--color-deep-earth);
  border-radius: 10px;
  width: 100px;
  height: 5px;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
}
.text-content h2 span{
  position: relative;
  text-transform: uppercase;
  color: var(--color-deep-earth);
  margin-left: 10px;
  font-size: 40px;
  font-weight: bold;
  display: block;
    font-size:36px;
    margin-bottom:20px;
}

.text-content p {
  padding: 20px 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--font-flanklin);
  color: var(--color-charcol);
}


.btn-kmr{
  display: block;
  margin: 0 auto;
  margin-top: 40px;
  padding: 10px 20px;
  width: 150px;
  background-color:var(--color-savannah);
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.slider {
  flex: 1;
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 0px;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

/* ============= reveal csss start=============== */
/* ===== SCROLL REVEAL BASE ===== */


/* ============= reveal csss end=============== */
/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }

  .slider {
    flex: auto;
    width: 100%;
    height: 300px;        /* 👈 FORCE height on mobile */
    margin-top: 20px;    /* 👈 space below text */
    display: block;
  }

  .slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* ================== card designs==================== */



/* section {
padding: 70px 20px;
max-width: 1200px;
margin: auto;
} */


/* ===== Center Header ===== */
.why-main{
    background: var(--color-warm-sand);
}
.why-main,
.why-grid,
.why-items {
  max-width: 100%;
  overflow-x: hidden;
  padding: 50px 20px;
}
.section-header {
text-align: center;
margin-top: 30px;
padding-bottom: 50px;
background: var(--color-warm-sand);
}
.section-header h2 ,.why-main h2,.why-main .head{
font-size: 2.5rem;
margin-bottom: 10px;
font-family: var(--font-cormorant);
}
.why-main h2{
  text-align: center;
  position: relative;
}
.why-main .head::after{
    content: '';
    background: var(--color-deep-earth);
    position: absolute;
    bottom: -20px;
    left: 50%;
    height: 5px;
    width: 100px;
    transform: translateX(-50%);
    
}

.section-header p ,.why-main p{
    padding-top: 30px;
max-width: 600px;
margin: auto;
color: #555;
}
.why-main p{
  text-align: center;
  padding-bottom: 10px;
}
/* ======================= cards for itinaries designd======================== */

/* GRID */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:40px;
}

/* CARD */
.card{
    position:relative;
    height:400px;
    width: 100%;
    overflow: hidden;
    background:#000;
    overflow:hidden;
    border-radius:12px;
    color:white;
    cursor:pointer;
}

/* IMAGE */
.card img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
    transition:transform .6s ease;
}

/* DARK OVERLAY */
.card::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    top:0;
    left:0;
}

/* CONTENT CENTER */
.card-content{
    position:absolute;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

/* TITLE */
.card h2{
    margin:0;
    font-size:22px;
}

/* LINK */
.card a{
    margin-top:10px;
    padding:8px 16px;
    background:var(--color-deep-earth);
    color:white;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.card a:hover{
    background:#ff9b33;
}

/* ZOOM EFFECT */
.card:hover img{
    transform:scale(1.15);
}

/* Scroll animation */
.card.hidden{
    opacity:0;
    transform:translateY(40px);
}

.card.show{
    opacity:1;
    transform:translateY(0);
    transition:all .8s ease;
}
@media (max-width:600px) {
    .cards{
    
    gap:10px;
    padding:10px;
    
}
}

/* ===== WHY TRAVEL WITH US ===== */

.why-grid {
display: grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;

}

.why-left{

   position: relative;
   height: 400px;
     /*
  background-image: url(../images/wildbeest.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  
}
.why-left h2 {
font-size: 2.3rem;
margin-bottom: 15px;
}
.why-left p {
color: #555;
line-height: 1.6;
}
.why-left img{
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;

}


.why-items {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}


.why-item {
background: #fff;
padding: 20px;
border-radius: 14px;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
display: flex;
gap: 12px;
transition: transform .3s ease;
}


.why-item:hover {
transform: translateY(-5px);
}


.icon-box {
  position: relative;
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
color: #fff;
border-radius: 10px;
font-size: 20px;
flex-shrink: 0;
}
.icon-box img{
  width: 43px;
  height: 43px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}


.why-item h4 {
margin-bottom: 6px;
}


.why-item p {
font-size: 0.9rem;
color: #555;
}
@media(max-width:600px){
    .why-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 30px;
  width: 100%;
}
.why-left img {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 400px;
}

}
/* ==================== stats counter========================== */
/* ===== COUNTER / DESTINATIONS ===== */
/* ===================== accordon styling======================= */
/* ===== ACCORDION ===== */
.accordion-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
}
.accordion{
    margin: 0 20px;
    padding: 10px 15px;
}

.accordion-item {
background: #fff;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
margin-bottom: 15px;
overflow: hidden;
}


.accordion-header {
width: 100%;
padding: 16px 18px;
font-family: var(--font-cormorant);
border: none;
background: var(--color-deep-earth);
color: #fff;
text-align: left;
cursor: pointer;
font-size: 1rem;
transition: background .3s ease;
}


/* Active accordion button color */
.accordion-item.active .accordion-header {
background: var(--color-savannah);
color: #fff;
}


.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height .3s ease;
background: #fff;
}


.accordion-content p {
padding: 15px 18px;
color: var(--color-charcol);
line-height: 1.5;
font-family: var(--font-flanklin);
font-size: 14px;
}


.accordion-item.active .accordion-content {
max-height: 200px;
}
/* ===== Accordion Icon Animation ===== */
.accordion-header {
position: relative;
padding-right: 45px;
}


.accordion-header::after {
content: '+';
position: absolute;
right: 18px;
top: 50%;
transform: translateY(-50%) rotate(0deg);
font-size: 20px;
transition: transform .3s ease, opacity .3s ease;
}


.accordion-item.active .accordion-header::after {
content: '−';
transform: translateY(-50%) rotate(180deg);
}

/* Mobile: one column */
@media (max-width: 768px) {
.accordion-grid {
grid-template-columns: 1fr;
}
}
/* ======================== footer styling======================== */

.footer {
  background: var(--color-deep-earth);
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--color-savannah);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.footer-col ul li a span {
  font-size: 18px;
}

.footer-col ul li a:hover {
  color: #f4c430;
  padding-left: 5px;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-savannah);
  color: var(--color-deep-earth);
  margin-right: 10px;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
}
.contact-info {
  list-style: none;
  margin-top: 20px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-info i {
  color: var(--color-savannah);
  margin-top: 3px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #f4c430;
}


/* Partner Logos */
.partner-logos img {
  width: 120px;
  background: #fff;
  padding: 5px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: block;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* =====================  banner styling start====================== */
.package-banner{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
    font-family:Arial, sans-serif;
}
.package-banner.abt{
    position:relative;
    width:100%;
    height:300px;
    overflow:hidden;
    font-family:Arial, sans-serif;
}

/* Banner image */
.package-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Center content */
.banner-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    color:white;
    background:rgba(0,0,0,0.4);
    padding:20px 30px;
    border-radius:8px;
}

.banner-content h1{
    margin:0 0 10px;
    font-size:38px;
    font-family: var(--font-cormorant);
    text-transform: capitalize;
}

.banner-content p{
    margin:5px 0;
}

/* Bottom info strip */
.banner-bottom{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,0.6);
    color:white;
    text-align:center;
    padding:12px;
    font-size:16px;
}
 
/* Responsive */
@media(max-width:768px){
    .package-banner{
        height:350px;
    }

    .banner-content h1{
        font-size:24px;
    }
}
/* ================= different packages designation==================== */
.general-section {
    position: relative;
    padding: 100px 0px;
    width: 100%;
}
.grid-wrapper{
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: auto;
}
.grid-wrapper h2 {
    color: var(--color-deep-earth);
    text-align: center;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 40px;
    padding: 0px;
}
.grid-wrapper h2 span ,.wrapper-cont h2 span{
  font-family: var(--font-cormorant);
    font-size: 30px;
    line-height: 33px;
    text-transform: uppercase;
    display: inline-block;
    border-top: 1px solid var(--color-deep-earth);
    border-bottom: 1px solid var(--color-deep-earth);
    padding: 20px 0px;
}
.wrapper-cont h2 {
  text-align: center;
  margin: 30px 0;
}
.about-column{
  padding: 20px 5%;
  font-size: 16px;
  column-count: 2;
  line-height: 1.5;
  column-gap: 40px;
  font-family: var(--font-flanklin);
}
.grid-wrapper .top_nav {
  background-color: #fff;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
    z-index: 101;
}
.grid-wrapper .top_nav:before {
    background: #a57809;
    content: "";
    width: 100%;
    height: 1px;
    margin-right: 30px;
}
.grid-wrapper .top_nav:after {
    background: #a57809;
    content: "";
    width: 100%;
    height: 1px;
    margin-left: 30px;
}
.grid-wrapper .top_nav .top-contents {
    max-width: 80%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.grid-wrapper .top_nav .top-contents a {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: bold;
    color: #a57809;
    text-transform: uppercase;
    margin: 1px;
    text-decoration: none;
    padding: 11px 15px;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.grid-wrapper .top_nav .top-contents a.active, .grid-wrapper .top-contents a:hover {
    background-color: #a57809;
    color: #fff;
}
/* ================== grid list styling==================== */
@media screen and (max-width: 1200px) {
    .list-grid .grid-item {
        height: auto;
         transition: opacity 0.4s ease, transform 0.4s ease;
    }
}
.list-grid {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}
.list-grid .grid-item {
    width: 33.3%;
    padding: 0 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.grid-item.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.grid-item.show {
  opacity: 1;
  transform: scale(1);
}
.list-grid .grid-item .grid-item-content {
    height: 100%;
}
.list-grid .grid-item a {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    top: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}
.list-grid .grid-item a .mask {
    background-color: rgba(165, 120, 9, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.list-grid .grid-item .image {
    background-color: #b9a179;
    background-image: url(../images/list-default.png);
    height: 250px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    justify-content: center;
    border-bottom: solid 15px #a57809;
    position: relative;
}
.cover {
    /* background-repeat: no-repeat; */
    background-position: center center;
    background-size: cover;
}
.list-grid .grid-item a .content {
    padding: 50px;
    display: flex;
    flex-direction: column;
}
.list-grid .grid-item a .content .title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    color: #a57809;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-cormorant);
}
.list-grid .grid-item a .content .subtitle {
  font-family: var(--font-cormorant);
    color: #a6a6a6;
    font-size: 16px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
} 
.list-grid .grid-item a .content .subtitle:before {
    background-color: #a6a6a6;
    content: "";
    width: 100%;
    height: 1px;
    margin-right: 20px;
}
.description{

    color: #404040;
    font-family: var(--font-flanklin);
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
}
.description p{
    line-height: 1.5;
}
 .list-grid .grid-item .category {
    position: relative;
    font-family: var(--font-cormorant);
    display: flex;
    justify-content: center;
    bottom: -33px;
}
.list-grid .grid-item .category span {
    background-color: rgb(165, 120, 9);
    font-family: var(--font-cormorant);
    font-size: 10px;
    line-height: 13px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    padding: 10px 16px;
    margin: 0px 30px;
}

@media(max-width:768px){
  .list-grid {
    display: flex;
    flex-wrap: wrap;
    width: 98%;
    margin: 0 auto;
}
   .list-grid .grid-item {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
}

@media(max-width:600px){
   .list-grid .grid-item {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.about-column{
  padding: 20px 2%;
  font-size: 16px;
  column-count: 1;
  line-height: 1.5;
  column-gap: 0px;
  font-family: var(--font-flanklin);
}
.container-incl {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
}
}


/* ================== grid list end==================== */
/* ================== grid for national park start   ======================================== */
.list-grid.national-park {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}
.list-grid.national-park .grid-item {
    width: 80%;
    padding: 0 15px;
    margin-bottom: 30px;
    align-items: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}
.list-grid.national-park .grid-item .image {
    background-color: #b9a179;
    background-image: url(../images/list-default.png);
    height: 400px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    justify-content: center;
    border-bottom: solid 15px #a57809;
    position: relative;
}
.cover {
    /* background-repeat: no-repeat; */
    background-position: center center;
    background-size: cover;
}
.list-grid.national-park .grid-item .content .title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    color: #a57809;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-cormorant);
}
.list-grid.national-park .grid-item .content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.list-grid.national-park .grid-item .content .title {
    font-size: 40px;
    font-weight: bold;
    line-height: 26px;
    font-weight: bold;
    color: #a57809;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-cormorant);
    align-items: center;
}
.list-grid.national-park .grid-item .content .subtitle {
  font-family: var(--font-cormorant);
    color: #a6a6a6;
    font-size: 16px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
} 
.list-grid.national-park .grid-item .content .subtitle:before {
    background-color: #a6a6a6;
    content: "";
    width: 100%;
    height: 1px;
    margin-right: 20px;
}
.np-desc{
  padding: 20px 30px;
}
.np-desc p{
  line-height: 1.5;
  font-size: 16px;
  
  font-family: var(--font-flanklin);
}
/* ================== grid for national park start end  ======================================== */
/* ================difference package styling end================= */
/* ======================= itinaries===================== */
/* Tabs buttons */
.tabs{
  padding: 20px 0;
  background-color: #0f2d24;
  position: sticky;
  top: 100px;
  z-index: 100;
    display:flex;
    flex-wrap:wrap;
    flex-shrink: 0;
    gap:10px;
    justify-content:center;
    margin-bottom:20px;
}

.tab-btn{
    padding:12px 18px;
    font-family: var(--font-cormorant);
    border:none;
    background:var(--color-savannah);
    cursor:pointer;
    border-radius:6px;
    font-size:15px;
}

.tab-btn.active{
    background:#a57809;
    color:white;
}

/* Content area */
.tab-content{
    max-width:1200px;
    margin:auto;
    padding:20px;
    border:1px solid #ddd;
    border-radius:8px;
    display:none;
}
.tab-content p{
    line-height: 1.5;
    font-size: 15px;
    text-align: justify;
}
.tab-content.active{
    display:block;
    height: auto;
}

/* Responsive */
@media(max-width:600px){
    /* .tab-btn{
        flex:1 1 100%;
    } */
}
/* ======================= banner styling end========================================== */
/* ============================= itinaries tour desigantion========================= */
.it-wrapper{
  width: 100%;
  padding: 0 20px;
}
.it-list{
      display: flex;
    flex-direction: column;
    align-items: center;
}
 .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.top {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item .top .day {
    font-family: "Amiri", serif;
    font-size: 30px;
    color: #a57809;
    text-align: center;
    margin-bottom: 10px;
}
.item .top:after {
    background-color: #a57809;
    content: "";
    width: 11px;
    height: 11px;
}
.item .top .distance {
    text-align: center;
    color: #a57809;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.item .content-item {
    display: flex;
    padding: 35px 0 50px 0;
    position: relative;
}
.item .content-item:before {
    background-color: #a57809;
    content: "";
    height: 100%;
    width: 1px;
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
}
.item .content-item .left-it {
    width: 50%;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.item .content-item .left-it .images {
    width: 100%;
    height: 250px;
    position: relative;
}
.item .content-item .left-it .images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}
.item .content-item .right-it {
    width: 50%;
    padding-left: 60px;
}
.item .content-item .left-it h3 {
    display: flex;
    justify-content: flex-end;
    color: #a57809;
    text-transform: uppercase;
    text-align: right;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
}
.item .content-item .left-it h3:after {
    background-color: #a57809;
    content: "";
    width: 110px;
    height: 1px;
    flex-shrink: 0;
    margin-left: 30px;
    margin-top: 18px;
}
.item .content-item .left-it img {
    width: 100%;
}
.item .content-item .right-it .label-it {
    font-weight: bold;
    font-size: 12px;
    color: #a57809;
    text-transform: uppercase;
    margin-top: 20px;
}
.it-list:after {
    background-color: #a57809;
    content: "";
    width: 10px;
    height: 10px;
}
.item:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 600px) {
    .item .content-item {
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 0;
        align-items: center;
    }
         .item .content-item .left-it h3 {
        display: block;
        text-align: center;
        font-size: 30px;
        line-height: 33px;
        font-weight: normal;
    }

    .item .content-item .left-it,.item .content-item .right-it  {
    width: 100%;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

    .item .content-item:after {
        background-color: #a57809;
        width: 1px;
        content: "";
        margin-top: 20px;
        height: 30px;
    }
    .item .content-item:before {
        position: relative;
        margin-bottom: 20px;
        height: 30px;
        left: auto;
    }
    .item .content-item .right-it {
    padding-left: 20px;
}

}

/* ==================== inclusion and exclusion========================= */
.tour-inclusion {
  padding: 60px 20px;
  background: #f9f9f9;
}

.container-incl {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.include-box,
.exclude-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

h3 {
  margin-bottom: 20px;
}

.include-list,
.exclude-list {
  list-style: none;
  padding: 0;
}

.include-list li,
.exclude-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

/* Tick */
.include-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
  font-weight: bold;
}

/* Cross */
.exclude-list li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: red;
  font-weight: bold;
}

/* Mobile */
@media(max-width:768px){
  .container {
    grid-template-columns: 1fr;
  }
}

/* ==================== inclusion and exclusion end========================= */
/* walking safari designs */
.walking-tours{
    display: flex;
    flex-direction: column;
    padding: 30px 50px;
}
.walking-wrapper{
    text-align: center;
}
.walking-wrapper h2{
    text-transform: uppercase;
    font-family: var(--font-cormorant);
    padding-bottom: 30px;
}
.walking-wrapper h3{
    font-size: 20px;
    font-family: var(--font-cormorant);
    text-transform: capitalize;
}
.walking-wrapper p{
    font-family: var(--font-flanklin);
    line-height: 1.5;
    font-size: 18px;
    color:var(--color-deep-earth);
}
.slider-walking{
    width: 100%;
  max-width: 600px; /* adjust as needed */
  margin: 20px auto;
}
.slider-walking .slider{
    position: relative;
  width: 100%;
  height: 350px; /* set height */
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}
.walking-wrapper{
    max-width: 1200px;
    overflow: hidden;
    align-items: center;
    margin: 0 auto;
}
.item-cont{
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    flex-direction: row;
    margin-bottom: 20px;  
}
.walking-cont:nth-child(even) .item-cont {
    flex-direction: row-reverse;
}

.item-cont .wakling-left{
    flex-basis: 50%;
}
.item-cont .walking-right{
    flex-basis: 40%;
    position: relative;
overflow: hidden;
    width: 100%;
    height: 400px;
}
.item-cont .walking-right img{
    width: 100%;
    height: 100%;
   object-fit: cover;
   object-position: center;
}
.type-list{
    text-decoration: none;
    list-style: none;
    padding: 20px 0;
    color: var(--color-savannah);
    text-transform: uppercase;
    font-weight: 700;
}
.type-list.last{
    text-decoration: none;
    list-style: none;
    padding: 10px 0;
    color: var(--color-savannah);
    text-transform: capitalize;
    font-size: 17px;
    font-family: var(--font-flanklin);
    font-weight: 400;
}
.best-time{
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.best-time h2{
    text-transform: uppercase;
    padding: 20px 0;
    color: var(--color-savannah);
}
.best-time p{
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 30px;
}
.best-time-item h3{
    padding: 20px 0;
    color: var(--color-savannah);
}
.walking-btn-wrapper{
    margin: 20px 0;
}
.walking-btn{
    padding: 20px 20px;
    text-decoration: none;
    background: var(--color-savannah);
    color: #fff;
    margin: 20px 20px;
    text-transform: uppercase;
}
 @media (max-width: 600px) {
    .item-cont{
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    flex-direction:column !important;
    margin-bottom: 20px;  
}
.item-cont .walking-right,.item-cont .wakling-left{
    flex-basis: 100%;
    position: relative;
    width: 100%;
}
.walking-cont:nth-child(even) .item-cont {
    flex-direction: column;
}

 }