/* font family
	============================================================================================ */
/* color variables
	============================================================================================ */
/* google fonts
	============================================================================================ */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:700");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
/* mixin start
	============================================================================================ */
/* Medium Layout: 1280px */
/* Tablet Layout: 768px */
/* Mobile Layout: 320px */
/* Wide Mobile Layout: 480px */
/* mixin end
	============================================================================================ */
/* global style start
	============================================================================================ */
:root {
  --primary-color: #6059f6;
  --primary-dark: #4b45d1;
  --primary-light: #8a85fa;
  --text-color: #888888;
  --title-color: #2a2a2a;
  --bg-gray: #f8f8ff;
  --footer-bg: #04091e;
  --body-font: "Roboto", sans-serif;
  --heading-font: "Roboto Condensed", sans-serif;
}

body {
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.667;
  overflow-x: hidden;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

button {
  cursor: pointer;
}

button:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--title-color);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1,
.h1 {
  font-size: 50px;
}

h2,
.h2 {
  font-size: 26px;
}

@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 36px;
  }
}

h3, .h3 {
  font-size: 20px;
}

.primary-text {
  color: var(--primary-color);
}

.bg-gray {
  background-color: var(--bg-gray);
}

.pb-90px {
  padding-bottom: 60px;
}

@media (min-width: 992px) {
  .pb-90px {
    padding-bottom: 90px;
  }
}

.mh-tour {
  max-height: 630px;
}

.section-margin {
  margin: 65px 0;
}

@media (min-width: 992px) {
  .section-margin {
    margin: 130px 0;
  }
}

.section-margin-large {
  margin: 65px 0;
}

@media (min-width: 992px) {
  .section-margin-large {
    margin: 140px 0;
  }
}

.section-padding {
  padding: 65px 0;
}

@media (min-width: 992px) {
  .section-padding {
    padding: 130px 0;
  }
}

.generic-margin {
  margin-top: 100px;
}

@media (min-width: 992px) {
  .generic-margin {
    margin-top: 180px;
  }
}

@media (min-width: 1200px) {
  .generic-margin {
    margin-top: 250px;
  }
}

/* global style end
	============================================================================================ */
/* header style start
  ============================================================================================ */
.header_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: background 0.4s, all 0.3s linear;
}

.header_area .navbar-right {
  min-width: 200px;
  text-align: right;
}

@media (max-width: 991px) {
  .header_area .navbar-right {
    margin: 20px 0;
  }
}

.header_area .navbar-brand {
  margin-right: 30px;
  padding: 0;
}

.header_area .navbar-social {
  min-width: 95px;
  float: right;
}

.header_area .navbar-social li {
  margin-right: 12px;
}

.header_area .navbar-social li i, .header_area .navbar-social li span {
  font-size: 13px;
}

.header_area .navbar-social li:last-child {
  margin-right: 0;
}

.header_area .navbar-social li a:hover i, .header_area .navbar-social li span {
  color: var(--primary-color);
}

.header_area .menu_nav {
  width: 100%;
}

.header_area .navbar {
  background: transparent;
  border: 0px;
  border-radius: 0px;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.header_area .navbar .nav-right {
  min-width: 260px;
}

.header_area .navbar .nav .nav-item {
  margin-right: 35px;
}

.header_area .navbar .nav .nav-item .nav-link {
  font-family: var(--body-font);
  color: var(--title-color);
  text-transform: capitalize;
  font-weight: 500;
  padding: 33px 0;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

.header_area .navbar .nav .nav-item .nav-link:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.header_area .navbar .nav .nav-item:hover .nav-link:after, 
.header_area .navbar .nav .nav-item.active .nav-link:after {
  width: 100%;
}

.header_area .navbar .nav .nav-item:hover .nav-link, 
.header_area .navbar .nav .nav-item.active .nav-link {
  color: var(--primary-color);
  opacity: 1;
}

.header_area .navbar .nav .nav-item.submenu {
  position: relative;
}

.header_area .navbar .nav .nav-item.submenu ul {
  border: none;
  padding: 0px;
  border-radius: 0px;
  box-shadow: none;
  margin: 0px;
  background: #fff;
}

@media (min-width: 992px) {
  .header_area .navbar .nav .nav-item.submenu ul {
    position: absolute;
    top: 120%;
    left: 0px;
    min-width: 200px;
    text-align: left;
    opacity: 0;
    transition: all 300ms ease-in;
    visibility: hidden;
    display: block;
    border: none;
    padding: 0px;
    border-radius: 0px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.4);
  }
}

.header_area .navbar .nav .nav-item.submenu ul:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #eeeeee transparent transparent transparent;
  position: absolute;
  right: 24px;
  top: 45px;
  z-index: 3;
  opacity: 0;
  transition: all 400ms linear;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item {
  display: block;
  float: none;
  margin-right: 0px;
  border-bottom: 1px solid #ededed;
  margin-left: 0px;
  transition: all 0.4s linear;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
  line-height: 45px;
  color: var(--primary-color) !important;
  padding: 0px 30px;
  transition: all 150ms linear;
  display: block;
  margin-right: 0px;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item:last-child {
  border-bottom: none;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item:hover .nav-link {
  background-color: var(--primary-color);
  color: #fff !important;
}

@media (min-width: 992px) {
  .header_area .navbar .nav .nav-item.submenu:hover ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
}

.header_area .navbar .nav .nav-item.submenu:hover ul .nav-item {
  margin-top: 0px;
}

.header_area .navbar .nav .nav-item:last-child {
  margin-right: 0px;
}

.header_area .navbar .search {
  font-size: 12px;
  line-height: 60px;
  display: inline-block;
  margin-left: 80px;
}

.header_area .navbar .search i {
  font-weight: 600;
}

.header_area.navbar_fixed .main_menu {
  position: fixed;
  width: 100%;
  top: -70px;
  left: 0;
  right: 0;
  z-index: 99;
  transform: translateY(70px);
  transition: transform 500ms ease, background 500ms ease;
  -webkit-transition: transform 500ms ease, background 500ms ease;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.7s ease;
}

@keyframes headerSlideDown {
  0% {
    transform: translateY(-70px);
  }
  100% {
    transform: translateY(0);
  }
}

.header_area.navbar_fixed .main_menu .navbar {
  background: var(--primary-dark);
}

.header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
  line-height: 20px;
}

.header_area.navbar_fixed .main_menu .navbar .nav .nav-item:hover .nav-link, .header_area.navbar_fixed .main_menu .navbar .nav .nav-item.active .nav-link {
  color: #fff;
}

@media (min-width: 992px) {
  .header_area.white_menu .navbar .navbar-brand img {
    display: none;
  }
  .header_area.white_menu .navbar .navbar-brand img + img {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .header_area.white_menu .navbar .navbar-brand img {
    display: inline-block;
  }
  .header_area.white_menu .navbar .navbar-brand img + img {
    display: none;
  }
}

.header_area.white_menu .navbar .nav .nav-item .nav-link {
  color: #fff;
}

.header_area.white_menu.navbar_fixed .main_menu .navbar .navbar-brand img {
  display: inline-block;
}

.header_area.white_menu.navbar_fixed .main_menu .navbar .navbar-brand img + img {
  display: none;
}

.header_area.white_menu.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
  line-height: 70px;
}

.top_menu {
  background: #ec9d5f;
}

.top_menu .float-left a {
  line-height: 40px;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 50px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top_menu .float-left a:last-child {
  margin-right: 0px;
}

.top_menu .float-right .pur_btn {
  color: #fff;
  line-height: 40px;
  display: block;
  padding: 0px 40px;
  font-weight: 500;
  font-size: 12px;
}

/* header style end
	============================================================================================ */
@media (max-width: 1619px) {
  /* Main Menu Area css
	============================================================================================ */
  .header_area .navbar .search {
    margin-left: 40px;
  }
  /* End Main Menu Area css
	============================================================================================ */
}

@media (max-width: 1199px) {
  /* Main Menu Area css
	============================================================================================ */
  .header_area .navbar .nav .nav-item {
    margin-right: 28px;
  }
  /* End Main Menu Area css
	============================================================================================ */
  /* Home Banner Area css
	============================================================================================ */
  .home_banner_area .banner_inner {
    padding: 100px 0px;
  }
  /* End Home Banner Area css
	============================================================================================ */
  .header_area .navbar .tickets_btn {
    margin-left: 40px;
  }
  .home_banner_area .banner_inner .banner_content h2 br {
    display: none;
    font-size: 36px;
  }
  .home_banner_area .banner_inner .banner_content h2 {
    font-size: 36px;
    line-height: 45px;
  }
}

@media (max-width: 991px) {
  /* Main Menu Area css
	============================================================================================ */
  .navbar-toggler {
    border: none;
    border-radius: 0px;
    padding: 0px;
    cursor: pointer;
    margin-top: 27px;
    margin-bottom: 23px;
  }
  .header_area .navbar {
    background: #d1cff4;
  }
  .header_area .navbar .nav-item.active .nav-link {
    color: var(--primary-color) !important;
  }
  .navbar-toggler[aria-expanded="false"] span:nth-child(2) {
    opacity: 1;
  }
  .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .navbar-toggler[aria-expanded="true"] span:first-child {
    transform: rotate(-45deg);
    position: relative;
    top: 7.5px;
  }
  .navbar-toggler[aria-expanded="true"] span:last-child {
    transform: rotate(45deg);
    bottom: 6px;
    position: relative;
  }
  .navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: auto;
    margin-bottom: 4px;
    transition: all 400ms linear;
    cursor: pointer;
  }
  .navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .nav {
    padding: 0px 0px;
  }
  .header_top .nav {
    padding: 0px;
  }
  .header_area .navbar .nav .nav-item .nav-link {
    padding: 12px 0;
    margin-right: 0px;
    display: block;
    border-bottom: 1px solid #ededed33;
    border-radius: 0px;
  }
  .header_area .navbar .search {
    margin-left: 0px;
  }
  .header_area .navbar-collapse {
    max-height: 340px;
    overflow-y: scroll;
  }
  .header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
    padding: 0px 15px;
  }
  .header_area .navbar .nav .nav-item {
    margin-right: 0px;
  }
  .home_banner_area .banner_inner .banner_content .banner_map_img {
    display: none;
  }
  .header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
    line-height: 40px;
  }
  .header_area.white_menu.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
    line-height: 40px;
  }
  .header_area.white_menu .navbar .nav .nav-item .nav-link {
    color: #222;
  }
  /* End Main Menu Area css
	============================================================================================ */
  /* Blog page Area css
	============================================================================================ */
  .categories_post img {
    width: 100%;
  }
  .categories_post {
    max-width: 360px;
    margin: 0 auto;
  }
  .blog_categorie_area .col-lg-4 {
    margin-top: 30px;
  }
  .blog_area {
    padding-bottom: 80px;
  }
  .single-post-area .blog_right_sidebar {
    margin-top: 30px;
  }
  /* End Blog page Area css
	============================================================================================ */
  /* Contact Page Area css
	============================================================================================ */
  .contact_info {
    margin-bottom: 50px;
  }
  /* End Contact page Area css
	============================================================================================ */
  .home_banner_area .donation_inner {
    margin-bottom: -30px;
  }
  .home_banner_area .dontation_item {
    max-width: 350px;
    margin: auto;
  }
  /* Footer Area css
	============================================================================================ */
  .footer_area .col-sm-6 {
    margin-bottom: 30px;
  }
  .footer_area .footer_inner {
    margin-bottom: -30px;
  }
  .news_widget {
    padding-left: 0px;
  }
  /* End End Footer Area css
	============================================================================================ */
  .home_banner_area .banner_inner .home_left_img {
    display: none;
  }
  .header_area .navbar .tickets_btn {
    display: none;
  }
  .home_banner_area .banner_inner {
    padding: 70px 0px 100px 0px;
  }
  .left_side_text {
    margin-bottom: 50px;
  }
  .price_item {
    max-width: 360px;
    margin: 0px auto 30px;
  }
  .price_inner {
    margin-bottom: -30px;
  }
}

@media (max-width: 767px) {
  .home_banner_area {
    min-height: 500px;
  }
  .home_banner_area .banner_inner {
    min-height: 500px;
  }
  .home_banner_area .banner_inner .banner_content {
    margin-top: 0px;
  }
  /* Blog Page Area css
	============================================================================================ */
  .blog_banner .banner_inner .blog_b_text h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .blog_info.text-right {
    text-align: left !important;
    margin-bottom: 10px;
  }
  /* End Blog Page Area css
	============================================================================================ */
  .home_banner_area .banner_inner .banner_content h3 {
    font-size: 30px;
  }
  .home_banner_area .banner_inner .banner_content p br {
    display: none;
  }
  .home_banner_area .banner_inner .banner_content h3 span {
    line-height: 45px;
    padding-bottom: 0px;
    padding-top: 0px;
  }
  /* Footer Area css
	============================================================================================ */
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .footer-social {
    text-align: center;
    margin-top: 15px;
  }
  /* End End Footer Area css
	============================================================================================ */
  .made_life_inner .nav.nav-tabs li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 15px;
  }
  .made_life_inner .nav.nav-tabs {
    margin-bottom: -15px;
  }
  .made_life_area.made_white .left_side_text {
    margin-bottom: 0px;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .top_menu {
    display: none;
  }
  /* Home Banner Area css
	============================================================================================ */
  .home_banner_area .banner_inner .banner_content h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .home_banner_area {
    min-height: 450px;
  }
  .home_banner_area .banner_inner {
    min-height: 450px;
  }
  .blog_banner .banner_inner .blog_b_text {
    margin-top: 0px;
  }
  .home_banner_area .banner_inner .banner_content img {
    display: none;
  }
  .home_banner_area .banner_inner .banner_content h5 {
    margin-top: 0px;
  }
  /* End Home Banner Area css
	============================================================================================ */
  .p_120 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .main_title h2 {
    font-size: 25px;
  }
  /* Elements Area css
	============================================================================================ */
  .sample-text-area {
    padding: 70px 0 70px 0;
  }
  .generic-blockquote {
    padding: 30px 15px 30px 30px;
  }
  /* End Elements Area css
	============================================================================================ */
  /* Blog Page Area css
	============================================================================================ */
  .blog_details h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .blog_banner .banner_inner .blog_b_text h2 {
    font-size: 28px;
    line-height: 38px;
  }
  /* End Blog Page Area css
	============================================================================================ */
  /* Footer Area css
	============================================================================================ */
  .footer-area {
    padding: 70px 0px;
  }
  /* End End Footer Area css
	============================================================================================ */
  .pad_top {
    padding-top: 70px;
  }
  .pad_btm {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  /* Main Menu Area css
	============================================================================================ */
  .header_area .navbar-collapse {
    max-height: 250px;
  }
  /* End Main Menu Area css
	============================================================================================ */
  /* Home Banner Area css
	============================================================================================ */
  .home_banner_area .banner_inner .banner_content {
    padding: 30px 15px;
    margin-top: 0px;
  }
  .banner_content .white_btn {
    display: block;
  }
  .home_banner_area .banner_inner .banner_content h3 {
    font-size: 24px;
  }
  /* End Home Banner Area css
	============================================================================================ */
  .banner_area .banner_inner .banner_content h2 {
    font-size: 32px;
  }
  /* Blog Page Area css
	============================================================================================ */
  .comments-area .thumb {
    margin-right: 10px;
  }
  /* End Blog Page Area css
	============================================================================================ */
  .testi_item .media .d-flex {
    padding-right: 0px;
  }
  .testi_item .media .d-flex img {
    width: auto;
    margin-bottom: 15px;
  }
  .testi_item .media {
    display: block;
  }
  .banner_btn {
    margin-bottom: 20px;
  }
}

/* Mobile-specific responsive improvements
============================================================================================ */
@media (max-width: 991px) {
  /* Adjust container padding for better mobile experience */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Improve mobile menu appearance */
  .navbar-collapse {
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
  }
  
  /* Make buttons more touch-friendly on mobile */
  .button {
    min-width: 120px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Adjust section spacing for mobile */
  .section-margin {
    margin: 50px 0;
  }
  
  /* Hero banner and content adjustments */
  .hero-banner-sm {
    background-position: center center;
  }
  
  /* Improve form elements on mobile */
  input, select, textarea {
    font-size: 16px !important; /* Prevents zoom on focus in iOS */
  }
}

/* Small mobile devices */
@media (max-width: 576px) {
  /* Adjust typography for small screens */
  h1, .h1 {
    font-size: 32px;
  }
  
  h2, .h2 {
    font-size: 24px;
  }
  
  /* Banner adjustments */
  .hero-banner {
    padding-top: 90px;
  }
  
  /* Service cards improvement */
  .service-card-body {
    padding: 15px 20px 25px;
  }
  
  /* Tour card overlay adjustments */
  .tour-card .tour-card-overlay {
    padding: 15px;
  }
  
  .tour-card .tour-card-overlay h4 {
    font-size: 18px;
  }
  
  /* Footer adjustments */
  .footer-social {
    text-align: left;
    margin-top: 20px;
  }
  
  .footer-social a {
    margin-left: 0;
    margin-right: 8px;
  }
  
  /* Improve image responsiveness */
  .img-fluid {
    width: 100%;
  }
  
  /* Make cards touch-friendly */
  .tour-card, .service-card {
    margin-bottom: 20px;
  }
}

/* Extra small devices */
@media (max-width: 374px) {
  /* Further adjust typography */
  h1, .h1 {
    font-size: 28px;
  }
  
  h2, .h2 {
    font-size: 22px;
  }
  
  h3, .h3 {
    font-size: 18px;
  }
  
  /* Adjust button sizes */
  .button {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  /* Compact spacing */
  .section-padding {
    padding: 40px 0;
  }
  
  /* Improve contact form spacing */
  .form-contact .form-group {
    margin-bottom: 20px;
  }
}

/* Mobile navbar improvements */
@media (max-width: 991px) {
  .mobile-friendly-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 10px;
    width: auto;
  }
  
  .mobile-friendly-button i {
    margin-right: 8px;
  }
  
  /* Fix mobile navbar animation */
  .navbar-toggler:focus {
    outline: none;
  }
  
  /* Improve mobile dropdown animation */
  .navbar-collapse {
    transition: transform 0.3s ease;
    transform-origin: top;
  }
  
  .navbar-collapse.collapsing {
    transform: scaleY(0);
  }
  
  .navbar-collapse.show {
    transform: scaleY(1);
  }
  
  /* Ensure hover states work on touch devices */
  .nav-item:active .nav-link {
    color: var(--primary-color);
  }
  
  /* Fix touch target sizes */
  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* banner section start
	============================================================================================ */
.hero-banner {
  padding-top: 120px;
}

@media (min-width: 992px) {
  .hero-banner {
    padding-top: 160px;
  }
}

.hero-banner h1 {
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 15px;
}

@media (max-width: 1200px) {
  .hero-banner h1 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .hero-banner h1 {
    font-size: 30px;
  }
}

.hero-banner-sm {
  background: url(../img/banner/banner.png) left center no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 90px;
}

@media (min-width: 992px) {
  .hero-banner-sm {
    padding-top: 240px;
    padding-bottom: 140px;
  }
}

.hero-banner-sm h1 {
  text-transform: uppercase;
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .hero-banner-sm h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hero-banner-sm h1 {
    font-size: 28px;
  }
}

.hero-banner-sm p {
  margin-bottom: 0;
}

.hero-banner-sm-content {
  max-width: 400px;
}

.bg-shape {
  position: relative;
}

.bg-shape::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 595px;
  height: 660px;
  background: url(../img/home/bg-shape-left.png) left center no-repeat;
  background-size: cover;
  z-index: -1;
}

@media (max-width: 620px) {
  .bg-shape::before {
    display: none;
  }
}

.bg-shape::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 755px;
  height: 860px;
  background: url(../img/home/bg-shape-right.png) left center no-repeat;
  background-size: cover;
  z-index: -1;
}

@media (max-width: 620px) {
  .bg-shape::after {
    display: none;
  }
}

/* 
  ============================================================================================ */
/* section intro start
	============================================================================================ */
.section-intro {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  margin-bottom: 60px;
}

.section-intro p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

.section-intro-img {
  margin-bottom: 20px;
  max-width: 80px;
}

/* section intro end
	============================================================================================ */
.service-card {
  background: var(--bg-gray);
  transition: all 0.4s ease;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: #fff;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(96, 89, 246, 0.15);
}

.service-card-img {
  padding-top: 40px;
  padding-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

@media (max-width: 600px) {
  .service-card-img {
    padding-top: 20px;
    padding: 20px;
  }
}

.service-card-body {
  padding: 20px 25px 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  margin-bottom: 15px;
  font-size: 22px;
  transition: all 0.3s ease;
}

.service-card-body p {
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card:hover .service-card-body h3 {
  color: var(--primary-color);
}

.about-content h2 {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .about-content h2 {
    margin-bottom: 25px;
  }
}

.about-content p {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .about-content p {
    margin-bottom: 40px;
  }
}

@media (min-width: 1200px) {
  .about-img {
    position: relative;
    left: -100px;
  }
}

.tour-card {
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tour-card img {
  transition: all 0.5s ease;
}

.tour-card:hover img {
  transform: scale(1.05);
}

.tour-card .tour-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  opacity: 0;
  z-index: -1;
  transform: translateY(40px);
  transition: all 0.4s ease;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.tour-card .tour-card-overlay h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
  font-size: 22px;
}

.tour-card .tour-card-overlay small {
  font-size: 15px;
  color: #555555;
  margin-bottom: 10px;
  display: block;
}

.tour-card .tour-card-overlay p {
  font-size: 16px;
}

.tour-card:hover .tour-card-overlay {
  transform: translateY(0);
  opacity: 1;
  z-index: 1;
}

@media (min-width: 1200px) {
  .tour-card:hover .tour-card-overlay {
    width: 85%;
    border-top-right-radius: 0;
  }
}

.tour-content {
  padding: 8px 20px 25px 15px;
}

.tour-content h2 {
  margin-bottom: 15px;
}

.magic-ball {
  position: relative;
}

.magic-ball::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary-color);
  opacity: .5;
  position: absolute;
  bottom: -68px;
  left: -15px;
}

@media (min-width: 768px) {
  .magic-ball::before {
    width: 70px;
    height: 70px;
    left: -35px;
    border: 15px solid var(--primary-color);
  }
}

.magic-ball::after {
  content: "";
  display: block;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #ebebff;
  opacity: .5;
  position: absolute;
  bottom: -263px;
  left: 70px;
}

@media (min-width: 768px) {
  .magic-ball::after {
    width: 98px;
    height: 98px;
    left: 165px;
  }
}

.magic-ball-about::before {
  top: 265px;
  left: -32px;
}

.magic-ball-about::after {
  top: 65px;
  left: 135px;
}

.magic-ball-testimonial::before {
  top: 265px;
  left: -32px;
}

.magic-ball-testimonial::after {
  top: 130px;
  left: 135px;
}

.magic-ball-banner::before {
  top: 80px;
  left: 130px;
}

.magic-ball-banner::after {
  width: 70px;
  height: 70px;
  top: 270px;
  left: 170px;
}

.magic-ball-sm::before {
  width: 60px;
  height: 60px;
  top: 280px;
  left: -25px;
}

.magic-ball-sm::after {
  width: 60px;
  height: 60px;
  top: 160px;
  left: 80px;
}

/*=================== contact banner start ====================*/
.contact-info {
  margin-bottom: 12px;
}

.contact-info__icon {
  margin-right: 20px;
}

.contact-info__icon i, .contact-info__icon span {
  color: #8f9195;
  font-size: 27px;
}

.contact-info .media-body h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.contact-info .media-body h3 a {
  color: var(--title-color);
}

.contact-info .media-body p {
  color: #999999;
}

/*=================== contact banner end ====================*/
/*=================== contact form start ====================*/
.contact-title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-contact label {
  color: var(--primary-color);
  font-size: 14px;
}

.form-contact .form-group {
  margin-bottom: 30px;
}

.form-contact .form-control {
  border: 1px solid #f0e9ff;
  border-radius: 5px;
  height: 48px;
  padding-left: 18px;
  font-size: 13px;
  background: transparent;
}

.form-contact .form-control:focus {
  outline: 0;
  box-shadow: none;
}

.form-contact .form-control::placeholder {
  font-weight: 300;
  color: #999999;
}

.form-contact textarea {
  border-radius: 12px;
  height: 100% !important;
}

/*=================== contact form end ====================*/
/* Latest Blog Area css
============================================================================================ */

/* End Latest Blog Area css
============================================================================================ */
/* Causes Area css
============================================================================================ */
.causes_slider .owl-dots {
  text-align: center;
  margin-top: 80px;
}

.causes_slider .owl-dots .owl-dot {
  height: 14px;
  width: 14px;
  background: #eeeeee;
  display: inline-block;
  margin-right: 7px;
}

.causes_slider .owl-dots .owl-dot:last-child {
  margin-right: 0px;
}

.causes_slider .owl-dots .owl-dot.active {
  background: var(--primary-color);
}

.causes_item {
  background: #fff;
}

.causes_item .causes_img {
  position: relative;
}

.causes_item .causes_img .c_parcent {
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
}

.causes_item .causes_img .c_parcent span {
  width: 70%;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.causes_item .causes_img .c_parcent span:before {
  content: "75%";
  position: absolute;
  right: -10px;
  bottom: 0px;
  background: var(--primary-color);
  color: #fff;
  padding: 0px 5px;
}

.causes_item .causes_text {
  padding: 30px 35px 40px 30px;
}

.causes_item .causes_text h4 {
  color: var(--title-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  cursor: pointer;
}

.causes_item .causes_text h4:hover {
  color: var(--primary-color);
}

.causes_item .causes_text p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 0px;
}

.causes_item .causes_bottom a {
  width: 50%;
  border: 1px solid var(--primary-color);
  text-align: center;
  float: left;
  line-height: 50px;
  background: var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.causes_item .causes_bottom a + a {
  border-color: #eeeeee;
  background: #fff;
  font-size: 14px;
  color: var(--title-color);
}

/* End Causes Area css
============================================================================================ */
/*================= latest_blog_area css =============*/

/*============ End Blog Single Styles  =============*/
/*=================== custom button rule start ====================*/
.button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 30px;
  padding: 10px 28px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(96, 89, 246, 0.3);
  text-align: center;
  border: 2px solid transparent;
}

.button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: all 0.5s ease;
  transform: skewX(-15deg);
}

@media (min-width: 600px) {
  .button {
    padding: 12px 45px;
  }
}

.button:hover {
  color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(96, 89, 246, 0.4);
  border-color: var(--primary-color);
}

.button:hover:before {
  width: 100%;
}

.button-hero {
  font-weight: 500;
  padding: 15px 45px;
  letter-spacing: 0.5px;
}

.button-contactForm {
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 1px;
}

.button-shadow {
  box-shadow: 0px 10px 20px 0px rgba(181, 176, 255, 0.2);
}

button.button {
  border: 0;
  cursor: pointer;
}

/* Alternate button style */
.button-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.button-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.button-outline:hover:before {
  width: 0;
}

.button-white {
  background-color: #fff;
  color: var(--primary-color);
}

.button-white:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.button-white:hover:before {
  width: 0;
}

/*=================== custom button rule end ====================*/

/* footer style start
	============================================================================================ */
.footer-area {
  background: var(--footer-bg);
  padding-top: 60px;
  position: relative;
}

.footer-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
}

.footer-area .footer-nav li {
  margin-top: 12px;
  transition: all 0.3s ease;
}

.footer-area .footer-nav li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer-area .footer-nav li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-area .footer-nav li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-area .footer-nav li a:hover:before {
  width: 100%;
}

.single-footer-widget h6 {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.single-footer-widget h6:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.footer-social {
  text-align: right;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.footer-social a:hover i {
  color: white;
}

.footer-social i, .footer-social span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
/* footer style end
	============================================================================================ */