/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;

}

/* SPINNER */
#spinner{
    opacity:1;
    visibility:visible;
    transition:0.5s ease;
    z-index:99999;
}

#spinner.hide{
    opacity:0;
    visibility:hidden;
}
/*** Spinner End ***/

/* ===================================
   TOPBAR CONTACT
=================================== */

/* ===================================
   TOPBAR
=================================== */

.topbar-social{

    height: 55px;

}

/* SOCIAL ICONS */

.topbar-social a{

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    transition: .3s;

}

/* RIGHT SIDE */

.topbar-info{

    height: 55px;

    gap: 30px;

}

/* PHONE + EMAIL */

.topbar-link{

    display: flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    text-decoration: none;

    font-size: 20px;

    font-weight: 500;

    transition: .3s;

}

/* ICONS */

.topbar-link i{

    font-size: 20px;

}

/* HOVER */

.topbar-link:hover{

    opacity: .8;

    color: #fff;

}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

    .topbar-info{

        justify-content: center;

        flex-wrap: wrap;

        gap: 15px;

        padding: 10px 0;

    }

}

/* LOGO */

.main-logo{

    width: 180px;
    height: 180px;
    object-fit: cover;

}
.navbar-light .navbar-brand img {
    max-height: 120px!important;
}
/* MOBILE */

@media(max-width:768px){

    .main-logo{

        width: 140px;

    }

}
/* nav bar  */

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}



.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/* ===================================
   TABLET RESPONSIVE
=================================== */

@media (max-width: 991px) {

    /* NAVBAR BACKGROUND */

    .navbar-light{

        background: #00660073 !important;

        backdrop-filter: blur(10px);

        padding: 10px 20px;
    }

    /* LOGO */

    .navbar-light .navbar-brand img{

        max-height: 120px !important;

        object-fit: contain;
    }

    /* NAV LINKS */

    .navbar-light .navbar-nav .nav-link{

        color: #006600 !important;

        font-size: 16px !important;

        text-align: center;

        padding: 12px 0 !important;
    }

    /* TOGGLER */

    .navbar-toggler{

        border: 1px solid #006600 !important;
    }

    .navbar-toggler i{

        color: #006600 !important;
    }

    /* COLLAPSE MENU */

    .navbar-collapse{

        background: #fff;

        padding: 15px;

        border-radius: 10px;

        margin-top: 10px;
    }

}


/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media (max-width: 425px) {

    /* NAVBAR */

    .navbar-light{

       background: #00660073 !important;

        padding: 8px 15px;
    }

    /* LOGO */

    .navbar-light .navbar-brand img{

        max-height: 110px !important;

        object-fit: contain;
    }

    .main-logo{

        width: 150px !important;

        height: auto !important;
    }

    /* NAV LINKS */

    .navbar-light .navbar-nav .nav-link{

        color: #006600 !important;

        font-size: 15px !important;

        text-align: center;

        padding: 10px 0 !important;
    }

    /* MENU BOX */

    .navbar-collapse{

        background: #fff;

        padding: 12px;

        border-radius: 10px;
    }

    /* TOGGLER */

    .navbar-toggler{

        padding: 6px 12px !important;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}
.display-2{
    font-size: 60px!important;
    color: #fff;
}
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/


/* ===================================
   TABLET RESPONSIVE
=================================== */

@media (max-width: 991px) {

    /* NAVBAR BACKGROUND */

    .navbar-light{

        background: #00660082 !important;

        backdrop-filter: blur(10px);

        padding: 10px 20px;
    }

    /* LOGO */
.display-2{
    font-size: 30px!important;
    color: #fff;
}
    .navbar-light .navbar-brand img{

        max-height: 110px !important;

        object-fit: contain;
    }

    /* NAV LINKS */

    .navbar-light .navbar-nav .nav-link{

        color: #006600 !important;

        font-size: 16px !important;

        text-align: center;

        padding: 12px 0 !important;
    }

    /* TOGGLER */

    .navbar-toggler{

        border: 1px solid #006600 !important;
    }

    .navbar-toggler i{

        color: #006600 !important;
    }

    /* COLLAPSE MENU */

    .navbar-collapse{

        background: #fff;

        padding: 15px;

        border-radius: 10px;

        margin-top: 10px;
    }

}


/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media (max-width: 425px) {

    /* NAVBAR */

    .navbar-light{

        background: #00660060 !important;

        padding: 8px 15px;
    }
.display-2{
    font-size: 25px!important;
    color: #fff;
}
    /* LOGO */

    .navbar-light .navbar-brand img{

        max-height: 150px !important;

        object-fit: cover;
    }

    .main-logo{

        width: 150px !important;

        height: auto !important;
    }

    /* NAV LINKS */

    .navbar-light .navbar-nav .nav-link{

        color: #006600 !important;

        font-size: 15px !important;

        text-align: center;

        padding: 10px 0 !important;
    }

    /* MENU BOX */

    .navbar-collapse{

        background: #fff;

        padding: 12px;

        border-radius: 10px;
    }

    /* TOGGLER */

    .navbar-toggler{

        padding: 6px 12px !important;
    }

}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/

/* =========================================
   SEASONS SECTION
========================================= */

.seasons-section {
  padding: 100px 5%;
  background: #fff;
}

/* TITLE */
.season-title {
  text-align: center;
  font-size: 40px;
  font-family: 'jost 'ans-serif;
  margin-bottom: 40px;
  font-weight: 600;
  color: #0F172A;
}
.season-title span {
  color: #006600;
  font-weight: 600;
}

/* WRAPPER */
.season-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.season-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* VIDEO */
.season-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* OVERLAY */
/* OVERLAY */
.season-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );

  transition: 0.5s ease;
}

/* HOVER */
.season-card:hover .season-overlay {

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.08),
    rgba(0,0,0,0.02)
  );
  z-index: 1;
}

  


/* CONTENT */
.season-content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  color: #fff;
}

/* HEADING */
.season-content h3 {
  font-size: 30px;
  margin-bottom: 8px;
  font-family: 'jost 'sans-serif;
  color: #ffffff;
}


/* TEXT */
.season-content p {
  font-size: 18px;
  font-family: 'Arial', sans-serif;
  font-weight: 500;
  color: #dddddd;
  opacity: 0.9;
}

/* HOVER EFFECT */
.season-card:hover {
  transform: translateY(-10px);
}

/* VIDEO ZOOM */
.season-card:hover video {
  transform: scale(1.08);
}

/* OVERLAY DARKER */
.season-card:hover .season-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.3)
  );
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .season-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .season-wrapper {
    grid-template-columns: 1fr;
  }

  .season-card {
    height: 400px;
  }

  .season-title {
    font-size: 40px;
  }

  .season-content h3 {
    font-size: 30px;
  }

}

/* weather forcasting */

.weather-main-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 320px;
    color: white;
}

.weather-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weather-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.weather-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
}

.weather-temp {
    font-size: 65px;
    font-weight: bold;
}

.hourly-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-top: 20px;
}

.hourly-card {
    min-width: 90px;
    background: #f5f5f5;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

.distance-box {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

@media(max-width:991px){

    .weather-grid {
        grid-template-columns: 1fr;
    }

    .weather-search input {
        width: 100%;
    }

}
/* logo Section  */


.logo-section {
  background: #f5f5f5;
  padding: 60px 60px;
  overflow: hidden;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 80px;
 padding-top: 30px;
  animation: scrollLogos 20s linear infinite;
  align-items: center;
}

/* logos */
.logo-track img {
  width: 120px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: 0.4s ease;
}

/* hover effect */
.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

/* =========================
   DOWNLOADS SECTION
========================= */

.downloads-section{
    padding:100px 0;
    background:#f8fafc;
}

.downloads-heading{
    margin-bottom:60px;
}

.downloads-heading h5{
    color:#16a34a;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.downloads-heading h2{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin-top:10px;
}

/* GRID */
.downloads-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */
.download-card{
    background:white;
    border-radius:25px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.download-card:hover{
    transform:translateY(-10px);
}

/* IMAGE */
.download-image{
    height:250px;
    overflow:hidden;
}

.download-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.download-card:hover img{
    transform:scale(1.08);
}

/* CONTENT */
.download-content{
    padding:25px;
    text-align:center;
}

.download-content h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:20px;
}

/* BUTTON */
.download-btn{
    display:inline-block;
    padding:14px 28px;
    background:#16a34a;
    color:white;
    border-radius:50px;
    text-decoration:none;
    transition:0.3s;
    font-weight:600;
}

.download-btn:hover{
    background:#15803d;
    color:white;
}

/* RESPONSIVE */
@media(max-width:991px){

    .downloads-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .downloads-grid{
        grid-template-columns:1fr;
    }

    .downloads-heading h2{
        font-size:32px;
    }

}


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/


/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(0, 84, 24, 0.402) rgba(0, 84, 24, 0.402) rgba(0, 84, 24, 0.402) rgba(0, 84, 24, 0.402);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: #00660065;
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(255, 255, 255, 0.735);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Explore Tour End ***/

/* =========================================
   TOURISM CIRCLE SECTION
========================================= */

.tourism-circle-section {
  padding: 120px 5%;
  background: #E4D6C6;
  overflow: hidden;
}

/* HEADING */

.circle-heading {
  text-align: center;
  font-size: 50px;
  margin-bottom: 80px;
  color: #1A1A1A;
  font-family: 'Playfair Display', serif;
}

/* MAIN WRAPPER */

.circle-wrapper {
  position: relative;
  width: 800px;
  height: 800px;
  margin: auto;
}


/* CENTER CIRCLE */

.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width:260px;
  height:260px;
  border-radius:50%;
  background:#416148;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;
  padding:30px;

  z-index:20;
}

.circle-center h3{
  font-size:45px;
  margin-bottom:15px;
  color:#fff;
}

.circle-center p{
  font-size:14px;
  line-height:1.7;
  color:#fff;
}


/* ORBIT */

.orbit{
  position:absolute;
  inset:0;

  animation:rotateOrbit 30s linear infinite;
}

.circle-wrapper:hover .orbit{
  animation-play-state:paused;
}


@keyframes rotateOrbit{

  from{
      transform:rotate(0deg);
  }

  to{
      transform:rotate(360deg);
  }

}


/* ITEMS */

.circle-item{
  position:absolute;

  top:50%;
  left:50%;

  width:180px;
  height:180px;

  margin:-90px;
}


/* PERFECT EQUAL SPACING */

.item1{
 transform:
 rotate(0deg)
 translate(320px)
 rotate(0deg);
}

.item2{
 transform:
 rotate(60deg)
 translate(320px)
 rotate(-60deg);
}

.item3{
 transform:
 rotate(120deg)
 translate(320px)
 rotate(-120deg);
}

.item4{
 transform:
 rotate(180deg)
 translate(320px)
 rotate(-180deg);
}

.item5{
 transform:
 rotate(240deg)
 translate(320px)
 rotate(-240deg);
}

.item6{
 transform:
 rotate(300deg)
 translate(320px)
 rotate(-300deg);
}



/* CARD */

.circle-card{

  width:180px;
  height:180px;

  border-radius:50%;

  overflow:hidden;

  position:relative;

  border:6px solid #fff;

  cursor:pointer;

  transition:.4s;

}

.circle-card img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:.5s;

}

.circle-card:hover img{
  transform:scale(1.1);
}


/* OVERLAY */

.circle-content{

  position:absolute;
  inset:0;

  display:flex;

  justify-content:center;
  align-items:center;

  background:rgba(0,0,0,.55);

  opacity:0;

  transition:.4s;
}

.circle-card:hover .circle-content{
  opacity:1;
}


/* TEXT FIX */

.circle-content h4{

  color:#fff;

  font-size:24px;

  text-align:center;

  margin:0;

  animation: fixText 30s linear infinite;

}
@keyframes fixText {

  from{
      transform: rotate(360deg);
  }

  to{
      transform: rotate(-360deg);
  }

}


/* TABLET */

@media(max-width:991px){

.circle-wrapper{
width:650px;
height:650px;
}

/* =========================================
   ITEMS
========================================= */

.circle-item{
  position:absolute;

  top:50%;
  left:50%;

  width:180px;
  height:180px;

  margin:-90px;
}


/* KEEP CONTENT STRAIGHT */

.item1{
transform:
rotate(0deg)
translate(320px)
rotate(0deg);
}

.item2{
transform:
rotate(60deg)
translate(320px)
rotate(-60deg);
}

.item3{
transform:
rotate(120deg)
translate(320px)
rotate(-120deg);
}

.item4{
transform:
rotate(180deg)
translate(320px)
rotate(-180deg);
}

.item5{
transform:
rotate(240deg)
translate(320px)
rotate(-240deg);
}

.item6{
transform:
rotate(300deg)
translate(320px)
rotate(-300deg);
}



.circle-card{
width:140px;
height:140px;
}

}


/* MOBILE */

@media(max-width:767px){

.tourism-circle-section{
padding:80px 20px;
}

.circle-wrapper{

width:100%;
height:auto;

display:flex;
flex-direction:column;
}

.orbit{

position:static;

animation:none;

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;
}

.circle-item{

position:static;

width:auto;
height:auto;

margin:0;

transform:none!important;
}

.circle-card{

width:100%;
height:170px;

border-radius:20px;
}

.circle-center{

position:static;

transform:none;

width:100%;
height:auto;

border-radius:25px;

margin-bottom:20px;
}

}

/* =========================================
   CARD
========================================= */

.circle-card {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 6px solid #fff;
  cursor: pointer;
  transition: .4s;
}

.circle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.circle-card:hover img {
  transform: scale(1.1);
}


/* =========================================
   OVERLAY
========================================= */

.circle-content {

  position:absolute;
  inset:0;

  background:#006600b3;

  display:flex;
  justify-content:center;
  align-items:center;

  opacity:0;

  transition:.4s;

}

.circle-card:hover .circle-content{
  opacity:1;
}

.circle-content h4{
  color:#fff;
  font-size:24px;
  margin:0;
  text-align:center;

}


/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

  .circle-wrapper{
    width:650px;
    height:650px;
  }

  .circle-item{

    width:140px;
    height:140px;
    margin:-70px;

  }

  .item1{
    transform:
    rotate(0deg)
    translate(250px)
    rotate(0deg);
  }

  .item2{
    transform:
    rotate(60deg)
    translate(250px)
    rotate(-60deg);
  }

  .item3{
    transform:
    rotate(120deg)
    translate(250px)
    rotate(-120deg);
  }

  .item4{
    transform:
    rotate(180deg)
    translate(250px)
    rotate(-180deg);
  }

  .item5{
    transform:
    rotate(240deg)
    translate(250px)
    rotate(-240deg);
  }

  .item6{
    transform:
    rotate(300deg)
    translate(250px)
    rotate(-300deg);
  }

  .circle-card{
    width:140px;
    height:140px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:767px){

  .tourism-circle-section{
    padding:80px 20px;
  }

  .circle-wrapper{

    width:100%;
    height:auto;

    display:flex;
    flex-direction:column;

  }

  .orbit{

    position:static;

    animation:none;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

  }

  .circle-item{

    position:static;

    width:auto;
    height:auto;

    margin:0;

    transform:none!important;

  }

  .circle-card{

    width:100%;
    height:170px;

    border-radius:20px;

  }

  .circle-center{

    position:static;

    transform:none;

    width:100%;
    height:auto;

    border-radius:25px;

    margin-bottom:20px;

  }

}

/* meat the team */


/* =========================
   TEAM SECTION
========================= */

/* =========================
   TEAM SECTION
========================= */

.team-section{

    padding: 100px 20px;

    background: #eef1f4;

    overflow: hidden;
}


/* HEADING */

.team-heading{

    text-align: center;
    margin-bottom: 60px;
    text-transform: capitalize;
}

.team-heading h5{

    color: #006600;

    font-size: 18px;

    margin-bottom: 10px;

    font-weight: 600;
}

.team-heading h2{

    font-size: 40px;

    font-weight: 700;
}


/* GRID */

.team-grid{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;
}


/* CARD */

.team-card{

    position: relative;
}


/* IMAGE */

.team-image{

    height: 420px;

    border-radius: 20px;

    overflow: hidden;
}

.team-image img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}


/* CONTENT */

.team-content{

    width: 85%;

    margin: -70px auto 0;

    background: #fff;

    border-radius: 15px;

    padding: 25px 20px;

    text-align: center;

    position: relative;

    z-index: 5;

    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

.team-content h3{

    font-size: 28px;

    font-weight: 700;

    color: #006600;

    margin-bottom: 10px;

    text-transform: capitalize;
}

.team-content p{

    font-size: 18px;

    color: #000000;

    margin: 0;
}


/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .team-grid{

        grid-template-columns: repeat(2,1fr);
    }

    .team-heading h2{

        font-size: 30px;
    }

    .team-content h3{

        font-size: 22px;
    }

    .team-content p{

        font-size: 16px;
    }

    .team-image{

        height: 350px;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:425px){

    .team-section{

        padding: 60px 15px;
    }

    .team-grid{

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .team-heading{

        margin-bottom: 40px;
    }

    .team-heading h2{

        font-size: 20px;

        font-weight: 700;
    }

    .team-heading h5{

        font-size: 16px;
    }

    .team-image{

        height: 300px;
    }

    .team-content{

        width: 90%;

        padding: 20px 15px;
    }

    .team-content h3{

        font-size: 20px;
    }

    .team-content p{

        font-size: 16px;
    }

}


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(0, 93, 22, 0.629);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/* Mountains cards section */


/* =========================
   CARDS SECTION
========================= */

.cards-section{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    padding:100px 50px;
}


/* CARD */

.custom-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    height:450px;
}


/* IMAGE */

.custom-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;
}


/* IMAGE ZOOM */

.custom-card:hover img{

    transform:scale(1.1);
}


/* CARD OVERLAY */

.card-overlay{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:30px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.90)
    );

    color:#fff;

    transform:translateY(100%);

    transition:.5s;
}


/* SHOW OVERLAY */

.custom-card:hover .card-overlay{

    transform:translateY(0);
}


/* TITLE */

.card-overlay h3{

    font-size:30px;

    color:#fff;

    margin-bottom:10px;

    font-weight:700;
}


/* TEXT */

.card-overlay p{

    font-size:18px;

    line-height:1.6;

    margin-bottom:20px;
}


/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .cards-section{

        grid-template-columns:repeat(2,1fr);

        padding:80px 30px;
    }

    .custom-card{

        height:380px;
    }

    .card-overlay h3{

        font-size:24px;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .cards-section{

        grid-template-columns:1fr;

        padding:60px 20px;

        gap:20px;
    }

    .custom-card{

        height:320px;
    }

    .card-overlay{

        transform:translateY(0);

        padding:20px;
    }

    .card-overlay h3{

        font-size:22px;
    }

    .card-overlay p{

        font-size:16px;
    }

}

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgba(19, 53, 123, .8), rgba(19, 53, 123, .8)), url(../img/tour-booking-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}



/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0; 
    width: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 10px;
    height: 30px;
    width: 30px;
}
.guide-social-icon{
    background-color: #006000;
    color: white;
    padding-left:10px;
    padding-right: 10px;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 6px;
    padding-bottom: 1px;
}
.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(0, 97, 52, 0.5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary); 
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/






/*  about page hero section  */






/* =========================
   PAGE HEADER
========================= */

.custom-page-header{

    position:relative;

    height:520px;

    overflow:hidden;

}

/* BACKGROUND IMAGE */

.page-header-bg{

    position:absolute;

    inset:0;

}

.page-header-bg img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:bottom;

}

/* OVERLAY */

.page-header-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

/* CONTENT */

.page-header-content{

    position:relative;

    z-index:2;

    height:520px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    text-align:center;

}

.page-header-content h1{

    color:#fff;

    font-size:72px;

    font-weight:700;

    margin:0;

}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .custom-page-header{

        height:420px;

    }

    .page-header-content{

        height:420px;

    }

    .page-header-content h1{

        font-size:54px;

    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .custom-page-header{

        height:350px;

    }

    .page-header-content{

        height:350px;

    }

    .page-header-content h1{

        font: size 40px;

    }

}





/* =========================
   LAHORE HERO
========================= */

.lahore-hero{

    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 200px;
    padding-bottom: 120px;
}

/* VIDEO */

.lahore-video{

    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* OVERLAY */

.lahore-overlay{

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.55);

}

/* CONTENT */

.lahore-content{

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

}

/* SUBTITLE */

.lahore-subtitle{

    font-size: 20px;

    color: #fff;

    margin-bottom: 10px;

}

/* TITLE */

.lahore-content h1{

    font-size:50px !important;

    font-weight: 700;

    color: #fff;

    text-transform: capitalize;

    line-height: 1;

    margin-bottom: 20px;

}

/* DESCRIPTION */

.lahore-content p{

    font-size: 18px;

    color: #fff;
    width: 60%;
    justify-content: center;
    text-align: center;
    font-weight: 400;
    margin-bottom: 30px;

}

/* BUTTON */

.lahore-content .btn{

    font-size: 18px;

    font-weight: 500;

    background: #006600;

    border: none;

}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .lahore-content h1{

        font-size: 30px!important;

    }

    .lahore-subtitle{

        font-size: 18px;

    }

    .lahore-content p{

        font-size: 16px;
        width: 70%;
        justify-content: center;
        align-items: center;

    }

    .lahore-hero{
        padding-top: 60px;
        padding-bottom: 60px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .lahore-hero{

        padding-top: 40px;
        padding-bottom: 40px;

    }

    .lahore-content{

        height: 70vh;

        padding: 0 20px;

    }

    .lahore-subtitle{

        font-size: 18px;

    }

    .lahore-content h1{

        font-size: 24px!important;

    }

    .lahore-content p{

        font-size: 16px;
        width: 100%;

    }

    .lahore-content .btn{

        width: 70%;

        max-width: 280px;

    }

}


/* =========================
   LAHORE BANNER
========================= */
.lahore-banner{

    position: relative;
    padding-bottom: 50px;
    width: 100%;
     height: auto !important;

    min-height: auto !important;

     overflow: hidden;
   
    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}


.lahore-overlay{

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.45);

}

.lahore-banner .container{

    position: relative;

    z-index: 2;

}

/* =========================
   CONTENT
========================= */

.lahore-banner-content{

    max-width: 650px;

}

.lahore-banner-content h5{

    color: #fff;
    margin-top: 150px;
    font-size: 30px;

    font-weight: 500;

    margin-bottom: 10px;

    font-style: italic;

}

.lahore-banner-content h1{

    color: #fff;

    font-size: clamp(20px, 8vw, 80px);

    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 20px;

}

.lahore-banner-content p{

    color: #fff;

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 30px;

}

/* =========================
   BUTTON
========================= */

.lahore-btn{

    display: inline-block;

    padding: 14px 35px;

    background: #006600;

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

    transition: .4s;

}

.lahore-btn:hover{

    background: #008000;

    color: #fff;

}

/* =========================
   STATS BOX
========================= */

.lahore-stats{

    width: 70%;

    margin: 70px auto 0;

    background: #00660078;

    backdrop-filter: blur(5px);

    border-radius: 25px;

    padding: 25px 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;

}

/* =========================
   SINGLE ITEM
========================= */

.lahore-stat-box{

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    text-align: left;

    padding: 0 25px;

    border-right: 1px solid rgba(255,255,255,.2);

}

.lahore-stat-box:last-child{

    border-right: 0;

}

.lahore-stat-box i{

    font-size: 35px;

    color: #fff;

}

.lahore-stat-box h4{

    color: #fff;

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 5px;

}

.lahore-stat-box p{

    color: #fff;

    font-size: 16px;

    margin: 0;

}


/* =========================
   TABLET RESPONSIVE
========================= */

@media only screen and (min-width:768px) and (max-width:991px){

    .lahore-banner{

        min-height: auto;

        padding: 100px 20px 60px;

    }

    .lahore-banner-content{

        max-width: 100%;

    }

    .lahore-banner-content h5{

        font-size: 20px !important;

        font-weight: 700;

    }

    .lahore-banner-content h1{

        font-size: 60px!important;

        line-height: 1.2;

    }

    .lahore-banner-content p{

        font-size: 16px !important;

        line-height: 1.7;

    }

    .lahore-btn{

        font-size: 16px;

    }

    .lahore-stats{

        grid-template-columns: repeat(2,1fr);

        gap: 20px;

        overflow: hidden;

    }

    .lahore-stat-box{

        border-right: 0;

        border-bottom: 1px solid rgba(255,255,255,.15);

        padding-bottom: 15px;

    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media only screen and (max-width:425px){



    .lahore-banner{

        padding: 80px 15px 30px !important;

        height: auto !important;

        min-height: auto !important;

    }



    /* SMALL TEXT */

    .lahore-banner-content h5{

        font-size: 16px !important;
        font-weight: 600 !important;
        margin-top: 0px!important;
        line-height: 1.3 !important;

        margin-bottom: 10px !important;

    }

    /* MAIN HEADING */

    

    /* DESCRIPTION */

    .lahore-banner-content p{

        font-size: 16px !important;

        line-height: 1.7 !important;

        margin-bottom: 20px !important;

    }

    /* BUTTON */

    .lahore-btn{

        font-size: 16px !important;

        padding: 12px 22px !important;

    }

}




/* =========================
   ABOUT LAHORE
========================= */

.about-lahore{

    padding: 50px;

    overflow: hidden;

    background: #fff;

}

/* =========================
   CONTENT
========================= */

.about-lahore-content h2{

    font-size: 40px;

    font-weight: 700;
 font-size: clamp(20px, 8vw, 40px);
    color: #006600;

    margin-bottom: 20px;

}

.about-lahore-content h2 span{

    color: #006600;
     font-size: clamp(20px, 8vw, 40px);

}

.about-lahore-content p{

    font-size: 18px;

    line-height: 1.8;

    color: #0a0a0a;

    margin-bottom: 30px;

}

/* =========================
   BUTTON
========================= */

.about-btn{

    display: inline-block;

    padding: 14px 35px;

    background: #006600;

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

    transition: .4s;

}

.about-btn:hover{

    background: #008000;

    color: #fff;

}

/* =========================
   GALLERY
========================= */

.about-lahore-gallery{

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 20px;

    align-items: stretch;

}

.about-image-box{

    overflow: hidden;

    border-radius: 20px;

    height: 100%;

}

.about-image-box img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.about-image-box:hover img{

    transform: scale(1.1);

}

/* =========================
   TABLET RESPONSIVE
========================= */

@media only screen and (min-width:768px) and (max-width:991px){

    .about-lahore{

        padding: 80px 20px;

    }

    .about-lahore-content{

        margin-bottom: 40px;

    }

    .about-lahore-content h2{

        font-size: 30px !important;

        font-weight: 700;

    }

    .about-lahore-content p{

        font-size: 16px !important;

        line-height: 1.7;

    }

    .about-btn{

        font-size: 16px;

    }

    .about-lahore-gallery{

        grid-template-columns: 1fr 1fr;

    }

    .about-image-box img{

        height: 300px;

    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media only screen and (max-width:425px){

    .about-lahore{

        padding: 60px 15px;

    }

    .about-lahore-content{

        text-align: center;

        margin-bottom: 30px;

    }

    .about-lahore-content p{

        font-size: 16px !important;

        line-height: 1.7;

        margin-bottom: 20px;

    }

    .about-btn{

        font-size: 16px;

        padding: 12px 25px;

    }

    .about-lahore-gallery{

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .about-image-box img{

        height: 250px;

    }

}

/* historical places data  */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:sans-serif;
  background:#f5f5f5;
}

img{
  width:100%;
  display:block;
}

/* SECTION */

.historicalSection{
  padding:80px 5%;
  background:#f8f8f8;
  text-align:center;
}

/* TOP ICON */

.sectionHeading{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
}

.sectionHeading i{
  color:#14823d;
  font-size:30px;
}

.headingLine{
  width:120px;
  height:2px;
  background:#14823d;
}

/* HEADING */

.historicalSection h1{
  font-size:40px;
  color:#006600;
  font-weight: 700;
  margin-bottom:15px;
  font-family:serif;
}

.historicalSection p{
  font-size:18px;
  color:#000000;
}

/* GRID */

.historicalGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:60px;
}

/* CARD */

.historicalCard{
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  transition:0.4s;
}

.historicalCard:hover{
  transform:translateY(-10px);
}

.cardImage img{
  height:280px;
  object-fit:cover;
}

/* CONTENT */

.cardContent{
  padding:30px 30px;
  position:relative;
}

.iconCircle{
  width:80px;
  height:80px;
  border-radius:50%;
  background:#0b6b2d;
  border:3px solid white;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:auto;
  margin-top:-90px;
  position:relative;
  z-index:10;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.iconCircle i{
  color:white;
  font-size:30px;
}

.cardContent h2{
  font-size:30px;
  font-weight: 600;
  font-style: arial;
  margin-top:25px;
  color:#006600;
  font-family:serif;
}

.smallLine{
  width:70px;
  height:3px;
  background:#14823d;
  margin:20px auto;
}

.cardContent p{
  font-size:16px;
  line-height:1.8;
  color:#030303;
}



/* TABLET */

@media(max-width:992px){

  .historicalGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .historicalSection h1{
    font-size:30px;
    margin-top: 20px;
  }

  .cardContent h2{
    font-size:16px;
  }

  .cardContent h2{
    font-size:24px;
  }

  .iconCircle{
  width:60px;
  height:60px;
  margin-top: -60px;

}

.iconCircle i{
    font-size: 18px;
}

}

/* MOBILE */

@media(max-width:576px){

  .historicalGrid{
    grid-template-columns:1fr;
  }

  .historicalSection h1{
    font-size:30px;
  }

  .historicalSection p{
    font-size:16px;
  }

  .cardContent h2{
    font-size:20px;
  }

  .cardContent p{
    font-size:16px;
  }

  .cardImage img{
    height:200px;
  }

  .iconCircle{
    width:50px;
    height:50px;
  }

  .iconCircle i{
    font-size:16px;
  }

  .headingLine{
    width:60px;
  }

}

/* =========================
   TOP ATTRACTIONS
========================= */

.top-attractions-section{

    padding: 80px 0;

    overflow: hidden;

    background: #fff;

}

/* =========================
   HEADING
========================= */

.top-heading{

    text-align: center;
    color: #006600;
    margin-bottom: 50px;

}

.top-heading h2{

    font-size: clamp(20px, 5vw, 40px) !important;

    font-weight: 700;
    color: #006600;

}

/* =========================
   ITEM
========================= */

.attraction-item{

    position: relative;

    overflow: hidden;

    border-radius: 20px;

}

.attraction-item img{

    width: 100%;

    height: 320px;

    object-fit: cover;

    transition: .5s;

}

.attraction-item:hover img{

    transform: scale(1.1);

}

/* =========================
   OVERLAY
========================= */

.attraction-overlay{

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,
    rgba(0,0,0,.7),
    rgba(0,0,0,.1));

    display: flex;

    justify-content: end;

    align-items: center;

    flex-direction: column;

    padding: 20px;

}

.attraction-overlay h3{

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    text-align: center;

}

/* =========================
   NAVIGATION
========================= */

.attractions-slider .owl-nav{

    display: flex !important;

    justify-content: space-between;

    position: absolute;

    top: 45%;

    width: 100%;

    transform: translateY(-50%);

}

.attractions-slider .owl-nav button{

    width: 45px;

    height: 45px;

    border-radius: 50% !important;

    background: #006600 !important;

    color: #fff !important;

    font-size: 18px !important;

    display: flex !important;

    align-items: center;

    justify-content: center;

}

/* LEFT BUTTON */

.attractions-slider .owl-nav .owl-prev{

    position: absolute;

    left: -60px;

}

/* RIGHT BUTTON */

.attractions-slider .owl-nav .owl-next{

    position: absolute;

    right: -60px;

}

/* =========================
   DOTS
========================= */

.attractions-slider .owl-dots{

    margin-top: 30px;

    text-align: center;

}

.attractions-slider .owl-dot span{

    width: 12px;

    height: 12px;

    background: #006600 !important;

}

.attractions-slider .owl-dot.active span{

    background: #B8860B !important;

}

/* =========================
   IMAGE
========================= */

.attractions-card img{

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 20px;

}
/* =========================
   TABLET RESPONSIVE
========================= */

@media only screen and (min-width:768px) and (max-width:991px){

    .top-attractions-section{

        padding: 80px 20px;

    }

    .top-heading h2{

        font-size: 30px !important;

        font-weight: 700 !important;

    }

    .attraction-overlay h3{

        font-size: 18px !important;

        font-weight: 700 !important;

    }

    .attraction-item img{

        height: 200px!important;

    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media only screen and (max-width:425px){

    .top-attractions-section{

        padding: 10px 15px;

    }


    .top-heading h2{

        font-size: 20px !important;

        font-weight: 700 !important;

    }

    .attraction-overlay h3{

        font-size: 20px !important;

        font-weight: 700 !important;

    }

    .attraction-item img{

        height: 240px;

    }

    .attractions-slider .owl-nav{

        display: none !important;

    }

}


/* =========================
   FAQ JOURNEY
========================= */

/* =========================
   FAQ + CTA SECTION
========================= */

.faq-journey-section{

    padding: 100px 0;

    background: #006600;

    overflow: hidden;
}


/* FAQ BOX */

.faq-box{

    background: transparent;
}

.faq-box h2{

    font-size: 42px;

    font-weight: 700;

    color: #fff;

    margin-bottom: 30px;
}


/* ACCORDION */

.accordion-item{

    border: none !important;

    margin-bottom: 15px;

    border-radius: 15px !important;

    overflow: hidden;
}

.accordion-button{

    font-size: 20px;

    font-weight: 600;

    padding: 22px 25px;

    background: #fff !important;

    color: #222 !important;

    box-shadow: none !important;
}

.accordion-button:not(.collapsed){

    background: #fff !important;

    color: #006600 !important;
}

.accordion-body{

    font-size: 18px;

    line-height: 1.8;

    color: #555;

    padding: 25px;
}


/* CTA CARD */

.journey-card{

    position: relative;

    border-radius: 20px;

    overflow: hidden;

    height: 100%;
}

.journey-card img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}


/* CTA OVERLAY */

.journey-overlay{

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.45);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 40px;
}


/* CTA TEXT */

.journey-overlay h2{

    font-size: 48px;

    font-weight: 700;

    color: #fff;

    margin-bottom: 20px;
}

.journey-overlay p{

    font-size: 20px;

    color: #fff;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* BUTTON */

.journey-btn{

    display: inline-block;

    padding: 14px 35px;

    background: #006600;

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

    transition: .3s;
}

.journey-btn:hover{

    background: #fff;

    color: #006600;
}


/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .faq-box h2{

        font-size: 30px;
    }

    .journey-overlay h2{

        font-size: 34px;
    }

    .journey-overlay p{

        font-size: 16px;
    }

    .accordion-button{

        font-size: 18px;
    }

    .accordion-body{

        font-size: 16px;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:425px){

    .faq-journey-section{

        padding: 60px 15px;
    }

    .faq-box h2{

        font-size: 20px;

        margin-bottom: 20px;
    }

    .accordion-button{

        font-size: 16px;

        padding: 18px;
    }

    .accordion-body{

        font-size: 16px;

        padding: 18px;
    }

    .journey-card{

        margin-top: 30px;
    }

    .journey-overlay{

        padding: 20px;
    }

    .journey-overlay h2{

        font-size: 24px;

        line-height: 1.4;
    }

    .journey-overlay p{

        font-size: 16px;

        line-height: 1.6;
    }

    .journey-btn{

        font-size: 16px;

        padding: 12px 25px;
    }

}
/* HEADER  */

/* =========================
   HEROES HEADER    for heroes oage 
========================= */

.heroesHeader{

    position: relative;
    padding-top: 180px;
    background-color: #006600;
    padding-bottom: 100px;
    overflow: hidden;
}

.heroesOverlay{

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.55);
}

.heroesHeaderContent{

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 40px;

    text-align: center;
}

.heroIcon i{

    font-size: 50px;

    color: #fff;
    margin-bottom: 60px;
}

.heroText h1{

    font-size: 70px;

    font-weight: 700;

    color: #fff;

    margin-bottom: 10px;

    text-transform: uppercase;
}

.heroText p{

    font-size: 22px;

    color: #fff!important;

    margin: 0;
}


/* =========================
   TAB RESPONSIVE
========================= */

@media(max-width:991px){

    .heroesHeader{

        padding: 70px 20px;
    }

    .heroesHeaderContent{

        gap: 20px;
    }

    .heroIcon i{

        font-size: 50px;
    }

    .heroText h1{

        font-size: 30px;
    }

    .heroText p{

        font-size: 16px;
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:425px){

    .heroesHeader{

        padding: 50px 15px;
    }

    .heroesHeaderContent{

        flex-direction: column;

        gap: 10px;
    }

    .heroIcon i{

        font-size: 30px;
    }

    .heroText h1{

        font-size: 30px;

        font-weight: 700;

        line-height: 1.3;
    }

    .heroText p{

        font-size: 16px;
        color: #fff;
        line-height: 1.6;
    }

}

/* SECTION TITLE */

.sectionTitle{
  width:max-content;
  margin:0 auto 30px;
  background:#01411c;
  color:white;
  padding:12px 30px;
  border-radius:8px;
  font-weight:bold;
  font-size:24px;
}

/* COMMON SECTION */

.heroSection,
.personalitySection,
.armySection{
  padding:60px 5%;
}

/* HERO CARD */

/* =========================
   FOUNDER SECTION
========================= */

.founderSection{
    justify-content: center;
    margin-left: 50px;
    padding: 80px 20px;
    width: 93%;
    background: #f5f1e8;
}

.heroCard{

    display: flex;

    align-items: center;

    gap: 40px;

    background: #fff;

    padding: 40px;

    border-radius: 20px;
}

.founderText{

    flex: 1;
}

.founderText h2{

    font-size: 40px;

    color: #006600;

    font-weight: 700;

    margin-bottom: 20px;
}

.founderText p{

    font-size: 18px;

    color: #000;

    line-height: 1.8;
}

.founderText ul{

    margin-top: 20px;
}

.founderText ul li{

    font-size: 18px;

    color: #000;

    margin-bottom: 12px;
}

.heroImage{

    flex: 1;
}

.heroImage img{

    width: 100%;

    border-radius: 20px;
}


/* =========================
   TAB RESPONSIVE
========================= */

@media(max-width:991px){

    .heroCard{

        flex-direction: column;
    }

    .founderText h2{

        font-size: 30px;
    }

    .founderText p,

    .founderText ul li{

        font-size: 16px;
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:425px){

    .heroCard{

        padding: 20px;
    }

    .founderText h2{

        font-size: 20px;

        font-weight: 700;
    }

    .founderText p,

    .founderText ul li{

        font-size: 16px;
    }

}

/* POETRY */

/* =========================
   POET SECTION
========================= */

.poetSection{
    width: 93%;
    margin-left: 55px;
    padding: 80px 20px;
}

.poetText{

    flex: 1;
}


/* HEADING */

.poetText h2{

    font-size: 40px;

    font-weight: 700;

    color: #006600;

    margin-bottom: 20px;
}


/* DESCRIPTION */

.poetDesc{

    font-size: 18px;

    color: #000;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* POETRY BOX */

.poetryBox{

    border: 2px solid #d4af37;

    padding: 20px;

    margin-top: 20px;

    border-radius: 10px;
}

.poetryBox h4{

    font-size: 30px;

    color: #006600;

    margin-bottom: 15px;
}

.poetryBox p{

    font-size: 18px;

    color: #000;
}


/* IMAGE */

.heroImage{

    flex: 1;
}

.heroImage img{

    width: 100%;

    border-radius: 20px;
}


/* =========================
   TAB RESPONSIVE
========================= */

@media(max-width:991px){

    .poetText h2{

        font-size: 30px;
    }

    .poetDesc,

    .poetryBox p{

        font-size: 16px;
    }

    .poetryBox h4{

        font-size: 24px;
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:425px){

    .poetText h2{

        font-size: 20px;

        font-weight: 700;
    }

    .poetDesc,

    .poetryBox p{

        font-size: 16px;
    }

    .poetryBox h4{

        font-size: 18px;

        line-height: 1.6;
    }

}

/* ARMY */

.armySection{
  background:#013220;
}

.armyGrid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.armyCard{
  background:#01411c;
  color:white;
  text-align:center;
  padding:20px;
  border-radius:15px;
  border:2px solid #d4af37;
}

.armyCard h5{
    color: #fff;
}

.armyCard img{
  width:150px;
  height:150px;
  object-fit:cover;
  border-radius:50%;
  margin:auto;
  border:4px solid #d4af37;
}

.armyCard h3{
  margin-top:20px;
  font-size:20px;
  color: white;
}

.armyCard p{
  margin-top:15px;
  line-height:1.7;
  color: #fff;
}


/* TABLET */

@media(max-width:992px){

  .heroCard{
    grid-template-columns:1fr;
  }

  .personalityGrid{
    grid-template-columns:1fr 1fr;
  }

  .armyGrid{
    grid-template-columns:1fr 1fr;
  }

  .heroesHeader h1{
    font-size:40px;
  }

}

/* MOBILE */

@media(max-width:576px){

  .personalityGrid{
    grid-template-columns:1fr;
  }

  .armyGrid{
    grid-template-columns:1fr;
  }

  .heroText h2{
    font-size:30px;
  }

  .heroesHeader h1{
    font-size:32px;
  }

  .sectionTitle{
    font-size:18px;
    text-align:center;
  }

}




/* cultures data new page   */



*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:sans-serif;
  background:#f8f5ef;
  color:#1e3d2f;
}

img{
  width:100%;
  display:block;
}

/* HERO */

.cultureHero{
  text-align:center;
  padding-top:180px;
  background-color: #002E00;
  padding-bottom: 80px;
}

.cultureHero h1{
  font-size:40px;
  color:#fff;
  margin-bottom:15px;
  font-weight: 700;
}

.cultureHero p{
  font-size:18px;
  color:#fff;
  font-weight: 400;
}

/* ABOUT */

.aboutCulture{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  padding:70px 5%;
}

.aboutContent h2{
  font-size:40px;
  margin-bottom:25px;
  font-weight: 700;
  color: #002E00;

}

.aboutContent p{
  line-height:2;
  font-size:18px;
}

/* PROVINCES */

.provinceSection,
.dressSection,
.festivalSection,
.foodSection{
  padding:70px 5%;
}

.provinceSection h2,
.dressSection h2,
.festivalSection h2,
.foodSection h2{
  text-align:center;
  font-size:40px;
  margin-bottom:50px;
  font-weight: 700;
}


.provinceGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.provinceCard{
  background:white;
  border-radius:15px;
  overflow:hidden;
  border:1px solid #ddd;
}

/* FESTIVAL CARD IMAGE */


.provinceContent{
  padding:25px;
}

.provinceContent h3{
  text-align:center;
  background:#12452f;
  color:white;
  padding:10px;
  margin-bottom:20px;
}

.provinceContent ul{
  padding-left:20px;
}

.provinceContent li{
  margin-bottom:10px;
}

/* DRESSES */

.dressWrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.dressImages{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.dressImages img{
  border-radius:15px;
}

.dressContent{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.dressItem{
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.dressItem i{
  font-size:18px;
  color:#12452f;
}

/* FESTIVALS */

.festivalGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.festivalCard{
  background:white;
  border-radius:15px;
  overflow:hidden;
}

.festivalContent{
  padding:20px;
}

/* FOOD */

.foodGrid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.foodCard{
  background:white;
  border-radius:15px;
  overflow:hidden;
}

.foodContent{
  padding:20px;
  text-align:center;
}

/* TABLET */

@media(max-width:992px){

  .aboutCulture{
    grid-template-columns:1fr;
  }

  .provinceGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .festivalGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .foodGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .dressWrapper{
    grid-template-columns:1fr;
  }

  .cultureHero h1{
    font-size:30px;
  }

}

/* MOBILE */

@media(max-width:576px){

  .provinceGrid,
  .festivalGrid,
  .foodGrid,
  .dressImages{
    grid-template-columns:1fr;
  }

  .cultureHero h1{
    font-size:20px;
  }

  .cultureHero p{
    font-size:16px;
  }

  .provinceSection h2,
  .dressSection h2,
  .festivalSection h2,
  .foodSection h2{
    font-size:20px;
  }

  .aboutContent h2{
    font-size:20px;
  }

}

/* mountains page  */


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:sans-serif;
  background:#f5f5f5;
}

img{
  width:100%;
  display:block;
}

/* HERO */

.mountainHero{
  position:relative;
  height:100vh;
}

.mountainHero img{
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
}

.heroContent{
  position:absolute;
  top:50%;
  left:7%;
  transform:translateY(-50%);
  color:white;
  max-width:600px;
}

.heroContent h1{
  font-size:100px;
  font-weight:700;
  color: #000;
}

.heroContent h2{
  font-size:50px;
  color:#fff;
  margin-bottom:20px;
}

.heroContent p{
  font-size:18px;
  line-height:1.8;
}

.heroContent button{
  margin-top:25px;
  padding:15px 35px;
  border:none;
  background:#006600;
  color:white;
  border-radius:50px;
  cursor:pointer;
}

/* SECTION HEADING */

.sectionHeading{
  text-align:center;
  margin-bottom:50px;
}

.sectionHeading h2{
  font-size:40px;
  color:#006600;
  font-weight: 700;
}

.white h2{
  color:white;
}

/* MOUNTAINS */

.mountainTypes,
.destinationSection,
.gallerySection{
  padding:80px 5%;
}

.mountainGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.mountainCard{
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.cardContent{
  padding:30px;
  text-align:center;
}

.cardContent h3{
  color:#5d7d1d;
  margin-bottom:15px;
  font-size:30px;
}

/* DESTINATIONS */

.destinationGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.destinationCard{
  position:relative;
  overflow:hidden;
  border-radius:15px;
}

.destinationCard img{
  height:320px;
  object-fit:cover;
}

.destinationOverlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:25px;
  color:rgb(255, 255, 255);
}

.destinationOverlay h3{
  margin-bottom:10px;
  color: #fff;
}

/* ACTIVITIES */

.activitySection{
  padding:80px 5%;
  background:#006600;
}

.activityGrid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.activityCard{
  position:relative;
  border-radius:15px;
  overflow:hidden;
}

.activityCard img{
  height:350px;
  object-fit:cover;
}

.activityOverlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color:white;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.activityOverlay h3{
    color: #fff!important;
}
.activityOverlay i{
  font-size:35px;
  color:#fff;
  margin-bottom:15px;
}

/* GALLERY */

.galleryGrid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:15px;
}

.galleryGrid img{
  height:220px;
  object-fit:cover;
  border-radius:12px;
}

/* FEATURES */

.featureSection{
  background:#006600;
  padding:40px 5%;
}

.featureGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.featureBox{
  display:flex;
  align-items:center;
  gap:20px;
  color:white;
}

.featureBox i{
  font-size:40px;
  color:#fff;
}

.featureBox h4{
    color: #fff;
}

/* TABLET */

@media(max-width:992px){

  .mountainGrid,
  .destinationGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .activityGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .galleryGrid{
    grid-template-columns:repeat(3,1fr);
  }

  .featureGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .heroContent h1{
    font-size:70px;
  }

  .heroContent h2{
    font-size:40px;
  }

}

/* MOBILE */

@media(max-width:576px){

  .mountainGrid,
  .destinationGrid,
  .activityGrid,
  .galleryGrid,
  .featureGrid{
    grid-template-columns:1fr;
  }

  .heroContent{
    left:5%;
    right:5%;
  }

  .heroContent h1{
    font-size:55px;
  }

  .heroContent h2{
    font-size:30px;
  }

  .heroContent p{
    font-size:18px;
  }

  .sectionHeading h2{
    font-size:32px;
  }

}


/* desert page coding  */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f7f2e8;
  font-family: sans-serif;
}

img {
  width: 100%;
  display: block;
}

/* HERO */

.desertHero {

  position: relative;

  background: 
  linear-gradient(rgba(0,0,0,0.7),
  rgba(0,0,0,0.7)),
  url("../assets/img/desert.jpg");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;
}


.heroContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  color: rgb(255, 255, 255);
  width: 100%;
}

.heroContent h1 {
  font-size: 70px;
  font-weight: 700;
  width: 100%;
  color: rgb(0, 0, 0);
}

.heroContent button {
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  background: #006600;
  color: white;
  margin-top: 20px;
  cursor: pointer;
}

/* ABOUT */

.aboutDesert {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 70px 5%;
}

.aboutContent {
  text-align: center;
}

.aboutContent h2 {
  margin-bottom: 20px;
  color: #006600;
}

/* CARDS */

.desertCardsSection {
  padding: 50px 5%;
}

.desertCardsSection h2 {
  text-align: center;
  margin-bottom: 40px;
}

.desertCards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.desertCard {
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.cardContent {
  padding: 20px;
}

.cardContent span {
  background: #006600;
  color: white;
  padding: 6px 12px;
  border-radius: 50%;
}

.cardContent h3 {
  margin-top: 15px;
}

.cardContent ul {
  margin-top: 15px;
  padding-left: 20px;
}

/* =========================
   COLD DESERTS
========================= */

.coldDesertsSection{

    padding: 80px 20px;

    background: #f7f3ea;
}


/* HEADING */

.sectionHeading{

    text-align: center;

    margin-bottom: 50px;
}

.sectionHeading h2{

    font-size: 40px;

    font-weight: 700;

    color: #006600;
}


/* GRID */

.coldDesertsGrid{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 30px;
}


/* CARD */

.coldDesertCard{

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

    transition: .3s;
}

.coldDesertCard:hover{

    transform: translateY(-8px);
}


/* IMAGE */

.coldDesertImage{

    position: relative;
}

.coldDesertImage img{

    width: 100%;

    height: 280px;

    object-fit: cover;

    display: block;
}


/* NUMBER */

.desertNumber{

    position: absolute;

    bottom: -20px;

    left: 20px;

    width: 50px;

    height: 50px;

    background: #003b7a;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    font-weight: 700;
}


/* CONTENT */

.coldDesertContent{

    padding: 35px 25px 25px;
}

.coldDesertContent h3{

    font-size: 35px;

    font-weight: 700;

    color: #006600;

    margin-bottom: 15px;
}

.coldDesertContent h5{

    font-size: 18px;

    color: #444;

    margin-bottom: 20px;
}

.coldDesertContent h5 i{

    color: #006600;

    margin-right: 8px;
}

.coldDesertContent ul{

    padding-left: 20px;
}

.coldDesertContent ul li{

    font-size: 18px;

    color: #222;

    margin-bottom: 12px;

    line-height: 1.7;
}


/* =========================
   TAB RESPONSIVE
========================= */

@media(max-width:991px){

    .coldDesertsGrid{

        grid-template-columns: 1fr;
    }

    .sectionHeading h2{

        font-size: 30px;
    }

    .coldDesertContent h3{

        font-size: 26px;
    }

    .coldDesertContent h5,

    .coldDesertContent ul li{

        font-size: 16px;
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:425px){

    .coldDesertsSection{

        padding: 60px 15px;
    }

    .sectionHeading h2{

        font-size: 20px;

        font-weight: 700;
    }

    .coldDesertImage img{

        height: 220px;
    }

    .coldDesertContent{

        padding: 30px 20px 20px;
    }

    .coldDesertContent h3{

        font-size: 20px;

        font-weight: 700;
    }

    .coldDesertContent h5,

    .coldDesertContent ul li{

        font-size: 16px;
    }

}

/* GALLERY */

.gallerySection {
  padding: 50px 5%;
}

.gallerySection h2 {
  text-align: center;
  margin-bottom: 40px;
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
}

.galleryGrid img {
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* FEATURES */

.featureSection {
  padding: 50px 5%;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
  text-align: center;
}

.featureBox {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
}

.featureBox i {
  font-size: 30px;
  margin-bottom: 15px;
}

/* MOBILE */

@media(max-width:992px){

  .desertCards{
    grid-template-columns: repeat(2,1fr);
  }

  .galleryGrid{
    grid-template-columns: repeat(2,1fr);
  }

  .featureSection{
    grid-template-columns: repeat(2,1fr);
  }

  .aboutDesert{
    grid-template-columns: 1fr;
  }

  .heroContent h1{
    font-size: 45px;
  }

}

@media(max-width:576px){

  .desertCards{
    grid-template-columns: 1fr;
  }

  .galleryGrid{
    grid-template-columns: 1fr;
  }

  .featureSection{
    grid-template-columns: 1fr;
  }

  .heroContent h1{
    font-size: 34px;
  }

}

/* tours page data  */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:sans-serif;
  background:#f7f7f7;
  color:#1d1d1d;
}

img{
  width:100%;
  display:block;
}

/* HERO */

.tourHero{
  position:relative;
  height:90vh;
}

.tourHero img{
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.3);
}

.heroContent{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:white;
  width:90%;
}

.heroContent h1{
  font-size:80px;
  margin-bottom:20px;
  color: #fff;
}

.heroContent p{
  font-size:18px;
  line-height:1.7;
}

/* COMMON */

.tourSection,
.reviewSection,
.bookingSection{
  padding:80px 5%;
}

.tourSection h2,
.reviewSection h2,
.bookingSection h2{
  text-align:center;
  font-size:40px;
  color:#0f5132;
  margin-bottom:50px;
  font-weight: 700;
}

/* TOUR GRID */

.tourGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.tourCard{
  background:white;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.tourCard img{
  height:240px;
  object-fit:cover;
}

.tourContent{
  padding:25px;
}

.tourTop{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-bottom:15px;
}

.tourTop h3{
  color:#0f5132;
}

.tourIcons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.tourIcons span{
  background:#f2f2f2;
  padding:8px 12px;
  border-radius:30px;
  font-size:12px;
}

.tourContent h4{
  margin-top:20px;
  color:#0f5132;
  font-size:18px;
}

/* REVIEWS */

.reviewGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.reviewCard{
  background:white;
  text-align:center;
  padding:30px;
  border-radius:18px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.reviewCard img{
  width:100px;
  height:100px;
  border-radius:50%;
  object-fit:cover;
  margin:auto;
}

.reviewCard h3{
  margin:20px 0 15px;
}

.stars{
  color:#006600;
  margin-top:20px;
  font-size:22px;
}

/* BOOKING */

.bookingSection{
  background:#edf5ee;
}

.bookingSection p{
  text-align:center;
  margin-bottom:40px;
}

.bookingForm{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.bookingForm input,
.bookingForm select,
.bookingForm textarea{
  padding:16px;
  border:1px solid #ccc;
  border-radius:10px;
  font-size:18px;
}

.bookingForm textarea{
  grid-column:1/4;
  height:120px;
  resize:none;
}

.bookingForm button{
  grid-column:1/4;
  padding:18px;
  border:none;
  background:#0f5132;
  color:white;
  border-radius:10px;
  font-size:18px;
  cursor:pointer;
}

/* TABLET */

@media(max-width:992px){

  .tourGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .reviewGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .bookingForm{
    grid-template-columns:1fr 1fr;
  }

  .bookingForm textarea,
  .bookingForm button{
    grid-column:auto;
  }

  .heroContent h1{
    font-size:40px;
  }

}

/* MOBILE */

@media(max-width:576px){

  .tourGrid,
  .reviewGrid,
  .bookingForm{
    grid-template-columns:1fr;
  }

  .heroContent h1{
    font-size:26px;
  }

  .heroContent p{
    font-size:16px;
  }

  .tourSection h2,
  .reviewSection h2,
  .bookingSection h2{
    font-size:24px;
  }

}

/* contact us page data  */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:sans-serif;
  background:#f5f5f5;
  color:#1d1d1d;
}

img{
  width:100%;
  display:block;
}

/* HERO */

.contactHero{
  position:relative;
  height:85vh;
}

.contactHero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
}

.heroContent{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:white;
  width:90%;
}

.heroContent h1{
  font-size:70px;
  margin-bottom:20px;
}

.heroContent p{
  font-size:18px;
}

/* CONTACT INFO */

.contactInfoSection{
  padding:0 5%;
  margin-top:-60px;
  position:relative;
  z-index:10;
}

.contactInfoGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  background:white;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contactInfoCard{
  display:flex;
  gap:20px;
  align-items:center;
}

.iconBox{
  width:70px;
  height:70px;
  background:#3d8b37;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:18px;
}

/* FORM */

.contactFormSection{
  padding:80px 5%;
}

.formWrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.formContent span,
.mapBox span,
.faqBox span{
  color:#3d8b37;
  font-weight:700;
}

.formContent h2,
.mapBox h2,
.faqBox h2{
  font-size:40px;
  margin:20px 0 40px;
}

.contactForm{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.contactForm input,
.contactForm select,
.contactForm textarea{
  padding:16px;
  border:1px solid #ccc;
  border-radius:10px;
  font-size:18px;
}

.contactForm textarea{
  grid-column:1/3;
  height:150px;
  resize:none;
}

.contactForm button{
  width:220px;
  padding:16px;
  border:none;
  background:#3d8b37;
  color:white;
  border-radius:10px;
  cursor:pointer;
  font-size:18px;
}

.formImage img{
  border-radius:20px;
  height:100%;
  object-fit:cover;
}

/* MAP FAQ */

.mapFaqSection{
 
   display:grid;
   padding-top:80px;
   padding-left:80px;
   padding-right:80px;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.mapBox iframe{
  width:100%;
  height:450px;
  border:none;
  border-radius:20px;
}

.faqWrapper{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.faqItem{
  background:white;
  padding:22px;
  border-radius:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* NEWSLETTER */

.newsletterSection{
  padding:70px 5%;
  background:url("assets/images/footer-bg.jpg");
  background-size:cover;
  background-position:center;
}

.newsletterContent{
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:center;
  color:white;
}

.newsletterLeft{
  display:flex;
  gap:20px;
  align-items:center;
}

.newsletterIcon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#3d8b37;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.newsletterForm{
  display:flex;
  background:white;
  border-radius:50px;
  overflow:hidden;
}

.newsletterForm input{
  width:350px;
  padding:18px;
  border:none;
  outline:none;
}

.newsletterForm button{
  padding:18px 35px;
  border:none;
  background:#84b71a;
  color:white;
  cursor:pointer;
}

/* FOOTER */

.footer{
  background:#04160c;
  color:white;
  padding:80px 5% 30px;
}

.footerGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer h2,
.footer h3{
  margin-bottom:25px;
}

.footer ul{
  list-style:none;
}

.footer li{
  margin-bottom:15px;
}

.socialIcons{
  display:flex;
  gap:15px;
  margin-top:20px;
}

.socialIcons i{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#1f2d23;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footerBottom{
  border-top:1px solid rgba(255,255,255,0.2);
  margin-top:40px;
  padding-top:25px;
  text-align:center;
}

/* TABLET */

@media(max-width:992px){

  .contactInfoGrid{
    grid-template-columns:repeat(2,1fr);
  }

  .formWrapper,
  .mapFaqSection,
  .footerGrid{
    grid-template-columns:1fr;
  }

  .newsletterContent{
    flex-direction:column;
    align-items:flex-start;
  }

  .heroContent h1{
    font-size:30px;
  }

}

/* MOBILE */

@media(max-width:576px){

  .contactInfoGrid,
  .contactForm{
    grid-template-columns:1fr;
  }

  .contactForm textarea{
    grid-column:auto;
  }

  .newsletterForm{
    width:100%;
    flex-direction:column;
    border-radius:20px;
  }

  .newsletterForm input{
    width:100%;
  }

  .heroContent h1{
    font-size:30px;
  }

  .heroContent p{
    font-size:14px;
  }

  .formContent h2,
  .mapBox h2,
  .faqBox h2{
    font-size:18px;
  }

}



/* =========================
   FOOTER
========================= */

/* =========================
   FOOTER
========================= */

.custom-footer{

    background:#f5f5f5;

    padding:90px 0 25px;

}

/* LOGO */

.footer-logo{

    display:inline-block;

}

.footer-logo img{

    width:150px;

}

/* DESCRIPTION */

.footer-desc{

    font-size:18px;

    line-height:1.9;

    color:#000000;

    margin:30px 0;

    max-width:320px;

}

/* SOCIAL */

.footer-social{

    display:flex;

    align-items:center;

    gap:20px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:green;

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:18px;

    transition:.3s;

}

.footer-social a:hover{

    background: #fff;

    color:green;

}

/* TITLES */

.footer-title{

    font-size:30px;

    font-weight:700;

    margin-bottom:35px;

    color:green;

}

/* LINKS */

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

   

}

.footer-links li{

    margin-bottom:18px;
    

}

.footer-links a{

    text-decoration:none;

    color:#000;

    font-size:20px;

    transition:.3s;

}

.footer-links a:hover{

    color:green;

    padding-left:5px;

}

/* CONTACT */

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.footer-contact-item{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    color:#000;

    font-size:18px;

    transition:.3s;

}

.footer-contact-item i{

    font-size:20px;

    color:#111;

    width:22px;

}

.footer-contact-item:hover{

    color:green;

}

/* GALLERY */

.footer-gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:12px;

}

.footer-gallery img{

    width:100%;

    height:95px;

    object-fit:cover;

    border-radius:6px;

    display:block;

}

/* COPYRIGHT */

.footer-bottom{

    text-align:center;

    background-color: #006600;

    padding: 10px;

    margin-top:70px;

    margin-bottom: -25px;

    color:#fff;

    font-size:18px;

}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .footer-title{

        font-size:32px;

    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .custom-footer{

        text-align:center;

        padding:70px 0 20px;

    }

    .footer-desc{

        margin-left:auto;

        margin-right:auto;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-contact-item{

        justify-content:center;

    }

    .footer-gallery{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-title{

        font-size:28px;

        margin-bottom:25px;

    }

}
