* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #21376D;
  --hover-color: #00278a;
  --dark-color: #282828;
  --primary-font-family: 'Poppins', sans-serif;
  --text-font-family: "DM Sans", sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: white;
  margin: 0;
  padding: 0;
}

h1 {
  font-family: 'Philosopher', serif;
}

p {
  font-family: 'Roboto', sans-serif;
}

.title{
  font-family: var(--primary-font-family);
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1;
}

.sub-title{
  font-family: var(--primary-font-family);
  font-size: 32px;
  font-weight: 500;
  color: var(--dark-color);
  line-height: 1;
}

.item-title{
  font-family: var(--primary-font-family);
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-color);
  line-height: 1.2   ;
}

.item-title a{
  color: var(--dark-color);
  text-decoration: none;
}


.text , .text p{
  font-family: var(--text-font-family);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
}

.btn{
  background-color: var(--primary-color);
  color: white;
  padding: 16px 48px;
  border-radius: 30px;
  width: fit-content;
  text-decoration: none;
}

.btn:hover{
  background-color: var(--hover-color);
  
}

header .header-container{
  background: white;
  padding: 20px;
  border-radius: 0 0 20px 20px;
}

hr{
  background-color: var(--primary-color);
  height: 0.5px;
  width: 100%;
}


.container {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box{
  max-width: min(100%, 1140px);
  margin: 0 auto;
}


.row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  
}

.custom-logo {
    max-height: 60px;
    width:fit-content; /* Adjust size as needed */
    height: auto;
    padding: 20px 20px;
    background-color: white;
    border-radius: 0 0 20px 20px;
}

header{
  z-index: 100;
  position: fixed;
  width: 100%;
}


header .top-bar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

header .header-row1{
  width: 100%;
  justify-content: space-between;
}

header .header-row1 .left-row{
  gap: 10px;
}


header .header-row1 .left-row i{
  font-size: 18px;
  color: var(--primary-color);
}

header .header-row1 .center-row{
  gap: 10px;
}

header .top-bar li {
  position: relative;
}

header .top-bar li a {
  color: var(--primary-color);
  text-decoration: none;
}

header .top-bar .current-menu-item a {
  color: var(--primary-color);
}

header .top-bar li:hover a {
  color: var(--hover-color);
}


header .top-bar .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  width: max-content;
  z-index: 10;
  padding: 10px;

}



header .top-bar .menu-item-has-children .sub-menu li a {
  padding: 10px;
  color: var(--primary-color);
}

header .top-bar .menu-item-has-children .sub-menu a:hover {
  color: var(--hover-color);
}


header .top-bar>.menu-item-has-children:hover>.sub-menu {
  display: block;
}

header .top-bar .menu-item-has-children .sub-menu>.menu-item-has-children:hover .sub-menu {
  display: block;
}

header .top-bar .sub-menu li .sub-menu {
  top: 0;
  left: 100%;
}

header .contact{
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

header .header-row1{
  margin: 10px;
}

header .header-row1 .center-row{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

header .header-row2{
  width: 100%;
  justify-content: space-between;
}

header .top-bar{
  font-family: var(--text-font-family);
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
}

header .menu-item-has-children > a {
  position: relative;
  padding-right: 18px; /* space for icon */
}

header .menu-item-has-children > a::after {
  content: "▾"; /* dropdown icon */
  font-size: 12px;
  margin-left: 6px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

header .gtranslate_wrapper span{
  font-family: var(--text-font-family);
  color: var(--primary-color) !important;
  font-size: 16px;
  font-weight: 600;
}

header .custom-logo-link{
  height: 0;
}


/* Burger */
.site-burger{
    width: 44px;
    height: 44px;
    border: 1px solid #fff;
    background: var(--primary-color);
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.burger-icon{
    font-size: 18px;
    color: #fff;
    transition: .3s ease;
}

/* Mobile Menu Panel */
.mobile-menu-wrap{
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #111;
    padding: 80px 25px 25px;
    transition: .35s ease;
    z-index: 1001;
}

.mobile-menu-wrap.active{
    right: 0;
}

/* Menu styles */
.mobile-menu{
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li{
    margin-bottom: 15px;
}

.mobile-menu li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* Mobile only */
@media (max-width: 1024px){
    .site-burger{
        display: flex;
    }
}



.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 20px;
}

/* --- Card Style --- */
.post-item {
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* --- Title --- */
.post-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
  font-weight: 600;
}

.post-item:hover h3 {
  color: #00754a;
  /* accent color — adjust to your brand */
}

/* --- Excerpt --- */
.post-item p {
  font-family: 'Inter', sans-serif;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* --- Read More Button --- */
.post-item a {
  display: inline-block;
  margin-top: 16px;
  background: #00754a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.post-item a:hover {
  background: #005f3a;
  transform: translateY(-2px);
}


.post-single-thumbnail{
  height: 400px;
  object-fit: contain;
  object-position: center left;
}


/* ---------------------------------------------------------------Hero-Slider------------------------------------------------------------------------------------------- */


.hero-slider{
  position: relative;
  width: 100%;
  height: 100vh;         /* gives the hero real height */
  min-height: 520px;
  overflow: hidden;
}

/* Swiper bg layer must fill hero */
.heroBgSlider{
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}



/* CRITICAL: wrapper + slides must also be full height */
.heroBgSlider .swiper-wrapper,
.heroBgSlider .swiper-slide{
  width: 100%;
  height: 100%;
}


/* Background image display */
.heroBgSlider .swiper-slide{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay (optional) */
.hero-slider::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  z-index: 0;
}

/* Static text */
.hero-content{
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  height: 0;
}

.hero-content .hero-title{
  font-family: var(--primary-font-family);
  font-size: 45px;
  max-width: 800px;
  text-transform: uppercase;
  padding-top: 200px;
}

.hero-content .hero-text{
  font-family: var(--primary-font-family);
  font-size: 20px;
  max-width: 800px;
  padding-bottom: 60px;
}

.hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: 5; /* Puts the overlay behind the container's content */
}



/* ---------------------------- About Us----------------------------------------------------- */

.about-row{
  width: 100%;
}

.about-left,.about-right{
  width: 50%;
}

.about-us{
  position: relative;
}

.about-us::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    background-image: url(../images/home/about.png);
}

.about-us::after{
    content: "";
    position: absolute;
    top: 5%;
    right: 0;
    width: 50%;
    height: 90%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    background-image: url(../images/home/about-bg.png);
    
}

section.about-us{
  padding: 160px 10px;
}

.about-img{
  max-width: 100%;
}
.about-us .about-title{
  font-family: var(--primary-font-family);
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: right;
  max-width: 500px;
  align-self: flex-end;
  color: var(--dark-color);
}

.about-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.about-text{
  text-align: right;
}



/* ------------------- Destinations----------------- */

section.destinations{
  background: url(../images/home/dest-bg.png);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  
}
.dest-title, .dest-sub-title , .dest-text{
  text-align: center;
}



.dest-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dest-tabs-section {
    width: 100%;
}

.dest-tabs-wrap {
    max-width: min(100%, 1140px);
    margin: 0 auto;
    padding: 0 15px;
}

.dest-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.dest-tab-btn {
    border: 1px solid #d9d9d9;
    background: transparent;
    color: var(--primary-color);
    padding: 12px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.dest-tab-btn:hover,
.dest-tab-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.dest-tabs-content {
    position: relative;
}

.dest-tab-pane {
    display: none;
}

.dest-tab-pane.active {
    display: block;
}

.dest-swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
    position: relative;
}

.dest-swiper .swiper-wrapper {
    align-items: stretch;
}

.dest-swiper .swiper-slide {
    height: auto;
}

.dest-card {
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dest-card-image {
    width: 100%;
    height: 260px;
    display: block;
    overflow: hidden;
}

.dest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dest-card:hover .dest-card-image img {
    transform: scale(1.06);
}

.dest-card-content {
  font-family: var(--text-font-family);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-card-title {
    font-size: 20px;
    margin: 0 0 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.dest-card-title a {
    color: var(--dark-color);
    text-decoration: none;
}

.dest-card-text {
    font-size: 15px;
    margin-bottom: 18px;
}

.dest-card-link {
    margin-top: auto;
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.dest-swiper-pagination {
    text-align: center;
    margin-top: 20px;
}

.dest-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d0d0d0;
    opacity: 1;
}

.dest-swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
}

.dest-swiper-prev,
.dest-swiper-next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--primary-color);
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dest-swiper-prev:hover,
.dest-swiper-next:hover {
    opacity: 0.85;
}

.dest-swiper-prev::before,
.dest-swiper-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: center;
}

.dest-swiper-prev {
    left: 10px;
}

.dest-swiper-prev::before {
    transform: translate(-35%, -50%) rotate(225deg);
}

.dest-swiper-next {
    right: 10px;
}

.dest-swiper-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.no-posts {
    min-height: 200px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .dest-card-image {
        height: 230px;
    }

    .dest-card-title {
        font-size: 20px;
    }

    .dest-swiper-prev,
    .dest-swiper-next {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767px) {
    .dest-tabs-section {
        padding: 40px 0;
    }

    .dest-tabs-nav {
        gap: 10px;
        margin-bottom: 20px;
    }

    .dest-tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .dest-card-image {
        height: 240px;
    }

    .dest-card-content {
        padding: 16px;
    }

    .dest-card-title {
        font-size: 20px;
    }

    .dest-card-text {
        font-size: 14px;
    }

    .dest-swiper-prev,
    .dest-swiper-next {
        width: 38px;
        height: 38px;
        top: 38%;
    }

    .dest-swiper-prev {
        left: 6px;
    }

    .dest-swiper-next {
        right: 6px;
    }
}

/* ------------------------------------------------------ day-tours ---------------------------------------------------------- */

section.day-tours{
  padding: 80px 10px;
  background: #E8EAEE;
}

.dt-box{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dt-left {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dt-right{
  width: 30%;
  
}

.dt-row1{
  gap: 20px;
}


.daytour-wrap {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.daytour-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.daytour-head-left {
    max-width: 650px;
}

.daytour-heading {
    margin: 0 0 8px;
    font-size: 42px;
    line-height: 1.2;
    color: #111;
    font-weight: 700;
}

.daytour-subheading {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.daytour-remote-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.daytour-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.daytour-nav-btn:hover {
    opacity: 0.85;
}

.daytour-nav-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: center;
}

.daytour-prev::before {
    transform: translate(-35%, -50%) rotate(225deg);
}

.daytour-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.swiper-pagination-fraction{
  width: 60px !important;
}

.daytour-fraction {
    min-width: 42px;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: #797979 !important;
}



.daytour-swiper {
    width: 100%;
    overflow: hidden;
}

.daytour-swiper .swiper-wrapper {
    align-items: stretch;
}

.daytour-swiper .swiper-slide {
    height: auto;
}

.daytour-card {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.daytour-card-image {
    width: 100%;
    height: 260px;
    display: block;
    overflow: hidden;
}

.daytour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.daytour-card:hover .daytour-card-image img {
    transform: scale(1.06);
}

.daytour-card-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.daytour-card-title {
    font-size: 20px;
    margin: 0 0 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.daytour-card-title a {
    color: var(--dark-color);
    text-decoration: none;
}


.daytour-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
    text-align: left;
}

.daytour-card-link {
    margin-top: auto;
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    text-align: left;
}

.daytour-card-link:hover {
  color: var(--hover-color);
}

.no-posts {
    min-height: 200px;
    justify-content: center;
}



@media (max-width: 1024px) {
    .daytour-heading {
        font-size: 36px;
    }

    .daytour-card-image {
        height: 230px;
    }

    .daytour-card-title {
        font-size: 20px;
    }

    .daytour-nav-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767px) {
    .daytour-section {
        padding: 40px 0;
    }

    .daytour-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 20px;
    }

    .daytour-heading {
        font-size: 28px;
    }

    .daytour-subheading {
        font-size: 14px;
    }

    .daytour-card-image {
        height: 240px;
    }

    .daytour-card-content {
        padding: 16px;
    }

    .daytour-card-title {
        font-size: 18px;
    }

    .daytour-card-text {
        font-size: 14px;
    }

    .daytour-nav-btn {
        width: 38px;
        height: 38px;
    }

    .daytour-fraction {
        font-size: 14px;
        min-width: 36px;
    }
}


/* ------------------------ Packages----------------------------------------------- */

section.packages{
  padding: 80px 10px;
  background-image: url(../images/home/pkg-bg.png);
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
}

.pkg-box{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pkg-left{
  display: flex;
  flex-direction: column;
  width: 25%;
  justify-content: center;
}

.pkg-right{
  display: flex;
  flex-direction: column;
  width: 75%;
  text-align: right;
  gap: 20px;
}

.pkg-row1{
  gap: 20px;
}

.pkg2-left , .pkg2-right{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pkg2-right{
  gap: 20px;
}

.pkg-img{
  overflow: hidden;
}

.pkg-img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  
}

.pkg-card .pkg-img img{
  transition: transform 0.4s ease;
}

.pkg-card:hover .pkg-img img {
 transform: scale(1.06);
}

.pkg2-left .pkg-img{
  height: 480px;
}

.pkg2-right .pkg-img{
  height: 185px;
}

.pkg-row2{
  gap: 20px;
}

.pkg-content{
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.pkg-title{
  font-size: 20px;
  font-family: var(--text-font-family);
  font-weight: 600;
}

.pkg-card {
  border: 1px #8A8A8A solid;
  border-radius: 20px;
  overflow: hidden;
}

.pkg-icon{
  background-color: var(--primary-color);
  color: white !important;
  font-size: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-icon a {
  color: white;
}
.dn-box{
  align-items: center;
  gap: 0px;
}
.pkg-dn{
  font-size: 20px;
  padding: 10px;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-d{
  color: #979700;
}

.pkg-n{
  color: #242424;
}

/* ----------------------------------- Activities ------------------------------------------------------- */

section.activities{
  padding: 80px 10px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #121E41e0;
  text-align: center;
}

section.activities::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    background-image: url(../images/home/act-bg.jpg);
    
}

.act-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.act-text, .act-title, .act-sub-title{
  color: white;
}

.activity-swiper {
    width: 100%;
    overflow: hidden;
}

.activity-swiper .swiper-wrapper {
    align-items: stretch;
}

.activity-swiper .swiper-slide {
    height: auto;
}

.activity-card {
    height: 100%;
    background: transparent;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.activity-card-image {
    width: 100%;
    height: 260px;
    display: block;
    overflow: hidden;
}

.activity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-card-image img {
    transform: scale(1.06);
}

.activity-card-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.activity-card-title {
    font-size: 18px;
    line-height: 1;
    margin: 0 0 12px;
    font-family: var(--text-font-family);
    font-weight: 500;
}

.activity-card-title a {
    color: white;
    text-decoration: none;
}

.activity-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: white;
    margin-bottom: 18px;
}

.activity-card-link {
    margin-top: auto;
    display: inline-block;
    color: white;
    text-decoration: none;
    font-family: var(--text-font-family);
    font-weight: 500;
}

.activity-swiper-prev,
.activity-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.activity-swiper-prev:hover,
.activity-swiper-next:hover {
    opacity: 0.85;
}

.activity-swiper-prev::before,
.activity-swiper-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: center;
}

.activity-swiper-prev {
    left: 10px;
}

.activity-swiper-prev::before {
    transform: translate(-35%, -50%) rotate(225deg);
}

.activity-swiper-next {
    right: 10px;
}

.activity-swiper-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.no-posts {
    min-height: 200px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .activity-card-image {
        height: 230px;
    }

    .activity-card-title {
        font-size: 20px;
    }

    .activity-swiper-prev,
    .activity-swiper-next {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767px) {
    .activity-card-image {
        height: 240px;
    }

    .activity-card-content {
        padding: 16px;
    }

    .activity-card-title {
        font-size: 18px;
    }

    .activity-card-text {
        font-size: 14px;
    }

    .activity-swiper-prev,
    .activity-swiper-next {
        width: 38px;
        height: 38px;
    }

    .activity-swiper-prev {
        left: 6px;
    }

    .activity-swiper-next {
        right: 6px;
    }
}


section.testimonials{
  padding: 80px 10px;
  text-align: center;
}

section.testimonials .box{
  gap: 40px;
}

.t-img img{
  width: 100%;
}


/* -----------------------------------------Footer------------------------------------------- */

.footer-top{
  padding: 80px 00px;
  background-color: #081733;
}

.footer-logo{
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img{
  height: 100px;
  max-width: 100%;
  object-fit: contain;
}

.footer-social{
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-social i{
  color: white;
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}


.footer-top hr{
  width: 100%;
  height: 1px;
  background-color: #ffffff41;
  border: none;
  margin: 60px 0;
}

.footer-box{
  gap: 40px;
}

footer .nav{
  display: flex;
  gap: 15px;
  justify-content: space-evenly;
}

footer .nav li{
  list-style: none;
}

footer .nav li a{
  color: white;
  text-decoration: none;
}

footer .nav li a:hover{
  opacity: 0.7;
}

footer .contact-box{
  display: flex;
  gap: 15px;
  color: white;
  text-decoration: none;
}

.footer-contacts {
  gap: 20px;
  justify-content: space-between;
}

footer .contact-icon{
  font-size: 20px;
}

footer .contact-text{
  font-size: 16px;
  font-weight: 360;
  font-family: "Source Sans 3", sans-serif;
}

.footer-bottom{
  padding: 20px 0;
  background-color: #051025;
  color: white;
}


/* -------------------------------------page banner--------------------------- */

.page-banner{
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.page-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    opacity: 0.3;
}

.page-banner-content{
  padding-top: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner-title{
  font-family: var(--primary-font-family);
  font-size: 80px;
  max-width: 800px;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
  text-align: center;
  line-height: 1.3;
}

.dt-info{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 20px;
}

@media (max-width: 767px) {
    .dt-info{
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        
    }
}

.tailor-made-page{
  padding: 80px 10px;
}

.tailor-content{
  text-align: center;
}

input, .forminator-button{
  padding: 8px 8px 8px 8px;
}

.forminator-row span, .forminator-row input{
  font-size: 16px;
}

/* ------------------------------------single------------------------------- */

.info-box{
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 20px;
}

.info-box .item-title{
  text-align: center;
}

.info-box ul{
  margin-left: 20px;
}

.info-box * {
  color: white;
}

.single-post{
  padding: 80px 10px;
}


/* -------------------------------- Responsive Tweak --- ---------------------------------------------------------*/

@media (max-width: 1024px){
  .menu-header-left-container , .menu-header-right-container{
    display: none;
  }

  header .custom-logo-link {
    height: unset;
  }

  .custom-logo{
    padding: 0;
    border-radius: 0;
  }
}


@media (max-width: 767px) {

  .header-divider{
    display: none;
  }

  header .header-row1 {
    justify-content: center;
  }

  .header-row1 .left-row , .header-row1 .center-row {
    display: none !important;
  }

  .header-row1{
    background-color: white;
    padding: 10px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: fit-content !important;
  }

  .page-banner-title{
    font-size: 40px;
  }
  .about-us::before{
    width: 0%;
  }

  .about-us::after{
    width: 100%;
  }

  .post-grid {
    grid-template-columns: repeat(1fr);
    padding: 20px 10px;
    gap: 16px;
  }

  .post-item {
    padding: 18px;
  }

  .mobile-column{
    flex-direction: column;
  }

  .about-left,.about-right{
  width: 100%;
}


.dt-left , .dt-right{
  width: 100%;
}

.pkg-left , .pkg-right{
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pkg-img{
  height: 300px !important;
}

.pkg2-left , .pkg2-right{
  width: 100%;
}

footer .nav{
  flex-direction: column;
}
}

