

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/


/* Fonts and Font Sizes and Font Weights */
:root {

  /* Font Family */
  --default-font: "Poppins",  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";

  /* Fonts Sizes and Font Weights*/
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 22px;
  --text-3xl: 30px;
  --text-4xl: 40px;
  --text-5xl: 50px;
  --text-6xl: 65px;
  --text-7xl: 70px;
  --text-8xl: 96px;
  --text-9xl: 130px;
  --font-light:300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #000000; /* Background color for the entire website, including individual sections */
  --default-color:  #B5B5B5;

  /* Default color used for the majority of the text content across the entire website */
  --heading-color:  #E2B54A; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #E2B54A; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */

}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #B5B5B5;  /* The default color of the main navmenu links */
  --nav-hover-color: #E2B54A; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #000000; /* Used as the background color for mobile navigation menu */
}


:root {
  --amber-300:#E4C560;
  --black:#000000;
  --white:#ffffff;
  --stone-700:#413c3c;
}

/* 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);
  overflow-x: hidden;
}

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);
  margin: 0;
}



h1{
  font-weight: var(--font-light);
  font-size: var(--text-4xl);
  line-height: 1;

}

h2 {
  font-weight: var(--font-light);
  font-size: var(--text-4xl);
  line-height: 1;
}

h3 {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  line-height: 1.2;
}

h4 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  line-height: 1.1;
}

/* h5 {
  font-size: var(--text-xl);
  line-height: 1.1;
  font-weight: var(--font-semibold);
} */

h6 {
  font-weight: var(--font-medium);
  font-size: var(--text-xl);
  line-height: 1;
}

p {
  font-weight: 300;
  font-size: var(--text-xl);
  line-height: 1.3;
  color: var(--default-color);
  margin-bottom: 0;
}



/* Common Classes */
.bg-white {
  background-color: var(--white);
}
.text-white {
  color: var(--white);
}

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

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

.text-initial {
  text-transform: initial;
}
.text-capitalize {
  text-transform: capitalize;
}

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

.font-medium {
  font-weight: var(--font-medium);
}
.font-normal {
  font-weight: var(--font-normal);
}

.font-bold {
  font-weight: var(--font-bold);
}

.font-semibold {
  font-weight: var(--font-semibold);
}

.w-inherit{
  width: inherit;
}



/*--------------------------------------------------------------
# Button Styles
--------------------------------------------------------------*/


.btn-wrapper{
  display: flex;
  flex-direction: column;
}


.btn {
    cursor: pointer;
    text-align: center;
    transition: all 0.5s ease-in-out;
    outline: none;
    border: none;
    line-height: 1;
    text-align: center;

}

.btn:hover {
    transition: all 0.5s ease-in-out;
}

.btn-outline {
    font-size: var(--text-base);
    display: inline-block;
    padding: 20px 40px;
    border-radius: 50px;
    color: var(--accent-color);
    background-color: transparent;
    border: 1px solid var(--accent-color);
    transition: all 0.5s ease-in-out;
    font-weight: var(--font-semibold);
}

.btn-outline:hover{
    background-color: var(--accent-color);
    border-color:transparent;
    color: var(--background-color);
}



.btn-solid {
  border-radius: 5px;
  background-color: var(--background-color);
  padding: 10px 20px;
}

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

.header .logo {
  max-height: 60px;
}


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

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  background-color: var(--background-color);
  transition: all 0.5s ease-in-out;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: var(--text-base);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-weight:var(--font-medium);
    line-height: 1;
  }


  .navmenu li:last-child a {
    padding-right: 0;
  }

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

}


/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--accent-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    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;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

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

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

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

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: var(--text-base);
  line-height: 1.7;
  font-weight: var(--font-light);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.footer h4 {
  font-size: var(--text-2xl);
  font-weight: var(--font-medium);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 0;
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.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 {
  color: var(--default-color);
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  font-weight: var(--font-light);
}

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

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

.footer .copyright {
  padding-top: 20px;
}

.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: var(--text-2xl);
  color: var(--black);
  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: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}

.section-title p {
  font-size: 15px;
  margin-bottom: 10px;
}

/*--============================================================================================================
#    H O M E  P A G E
==============================================================================================================--*/


/*--------------------------------------------------------------
# Home Page Banner
--------------------------------------------------------------*/
.home-banner{
  overflow-y: visible;
  background-color: transparent;
  overflow-x: hidden;
}


.home-banner .swiper .swiper-pagination-bullet{
  width: 11px;
  height: 11px;
  opacity: 0.3;
  background-color: #FFFFFF;
  transition: all ease-in 300ms;
}

.home-banner .swiper .swiper-pagination-bullet-active{
  background-color: #E0AA3F;
  opacity: 1;
}

.banner-illustration{
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.swiper-container {
  width: 100%;
  height: 100%;
  max-width: 90%;
  margin: 0 auto;
}


.swiper-full-mobile {
	position: relative;
	height: 560px;
  overflow: hidden;
}

.swiper-full-mobile::before {
	content: "";
	width: 100%;
	background: url("/assets/img/frame.png");
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	right: 0px;
	top: 0;
	height: 100%;
	margin: auto;
	background-color: #000;
	border-top-left-radius: 80px;
	border-top-right-radius: 80px;
}
.swiper-full-mobile .swiper-slide {
  height: 100%;
}
.swiper-full-mobile .swiper-slide img {
	max-width: 85%;
	height: 100%;
	margin: 20px 32px 0;
	object-fit: contain;
	object-position: top;
	width: 100%;
}

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

.about-us,.footer{
  background-size: cover;
  height: max-content;
  background-repeat: no-repeat;
  overflow-y: visible;
  position: relative;
  background-image: url("/assets/img/about-bg.webp");
}

.about-tuktuki{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-tuktuki .logo{
  max-height: 80px;
}

.about-tuktuki p{
  max-width: 65%;
  margin: 0 auto;


}
.about-us .yellow-arr{
  position: absolute;
  right: 20px;
  bottom: -50px;
  z-index: 2;
}
/*--------------------------------------------------------------
# Download App
--------------------------------------------------------------*/

.download-app{
  background-color: var(--amber-300);
  position: relative;
}

.download-app h2,.download-app h6{
  color: var(--black);
}

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

.download-app .illustration {
	position: relative;
	left: -42%;
}

.webshows{
  margin-bottom: -40px;
}

.qr {
	width: 122px;
	height: 122px;
}

/*--============================================================================================================
#    P R I V A C Y  P A G E
==============================================================================================================--*/



.privacy-policy h1,.data-deletion-policy h1{
  margin-bottom: 50px;
  text-align: center;
}

.data-deletion-policy h1 {
  margin-bottom: 20px;
}

.privacy-policy p,.data-deletion-policy p{
  margin-bottom: 10px;
}

.privacy-policy h4,.data-deletion-policy h4,.data-deletion-policy h6{
  margin-bottom: 20px;
}

.data-deletion-policy h3{
  margin-bottom: 50px;
  text-align: center;
}
