/**
* Template Name: Appland
* Template URL: https://bootstrapmade.com/free-bootstrap-app-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Brand Palette Tokens */
:root {
  --color-explorer-blue: #217CE7;
  /* Primary blue */
  --color-deep-blue: #1267C4;
  /* Darker CTA blue */
  --color-yalla-coral: #FF5860;
  /* Brand coral */
  --color-deep-coral: #D83C49;
  /* Accessible coral */
  --color-midnight: #17212B;
  /* Main text */
  --color-black-navy: #101820;
  /* Dark sections */
  --color-warm-cream: #F1F1F1;
  /* Main background (60%) */
  --color-cloud-blue: #EEF5FF;
  /* Light blue section */
  --color-mint: #A7DDAE;
  /* Mint accent */
  --color-sunshine: #FFC83D;
  /* Yellow accent */
}

/* Global Colors */
:root {
  --background-color: var(--color-warm-cream);
  --default-color: var(--color-midnight);
  --heading-color: var(--color-midnight);
  --accent-color: var(--color-explorer-blue);
  --accent-hover-color: var(--color-deep-blue);
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: var(--color-midnight);
  --nav-hover-color: var(--color-explorer-blue);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: var(--color-midnight);
  --nav-dropdown-hover-color: var(--color-explorer-blue);
}

/* Color Presets */
.light-background {
  --background-color: var(--color-cloud-blue);
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: var(--color-black-navy);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1A2430;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.btn-getstarted,
.btn-getstarted:focus {
  display: inline-block;
  color: var(--color-midnight);
  background: var(--surface-color);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid var(--color-midnight);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #ffffff !important;
  background-color: var(--color-explorer-blue);
  border-color: var(--color-explorer-blue);
}

.btn-download {
  background: var(--color-explorer-blue);
  color: #ffffff;
  border-color: var(--color-explorer-blue);
}

.btn-download:hover {
  background: var(--color-deep-blue);
  color: #ffffff;
  border-color: var(--color-deep-blue);
}

.btn-hero {
  align-self: center;
  display: inline-block;
  width: auto;
  background-color: var(--color-yalla-coral);
  color: #ffffff;
  border-color: var(--color-yalla-coral);
}

@media (max-width: 1199.98px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    display: none;
  }



  .header .navmenu .btn-getstarted {
    display: block;
    margin-left: 0;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199.98px) {
  .mobile-nav-toggle {
    color: #217ce8;
    font-size: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-cloud-blue);
    border: 2px solid #ddd;
    border-radius: 16px;
    box-shadow: 0px 4px 0px 0px rgba(23, 33, 43, 0.1);
    margin-right: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-nav-toggle:hover {
    background-color: var(--color-explorer-blue);
    color: #ffffff;
    border-color: var(--color-explorer-blue);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: fixed;
    top: 75px;
    left: 16px;
    right: 16px;
    padding: 24px 20px;
    margin: 0;
    border-radius: 28px;
    background-color: #ffffff;
    border: 2.5px solid var(--color-midnight);
    box-shadow: 0px 16px 40px rgba(16, 24, 32, 0.2), 0px 8px 0px 0px var(--color-midnight);
    overflow-y: auto;
    max-height: calc(100vh - 100px);
    z-index: 9998;
    transform: translateY(-12px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--color-midnight) !important;
    background-color: var(--color-warm-cream);
    padding: 14px 20px;
    margin-bottom: 12px;
    border-radius: 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border: 1.5px solid rgba(23, 33, 43, 0.08);
    transition: all 0.25s ease;
  }

  .navmenu a::after {
    content: "→";
    font-size: 18px;
    font-weight: 800;
    color: var(--color-explorer-blue);
    transition: transform 0.2s ease;
  }

  .navmenu a:hover,
  .navmenu a:active,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--color-explorer-blue) !important;
    color: #ffffff !important;
    border-color: var(--color-explorer-blue);
    box-shadow: 0px 4px 12px rgba(33, 124, 231, 0.25);
    transform: translateX(4px);
  }

  .navmenu a:hover::after,
  .navmenu .active::after {
    color: #ffffff;
    transform: translateX(4px);
  }

  .navmenu li:last-child a {
    margin-bottom: 0;
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 0;
    background-color: var(--color-cloud-blue);
    border: 1.5px solid var(--color-midnight);
    border-radius: 18px;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.05);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
    background-color: var(--color-yalla-coral);
    border-color: var(--color-midnight);
    font-size: 24px;
    position: fixed;
    top: 15px;
    right: 16px;
    margin-right: 0;
    z-index: 9999;
    box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.15);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(16, 24, 32, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .logo img {
  max-height: 120px;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 767.98px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

.blob {
  position: absolute;
  z-index: 1;
  width: 160px;
  height: 160px;
  border-radius: 50px;
}

@media (max-width: 1199.98px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 45px;
  position: relative;
}

.section-title h2 {
  max-width: 900px;
  margin: auto;
  font-size: 56px;
  font-weight: 800;
  color: var(--color-midnight);
  margin-bottom: 15px;
}

.section-title p {
  max-width: 650px;
  margin: auto;
  font-size: 21px;
  font-weight: 500;
  color: color-mix(in srgb, var(--color-midnight), transparent 25%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 100px);
  min-height: calc(100dvh - 100px);
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
}

.hero .btn-getstarted {
  margin-left: 0;
}

.hero h2 {
  max-width: 1000px;
  margin: 24px auto;
  font-size: 90px;
  line-height: 90px;
  font-weight: 800;
  color: var(--color-midnight);
}

.hero p {
  color: color-mix(in srgb, var(--color-midnight), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: #fff;
  background: var(--color-explorer-blue);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 25px;
  margin-left: 0;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid var(--color-explorer-blue);
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
  color: var(--color-midnight);
  background: #fff;
  border-color: var(--color-midnight);
}

.hero .download-btn:hover {
  background-color: var(--color-deep-blue);
  color: #ffffff;
  border-color: var(--color-deep-blue);
}

.hero .download-btn+.download-btn:hover {
  background-color: var(--color-cloud-blue);
  color: var(--color-explorer-blue);
  border-color: var(--color-explorer-blue);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

.hero .container {
  position: relative;
}

.hero .container .row div {
  z-index: 99;
}

.hero .blob-1 {
  background-color: var(--color-sunshine);
  top: -20px;
  left: -20px;
}

.hero .blob-2 {
  background-color: var(--color-yalla-coral);
  bottom: -20px;
  right: -20px;
}

@media (max-width: 767.98px) {
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  width: 100%;
  position: relative;
  padding: 120px 0 60px 0;
}

.about .about-row-bg {
  background-image: url("../img/Hero Showcase Card.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.about img {
  width: 100%;
  height: auto;
}

.about .left-feature-phone {
  position: relative;
  margin-right: -100px;
  z-index: 1;
}

.about .right-feature-phone {
  position: relative;
  margin-left: -100px;
  z-index: 1;
}

.about .main-feature-phone {
  margin-top: -20px;
}

.about .btn-getstarted {
  background-color: var(--color-cloud-blue);
  color: var(--color-explorer-blue);
  border-color: var(--color-explorer-blue);
  margin-left: 0;
}

.about .section-title h2 {
  margin-bottom: 70px;
}

.about .about-sup .num-01,
.about .about-sup .num-02,
.about .about-sup .num-03 {
  text-align: left;
  border: 1px solid var(--color-midnight);
  border-radius: 35px;
  margin: 0 auto;
  width: 340px;
  padding: 20px 50px;
}

.about .about-sup .num-01 {
  background-color: #ffffff;
}

.about .about-sup .num-02 {
  background-color: var(--color-sunshine);
}

.about .about-sup .num-03 {
  background-color: var(--color-mint);
}

.about .about-sup .num-01 span,
.about .about-sup .num-02 span,
.about .about-sup .num-03 span {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-midnight);
}

.about .about-sup .num-01 span::after,
.about .about-sup .num-02 span::after,
.about .about-sup .num-03 span::after {
  content: " ";
  color: #ffffff;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .about-sup .num-01 span::after {
  content: "1";
  background-color: var(--color-yalla-coral);
}

.about .about-sup .num-02 span::after {
  content: "2";
  background-color: var(--color-explorer-blue);
}

.about .about-sup .num-03 span::after {
  content: "3";
  background-color: var(--color-midnight);
}

.about .about-sup .num-01 h2,
.about .about-sup .num-02 h2,
.about .about-sup .num-03 h2 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 800;
  color: var(--color-midnight);
}

.about .about-sup .num-01 p,
.about .about-sup .num-02 p,
.about .about-sup .num-03 p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: color-mix(in srgb, var(--color-midnight), transparent 25%);
  margin-bottom: 0;
}




/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .btn-getstarted {
  background-color: var(--color-cloud-blue);
  color: var(--color-explorer-blue);
  border-color: var(--color-explorer-blue);
  margin-left: 0;
}

.features .card {
  width: 540px;
  margin: auto;
  padding: 20px 80px;
  position: relative;
  border: 1px solid var(--color-midnight);
  border-radius: 16px;
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.15);
}

.features .card span {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  font-size: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-sunshine);
  color: var(--color-midnight);
  font-weight: 800;
}

.features .card-01 span {
  background-color: var(--color-mint);
  color: var(--color-midnight);
}

.features .card-02 span {
  background-color: var(--color-sunshine);
  color: var(--color-midnight);
}

.features .card-03 span {
  background-color: var(--color-yalla-coral);
  color: #ffffff;
}

.features .card-04 span {
  background-color: var(--color-explorer-blue);
  color: #ffffff;
}

.features .card h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-midnight);
}

.features .card p {
  font-size: 19px;
  font-weight: 500;
  color: color-mix(in srgb, var(--color-midnight), transparent 25%);
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# insideapp Section
--------------------------------------------------------------*/
.insideapp {
  position: relative;
  padding: 120px 0 160px 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.insideapp video {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.insideapp .btn-getstarted {
  color: #ffffff !important;
  background-color: var(--color-explorer-blue);
  border-color: var(--color-explorer-blue);
  margin-left: 0;
  margin-bottom: 32px;
}

.insideapp .section-title {
  padding-bottom: 125px;
}

.insideapp .section-title h2,
.insideapp .section-title span {
  color: #fff;
}

.insideapp .row>[class*="col"]:nth-child(even) .card {
  margin-top: 70px;
}

.insideapp .row>[class*="col"]:nth-child(1) .card {
  background-color: var(--color-cloud-blue);
}

.insideapp .row>[class*="col"]:nth-child(2) .card {
  background-color: var(--color-sunshine);
}

.insideapp .row>[class*="col"]:nth-child(3) .card {
  background-color: var(--color-mint);
}

.insideapp .row>[class*="col"]:nth-child(4) .card {
  background-color: var(--color-yalla-coral);
}

.insideapp .card {
  border-radius: 35px;
  padding: 50px 25px;
  max-width: 215px;
  margin: auto;
}

.insideapp .card h2 {
  color: var(--color-midnight);
  font-size: 32px;
  font-weight: 800;
  line-height: 30px;
}



/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .btn-getstarted {
  color: var(--color-explorer-blue) !important;
  background-color: var(--color-cloud-blue);
  border-color: var(--color-explorer-blue);
  margin-left: 0;
  margin-bottom: 24px;
}

.pricing .pricing-item {
  width: 510px;
  max-width: 100%;
  margin: auto;
  background-color: #FFF2F3;
  padding: 50px 50px 40px 50px;
  height: 100%;
  position: relative;
  border: 2px solid var(--color-yalla-coral);
  border-radius: 40px;
  box-shadow: 0px 8px 0px 0px rgba(255, 88, 96, 0.2);
  transition: all 0.3s ease;
}

.pricing h2 {
  font-weight: 800;
  font-size: 34px;
  line-height: 38px;
  margin-bottom: 24px;
}

.pricing h2 span {
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 900;
}

.pricing ul {
  list-style: none;
  text-align: left;
  line-height: 20px;
  padding: 0;
}

.pricing ul li {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  font-weight: 700;
  font-size: 19px;
  color: color-mix(in srgb, var(--color-midnight), transparent 30%);
  background-color: #FFFFFF;
  border: 1px solid rgba(255, 88, 96, 0.2);
  margin-bottom: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing ul li i {
  color: var(--color-yalla-coral);
  font-size: 26px;
  font-weight: bold;
  padding-right: 8px;
}


.pricing .featured .pricing-item {
  background: #E8F7EC;
  border-color: #28A745;
  box-shadow: 0px 8px 0px 0px rgba(40, 167, 69, 0.2);
}

.pricing .pricing-item h2 {
  color: var(--color-deep-coral);
}

.pricing .featured h2 {
  color: #155724;
}

.pricing .featured ul li {
  color: var(--color-midnight);
  background-color: #ffffff;
  border: 1px solid rgba(40, 167, 69, 0.25);
}

.pricing .featured ul li i {
  color: #28A745;
}


/*--------------------------------------------------------------
# destinations Section
--------------------------------------------------------------*/
.destinations .btn-getstarted {
  color: var(--color-explorer-blue) !important;
  background-color: var(--color-cloud-blue);
  border-color: var(--color-explorer-blue);
  margin-left: 0;
  margin-bottom: 24px;
}

.destinations .card {
  padding: 20px;
  border-radius: 38px;
  border: 2px solid var(--color-midnight);
  box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.1);
}

.destinations .card .color-box {
  width: 100%;
  height: 160px;
  border-radius: 28px;
  margin-bottom: 28px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: right;
}

.destinations .card .color-box .flag {
  margin-top: 10px;
  margin-right: 10px;
  margin-left: auto;
  width: fit-content;
  padding: 2px 5px;
  text-align: left;
  color: var(--color-midnight);
  font-weight: 500;
  font-size: 17px;
  border-radius: 18px;
  border: 1px solid #eee;
  background-color: #ffffff;
}

.destinations .card .color-box .flag img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #eee;
}

.destinations .card-01 .color-box {
  background-color: var(--color-yalla-coral);
  background-image: url("../img/destinations/Dubai.jpg");

}

.destinations .card-02 .color-box {
  background-color: var(--color-explorer-blue);
  background-image: url("../img/destinations/London.jpg");
}

.destinations .card-03 .color-box {
  background-color: var(--color-deep-blue);
  background-image: url("../img/destinations/Tokyo.jpg");
}

.destinations .card-04 .color-box {
  background-color: var(--color-mint);
  background-image: url("../img/destinations/Istanbul.jpg");
}

.destinations .card-05 .color-box {
  background-color: var(--color-sunshine);
  background-image: url("../img/destinations/Paris.jpg");
}

.destinations .card h2 {
  font-weight: 800;
  font-size: 34px;
  line-height: 30px;
  color: var(--color-midnight);
}

.destinations .card p {
  width: 160px;
  color: color-mix(in srgb, var(--color-midnight), transparent 25%);
  font-weight: 500;
  font-size: 17px;
}

.destinations .explore-btn {
  display: inline-block;
  padding: 5px 20px;
  width: fit-content;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  background-color: var(--color-explorer-blue);
  border-radius: 18px;
  border: 1px solid var(--color-explorer-blue);
  transition: 0.3s;
}

.destinations .explore-btn:hover {
  background-color: var(--color-deep-blue);
  border-color: var(--color-deep-blue);
  color: #ffffff;
}

/*--------------------------------------------------------------
# Social Section
--------------------------------------------------------------*/
.social .social-row-bg {
  border-radius: 54px;
  border: 2px solid var(--color-midnight);
  background: var(--color-warm-cream);
  padding: 60px;
}

.social .section-title h2 {
  margin-bottom: 60px;
}

.social .btn-getstarted {
  color: var(--color-explorer-blue) !important;
  background-color: var(--color-cloud-blue);
  border-color: var(--color-explorer-blue);
  margin-left: 0;
  margin-bottom: 24px;
}

.social .card {
  height: 100%;
  border-radius: 30px;
  padding: 34px 40px 25px 28px;
  border: 2px solid var(--color-midnight);
  box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
}

.social .card h2 {
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  color: var(--color-midnight);
}

.social .card p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  color: color-mix(in srgb, var(--color-midnight), transparent 25%);
}

/*--------------------------------------------------------------
# app Section
--------------------------------------------------------------*/
.app .btn-getstarted {
  color: var(--color-explorer-blue) !important;
  background-color: var(--color-cloud-blue);
  border-color: var(--color-explorer-blue);
  margin-left: 0;
  margin-bottom: 24px;
}

.app .app-row-bg {
  border-radius: 54px;
  border: 2px solid var(--color-midnight);
  background: var(--color-warm-cream);
  padding: 60px;
}

.app .features-item .right-side {
  max-width: 360px;
  margin: auto;
}

.app .features-item h2 {
  font-weight: 800;
  font-size: 56px;
  line-height: 96%;
  letter-spacing: 0%;
  color: var(--color-midnight);
  margin-bottom: 24px;
}

.app .features-item p {
  font-weight: 500;
  font-size: 22px;
  color: color-mix(in srgb, var(--color-midnight), transparent 25%);
}

.app .download-btn {
  color: #fff;
  background: var(--color-explorer-blue);
  width: 220px;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 25px;
  margin-left: 0;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid var(--color-explorer-blue);
}

.app .download-btn2 {
  color: var(--color-midnight);
  background: #fff;
  width: 220px;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 25px;
  margin-left: 0;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid var(--color-midnight);
}

.app .download-btn:hover,
.app .download-btn2:hover {
  background-color: var(--color-deep-blue);
  color: #ffffff;
  border-color: var(--color-deep-blue);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-midnight);
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: var(--color-sunshine);
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: #ffffff;
  border: 1px solid color-mix(in srgb, var(--color-midnight), transparent 85%);
  border-radius: 12px;
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
  color: var(--color-midnight);
}

.faq .faq-container .faq-item h3 span {
  color: var(--color-explorer-blue);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--color-explorer-blue);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color: color-mix(in srgb, var(--color-midnight), transparent 25%);
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--color-explorer-blue);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: var(--color-midnight);
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--color-explorer-blue);
}

.faq .faq-container .faq-active {
  background-color: var(--color-cloud-blue);
  border-left: 4px solid var(--color-explorer-blue);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--color-midnight);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}


/*--------------------------------------------------------------
# trip Section
--------------------------------------------------------------*/
.trip .trip-item {
  background-color: var(--color-black-navy);
  padding: 50px 75px;
  border-radius: 58px;
  box-shadow: 0px 4px 40px rgba(16, 24, 32, 0.25);
  color: #fff;
}


.trip .trip-item h2 {
  font-weight: 800;
  font-size: 62px;
  line-height: 60px;
  color: #fff;
}

.trip .trip-item p {
  font-weight: 500;
  font-size: 22px;
  line-height: 20px;
  color: var(--color-warm-cream);
}

.trip .trip-item .download-btn {
  align-self: center;
  width: auto;
  color: #ffffff;
  background-color: var(--color-explorer-blue);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid var(--color-explorer-blue);
}

.trip .trip-item .download-btn:hover {
  background-color: var(--color-deep-blue);
  border-color: var(--color-deep-blue);
  color: #ffffff;
}




/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--color-explorer-blue);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
  color: var(--color-midnight);
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-explorer-blue);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--color-explorer-blue);
  color: #ffffff;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-deep-blue);
}

/*--------------------------------------------------------------
# Responsive Media Queries (Mobile & Tablet)
--------------------------------------------------------------*/

@media (max-width: 1199.98px) {

  .about .about-sup .num-01,
  .about .about-sup .num-02,
  .about .about-sup .num-03 {
    width: auto;
    max-width: 100%;
    height: 100%;
  }

  .features .card {
    width: auto;
    max-width: 100%;
    height: 100%;
  }

  .insideapp .card h2 {
    font-size: 26px;

  }

  @media (max-width: 991.98px) {
    .section-title h2 {
      font-size: 42px;
    }

    .hero h2 {
      font-size: 52px;
      line-height: 58px;
    }

    .insideapp .row .card-05 {
      margin-top: 70px;
    }

    .features .card {
      width: 100%;
      max-width: 100%;
      height: 100%;
      padding: 20px 40px 20px 80px;
    }

    .pricing .pricing-item {
      width: 100%;
      max-width: 100%;
    }
  }

  @media (max-width: 767.98px) {
    .section-title h2 {
      font-size: 30px;
      line-height: 36px;
    }

    .section-title p {
      font-size: 16px;
    }

    /* Hero Section */
    .hero {
      min-height: auto;
      padding: 50px 0;
    }

    .hero h2 {
      font-size: 32px;
      line-height: 38px;
      margin: 16px auto;
    }

    .hero p {
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 24px;
    }

    .hero .download-btn {
      font-size: 14px;
      padding: 8px 18px;
    }

    /* About Section */
    .about {
      padding: 50px 0 30px 0;
    }

    .about .about-row-bg {
      background: none;
    }

    .about .about-sup .num-01,
    .about .about-sup .num-02,
    .about .about-sup .num-03 {
      width: 100%;
      max-width: 100%;
      padding: 20px 24px;
      margin-bottom: 15px;
    }

    .about .about-sup .num-01 h2,
    .about .about-sup .num-02 h2,
    .about .about-sup .num-03 h2 {
      font-size: 22px;
      line-height: 26px;
    }

    /* Features Section */
    .features .card {
      width: 100%;
      max-width: 100%;
      padding: 20px 20px 20px 75px;
    }

    .features .card h2 {
      font-size: 22px;
    }

    .features .card p {
      font-size: 15px;
    }

    /* Inside App Section */
    .insideapp {
      background: var(--color-midnight);
      padding: 50px 0;
    }

    .insideapp .section-title {
      padding-bottom: 40px;
    }

    .insideapp .row>[class*="col"]:nth-child(even) .card {
      margin-top: 0;
    }

    .insideapp .row .card-05 {
      margin-top: auto;
    }

    .insideapp .card {
      max-width: 100%;
      padding: 30px 15px;
      text-align: center;
    }

    /* Ensure the column acts as a flex container */
    .insideapp .row>[class*="col"] {
      display: flex;
      flex-direction: column;
    }

    /* Make each card stretch to 100% height of its row column */
    .insideapp .card {
      width: 100%;
      max-width: 215px;
      height: 100%;
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin: auto;
    }

    .insideapp .card h2 {
      font-size: 22px;
      line-height: 26px;
    }

    /* Pricing Section */
    .pricing .pricing-item {
      width: 100%;
      max-width: 100%;
      padding: 30px 20px;
      border-radius: 28px;
      margin-bottom: 24px;
    }

    .pricing h2 {
      font-size: 24px;
      line-height: 28px;
    }

    .pricing h2 span {
      font-size: 30px;
    }

    .pricing ul li {
      font-size: 16px;
      padding: 12px 14px;
    }

    /* Destinations Section */
    .destinations .card p {
      width: 100%;
    }

    /* Social Section */
    .social .social-row-bg {
      border-radius: 28px;
      padding: 30px 20px;
    }

    .social .card {
      padding: 24px 20px;
    }

    /* App Section */
    .app .app-row-bg {
      border-radius: 28px;
      padding: 30px 20px;
    }

    .app .features-item .right-side {
      width: 100%;
      text-align: center;
      margin-top: 20px;
    }

    .app .features-item h2 {
      font-size: 32px;
      line-height: 36px;
    }

    /* Trip Section */
    .trip .trip-item {
      padding: 35px 20px;
      border-radius: 30px;
      text-align: center;
      margin: auto;
    }

    .trip .trip-item h2 {
      font-size: 32px;
      line-height: 36px;
    }

    .trip .trip-item p {
      font-size: 16px;
      line-height: 22px;
    }

    .trip .trip-item .download-btn {
      margin: 20px 0 0 0;
    }

    /* Footer */
    .footer .footer-about .logo,
    .footer .footer-links,
    .footer .footer-links ul li {
      justify-content: center;
      text-align: center;
    }

    .footer .footer-links {
      margin-top: 60px;
    }

    .footer-stores-badge {
      text-align: center;
    }

    .footer .footer-stores-badge a {
      display: block;
    }

    .footer .social-links {
      justify-content: center !important;
      margin-top: 15px;
    }

    .footer .copyright {
      padding: 25px;
    }

    .footer .copyright p {
      text-align: center !important;
    }
  }

  @media (max-width: 575.98px) {
    .hero .d-flex.mt-4 {
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .hero .download-btn+.download-btn {
      margin-left: 0;
    }

    .pricing .pricing-item {
      padding: 24px 16px;
    }
  }