/**
* Template Name: Bootslander
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-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;
}

/* 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: #15100d; /* Background color for the entire website, including individual sections */
  --default-color: #dccbbc; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #fff3e2; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff8c2a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #221914; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #120904; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff8c2a; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: rgba(16, 10, 7, 0.96); /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: rgba(17, 11, 8, 0.98); /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #f4d9be; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffb15d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #1a1410;
  --surface-color: #261d17;
}

.dark-background {
  --background-color: #1a110b;
  --default-color: #f2deca;
  --heading-color: #fff4e6;
  --surface-color: #271c15;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  background-image:
    radial-gradient(circle at top left, rgba(255, 140, 42, 0.14), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(255, 189, 94, 0.1), transparent 22%),
    linear-gradient(180deg, #221813 0%, #17110d 100%);
  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 {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .logo img.brand-logo {
  max-height: none;
}

.brand-logo {
  height: 30px;
  width: auto;
  max-width: min(260px, 36vw);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 640px) {
  .brand-logo {
    height: 20px;
    max-width: 180px;
  }
}

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

.scrolled .header {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(10, 6, 4, 0.9);
  backdrop-filter: blur(18px);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

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

  .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);
    border: 1px solid rgba(255, 140, 42, 0.12);
  }

  .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;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .header {
    padding: 16px 0;
    overflow: visible;
    z-index: 1000;
  }

  .header .container-fluid {
    padding-inline: 12px;
    gap: 12px;
  }

  .header .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-logo {
    width: min(180px, calc(100vw - 96px));
    height: auto;
    max-width: 100%;
  }

  .mobile-nav-toggle {
    appearance: none;
    border: 1px solid rgba(255, 181, 93, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: var(--nav-color);
    font-size: 28px;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: 0;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  }

  .navmenu {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    z-index: 9998;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 32px));
    max-height: calc(100vh - 110px);
    padding: 14px;
    margin: 0;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(21, 14, 10, 0.98), rgba(14, 10, 8, 0.98)),
      radial-gradient(circle at top right, rgba(255, 140, 42, 0.08), transparent 38%);
    border: 1px solid rgba(255, 181, 93, 0.12);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(20px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: 0.3s;
    z-index: 9999;
  }

  .navmenu li {
    width: 100%;
    margin-bottom: 10px;
  }

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

  .navmenu>ul>li {
    padding: 0;
  }

  .navmenu>ul>li>a:before {
    display: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 16px 18px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
    transition: 0.3s;
    width: 100%;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 181, 93, 0.1);
  }

  .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);
    background-color: rgba(255, 140, 42, 0.08);
    border-color: rgba(255, 181, 93, 0.22);
  }

  .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: 8px 0 0;
    margin: 8px 0 0;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
    border: 0;
    box-shadow: none;
  }

  .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-x: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    background-color: rgba(255, 140, 42, 0.14);
    border-color: rgba(255, 181, 93, 0.3);
  }

  .mobile-nav-active .navmenu {
    overflow: visible;
  }

  .mobile-nav-active .navmenu>ul {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav-toggle:focus-visible {
    outline: 2px solid rgba(255, 181, 93, 0.55);
    outline-offset: 3px;
  }

  .mobile-nav-toggle:hover {
    color: var(--nav-hover-color);
    background-color: rgba(255, 140, 42, 0.12);
    border-color: rgba(255, 181, 93, 0.28);
  }

  @media (max-width: 640px) {
    .header .container-fluid {
      padding-inline: 10px;
    }

    .navmenu {
      right: 10px;
    }

    .brand-logo {
      width: min(160px, calc(100vw - 84px));
    }

    .navmenu ul {
      width: calc(100vw - 24px);
      right: -6px;
    }

    .navmenu a,
    .navmenu a:focus {
      font-size: 17px;
      padding: 15px 16px;
    }
  }
}

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

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

.footer .footer-top .row {
  align-items: flex-start;
  justify-content: space-between;
}

.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 img.footer-brand-logo {
  max-height: none;
}

.footer-brand-logo {
  width: 200px;
  height: auto;
  max-width: 100%;
  padding: 0;
  background: transparent;
}

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

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .footer-summary {
  max-width: 420px;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 16%);
}

.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 {
  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: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .footer-contact-block {
  margin-bottom: 30px;
  margin-left: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer .footer-contact-block h4 {
  margin-bottom: 4px;
}

.footer .footer-contact a {
  color: inherit;
}

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

@media (max-width: 991px) {
  .footer .footer-contact-block {
    margin-left: 0;
    text-align: left;
    align-items: flex-start;
  }
}

.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: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

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

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 500;
  padding: 0;
  padding-bottom: 2rem;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 640px) {
  .section-title {
    padding-bottom: 14px;
  }

  .section-title h2 {
    font-size: 22px;
    padding-bottom: 1rem;
    line-height: 1.05;
  }

  .section-title h2::after {
    width: 72px;
    margin: 4px 8px;
  }

  .section-title div {
    font-size: 15px;
    line-height: 1.35;
  }
}

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

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) sepia(0.28) saturate(0.58) brightness(0.52) contrast(1.1);
  z-index: 1;
}

.hero:before {
  content: "";
  background:
    radial-gradient(circle at left center, rgba(255, 140, 42, 0.16), transparent 32%),
    linear-gradient(120deg, rgba(24, 16, 11, 0.88) 20%, rgba(34, 23, 16, 0.7) 55%, rgba(58, 31, 12, 0.52) 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--heading-color);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

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

.hero .btn-get-started {
  color: #1d1209;
  background: linear-gradient(135deg, #ffb15d 0%, #ff8c2a 55%, #f56d16 100%);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 18px 40px rgba(255, 140, 42, 0.24);
}

.hero .btn-get-started:hover {
  color: #1d1209;
  background: linear-gradient(135deg, #ffc072 0%, #ff9835 55%, #ff7a1f 100%);
  box-shadow: 0 20px 45px rgba(255, 140, 42, 0.32);
  transform: translateY(-2px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #f5deca;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero .hero-img {
  display: flex;
  justify-content: flex-end;
}

.hero .hero-visual {
  position: relative;
  width: min(100%, 560px);
  min-height: 430px;
  margin-left: auto;
}

.hero .hero-visual-glow {
  position: absolute;
  inset: 12% 10% auto 8%;
  height: 62%;
  background:
    radial-gradient(circle at center, rgba(255, 148, 53, 0.45) 0%, rgba(255, 148, 53, 0.14) 40%, rgba(255, 148, 53, 0) 72%);
  filter: blur(28px);
  z-index: 0;
}

.hero .hero-stack {
  position: absolute;
}

.hero .hero-stack-tv {
  right: 0;
  top: 18px;
  width: 100%;
  height: 360px;
}

.hero .hero-stack-mobile {
  left: 14px;
  bottom: 10px;
  width: 32%;
  height: 248px;
}

.hero .hero-stack-card {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(15, 10, 8, 0.82);
  border: 1px solid rgba(255, 181, 93, 0.24);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.95s ease, filter 0.95s ease;
  will-change: transform, opacity, filter;
}

.hero .hero-stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 18%, transparent 72%, rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

.hero .hero-stack-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--hero-object-position, 50% 50%);
  filter: sepia(0.08) saturate(0.96) hue-rotate(-12deg);
}

.hero .hero-stack-tv .hero-stack-card {
  border-radius: 30px;
}

.hero .hero-stack-mobile .hero-stack-card {
  border-radius: 28px;
  border-color: rgba(255, 196, 128, 0.34);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.hero .hero-stack-card.is-front {
  opacity: 1;
  filter: none;
  z-index: 3;
}

.hero .hero-stack-card.is-mid {
  opacity: 0.7;
  filter: saturate(0.85);
  z-index: 2;
}

.hero .hero-stack-card.is-back {
  opacity: 0.44;
  filter: saturate(0.72);
  z-index: 1;
}

.hero .hero-stack-tv .hero-stack-card.is-front {
  transform: translate(0, 0) rotate(2deg) scale(1);
}

.hero .hero-stack-tv .hero-stack-card.is-mid {
  transform: translate(-18px, 22px) rotate(-3deg) scale(0.95);
}

.hero .hero-stack-tv .hero-stack-card.is-back {
  transform: translate(-40px, 46px) rotate(-7deg) scale(0.9);
}

.hero .hero-stack-mobile .hero-stack-card.is-front {
  transform: translate(0, 0) rotate(-9deg) scale(1);
}

.hero .hero-stack-mobile .hero-stack-card.is-mid {
  transform: translate(16px, -12px) rotate(-2deg) scale(0.94);
}

.hero .hero-stack-mobile .hero-stack-card.is-back {
  transform: translate(28px, -24px) rotate(5deg) scale(0.88);
}

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

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

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 110px 0 80px 0;
    text-align: center;
  }

  .hero .hero-img {
    order: 2;
    max-width: 78%;
    margin: 28px auto 0;
    justify-content: center;
  }

  .hero .hero-visual {
    width: min(100%, 480px);
    min-height: 360px;
  }

  .hero .hero-stack-tv {
    height: 320px;
  }

  .hero .hero-stack-mobile {
    width: 34%;
    height: 220px;
    left: 4px;
  }

  .hero .d-flex {
    justify-content: center;
  }

  .hero .btn-watch-video {
    margin-left: 16px;
  }
}

@media (max-width: 640px) {
  .hero .hero-img {
    max-width: 100%;
  }

  .hero .hero-visual {
    min-height: 300px;
  }

  .hero .hero-stack-tv {
    height: 260px;
  }

  .hero .hero-stack-tv .hero-stack-card {
    border-radius: 22px;
  }

  .hero .hero-stack-mobile {
    width: 38%;
    height: 182px;
    left: -2px;
    bottom: 0;
  }

  .hero .hero-stack-mobile .hero-stack-card {
    border-radius: 22px;
  }

  .hero .hero-stack-tv .hero-stack-card.is-mid {
    transform: translate(-12px, 18px) rotate(-3deg) scale(0.95);
  }

  .hero .hero-stack-tv .hero-stack-card.is-back {
    transform: translate(-26px, 34px) rotate(-6deg) scale(0.9);
  }

  .hero .hero-stack-mobile .hero-stack-card.is-mid {
    transform: translate(10px, -10px) rotate(-2deg) scale(0.94);
  }

  .hero .hero-stack-mobile .hero-stack-card.is-back {
    transform: translate(18px, -18px) rotate(4deg) scale(0.88);
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #34251b;
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #2b1f17;
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #211812;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 100px;
}

.about .about-section-title {
  max-width: none;
  padding-bottom: 28px;
}

.about .about-section-title p {
  margin: 18px 0 0;
  max-width: none;
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  border-radius: 10px;
  border: 1px solid rgba(255, 140, 42, 0.08);
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-ecosystem-grid {
  align-items: stretch;
}

.features .features-item {
  background:
    linear-gradient(180deg, rgba(39, 26, 18, 0.94), rgba(24, 17, 12, 0.92)),
    radial-gradient(circle at top right, rgba(255, 140, 42, 0.12), transparent 42%);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  min-height: 100%;
  transition: 0.3s;
  border: 1px solid rgba(255, 181, 93, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.features .ecosystem-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 42, 0.1);
  border: 1px solid rgba(255, 181, 93, 0.16);
  flex-shrink: 0;
}

.features .features-item i {
  font-size: 28px;
  line-height: 0;
  color: #ffb15d;
}

.features .ecosystem-kicker {
  display: inline-flex;
  margin: 0 0 12px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0 0 14px;
  padding: 0;
  line-height: 1.2;
  font-size: 28px;
  color: var(--heading-color);
}

.features .features-item p {
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 15px;
  line-height: 1.8;
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

.features .features-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
}

.features .features-item:hover h3 {
  color: var(--accent-color);
}

.features .ecosystem-card-accent {
  background:
    linear-gradient(180deg, rgba(47, 30, 20, 0.96), rgba(24, 17, 12, 0.92)),
    radial-gradient(circle at top right, rgba(255, 177, 93, 0.16), transparent 48%);
}

.features .ecosystem-card-full {
  align-items: flex-start;
  padding-block: 32px;
}

@media (max-width: 991px) {
  .features .features-item {
    padding: 24px;
  }

  .features .features-item h3 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .features .features-item {
    flex-direction: column;
  }

  .features .ecosystem-icon {
    width: 54px;
    height: 54px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .section-title {
  padding-bottom: 42px;
}

.stats .section-title p {
  max-width: 980px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.stats .stats-item {
  background:
    linear-gradient(180deg, rgba(39, 26, 18, 0.94), rgba(24, 17, 12, 0.92)),
    radial-gradient(circle at top right, rgba(255, 140, 42, 0.1), transparent 42%);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  width: 100%;
  position: relative;
  text-align: left;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  border-radius: 24px;
  border: 1px solid rgba(255, 181, 93, 0.1);
  min-height: 100%;
}

.stats .ecosystem-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 42, 0.1);
  border: 1px solid rgba(255, 181, 93, 0.16);
  flex-shrink: 0;
}

.stats .ecosystem-icon i {
  font-size: 28px;
  line-height: 0;
  color: #ffb15d;
}

.stats .stats-item h4 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.3;
  color: var(--heading-color);
}

.stats .stats-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.stats .deployment-item {
  min-height: 100%;
}

@media (max-width: 768px) {
  .stats .section-title p {
    font-size: 16px;
  }

  .stats .stats-item {
    padding: 24px;
    flex-direction: column;
  }

  .stats .stats-item h4 {
    font-size: 21px;
  }
}

/*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
.details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .details .features-item+.features-item {
    margin-top: 40px;
  }
}

.details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.details .features-item img {
  border-radius: 24px;
  border: 1px solid rgba(255, 181, 93, 0.16);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  background: rgba(18, 12, 9, 0.72);
}

.details .features-item .fst-italic {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.details .features-item ul {
  list-style: none;
  padding: 0;
}

.details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.details .features-item ul li:last-child {
  padding-bottom: 0;
}

.details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.95fr 0.95fr;
  grid-template-rows: repeat(3, 210px);
  grid-template-areas:
    "featured-tv featured-tv featured-mobile tv-guide"
    "featured-tv featured-tv featured-mobile tv-live"
    "mobile-channels mobile-quality featured-mobile tv-live";
  gap: 18px;
}

.gallery .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 181, 93, 0.14);
  background: rgba(20, 13, 10, 0.84);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.gallery .gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.12) 0%, rgba(7, 4, 3, 0) 34%, rgba(7, 4, 3, 0.82) 100%),
    radial-gradient(circle at top left, rgba(255, 140, 42, 0.14), transparent 36%);
  z-index: 1;
  pointer-events: none;
}

.gallery .gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--gallery-object-position, 50% 50%);
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(0.98);
}

.gallery .gallery-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.08);
}

.gallery .gallery-card-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 22px 20px;
  z-index: 2;
}

.gallery .gallery-card-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 12, 10, 0.74);
  border: 1px solid rgba(255, 181, 93, 0.22);
  color: #f3c898;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery .gallery-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #fff6eb;
}

.gallery .gallery-card-featured-tv {
  grid-area: featured-tv;
}

.gallery .gallery-card-featured-mobile {
  grid-area: featured-mobile;
}

.gallery .gallery-card-tv-guide {
  grid-area: tv-guide;
}

.gallery .gallery-card-tv-live {
  grid-area: tv-live;
}

.gallery .gallery-card-mobile-channels {
  grid-area: mobile-channels;
}

.gallery .gallery-card-mobile-quality {
  grid-area: mobile-quality;
}

.gallery .gallery-card-featured-tv h3,
.gallery .gallery-card-featured-mobile h3 {
  font-size: 28px;
}

@media (max-width: 991px) {
  .gallery .gallery-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-template-areas:
      "featured-tv featured-tv"
      "featured-mobile featured-mobile"
      "tv-guide tv-live"
      "mobile-channels mobile-quality";
  }

  .gallery .gallery-card {
    min-height: 280px;
  }

  .gallery .gallery-card-featured-tv,
  .gallery .gallery-card-featured-mobile {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .gallery .gallery-showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "featured-tv"
      "featured-mobile"
      "tv-guide"
      "tv-live"
      "mobile-channels"
      "mobile-quality";
  }

  .gallery .gallery-card,
  .gallery .gallery-card-featured-tv,
  .gallery .gallery-card-featured-mobile {
    min-height: 260px;
  }

  .gallery .gallery-card-meta {
    padding: 18px 18px 16px;
  }

  .gallery .gallery-card h3,
  .gallery .gallery-card-featured-tv h3,
  .gallery .gallery-card-featured-mobile h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials:before {
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 5, 3, 0.8) 0%, rgba(12, 7, 4, 0.84) 100%),
    radial-gradient(circle at center, rgba(255, 140, 42, 0.12), transparent 38%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .deployment-shell {
  display: grid;
  gap: 26px;
}

.testimonials .deployment-intro {
  max-width: 860px;
}

.testimonials .deployment-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 12, 10, 0.66);
  border: 1px solid rgba(255, 181, 93, 0.22);
  color: #f3c898;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonials .deployment-intro h2 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.16;
  color: #fff5e8;
}

.testimonials .deployment-intro p {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.testimonials .deployment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.testimonials .deployment-card {
  padding: 26px 22px 24px;
  border-radius: 22px;
  background: rgba(31, 21, 15, 0.82);
  border: 1px solid rgba(255, 181, 93, 0.1);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.testimonials .deployment-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(255, 140, 42, 0.08);
  border: 1px solid rgba(255, 181, 93, 0.18);
}

.testimonials .deployment-icon i {
  font-size: 24px;
  color: #ffb15d;
}

.testimonials .deployment-card h3,
.testimonials .deployment-callout h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  color: #fff5e8;
}

.testimonials .deployment-card p,
.testimonials .deployment-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 14%);
}

.testimonials .deployment-callout {
  padding: 28px 30px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(39, 26, 18, 0.9), rgba(24, 16, 11, 0.86)),
    radial-gradient(circle at top right, rgba(255, 140, 42, 0.16), transparent 42%);
  border: 1px solid rgba(255, 181, 93, 0.12);
  max-width: 760px;
}

@media (max-width: 991px) {
  .testimonials .deployment-intro h2 {
    font-size: 34px;
  }

  .testimonials .deployment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .testimonials .deployment-intro h2 {
    font-size: 28px;
  }

  .testimonials .deployment-intro p {
    font-size: 16px;
  }

  .testimonials .deployment-grid {
    grid-template-columns: 1fr;
  }

  .testimonials .deployment-callout {
    padding: 24px 22px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .training-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.team .training-intro h3 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.2;
  color: var(--heading-color);
}

.team .training-intro p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.team .training-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 181, 93, 0.16);
  font-size: 15px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.team .training-courses {
  display: grid;
  gap: 20px;
}

.team .training-course {
  position: relative;
  padding: 0 0 22px 52px;
  border-bottom: 1px solid rgba(255, 181, 93, 0.14);
}

.team .training-course:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.team .training-course-meta {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team .training-course-index {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 140, 42, 0.46);
}

.team .training-course h4 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  color: var(--heading-color);
}

.team .training-course p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 14%);
}

.team .training-course span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-style: italic;
}

@media (max-width: 991px) {
  .team .training-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .team .training-intro h3 {
    font-size: 30px;
  }

  .team .training-course {
    padding-left: 46px;
  }

  .team .training-course-index {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-intro {
  max-width: 980px;
  margin: 0 0 40px;
  text-align: left;
  align-content: flex-start;
}

.pricing .pricing-intro p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.85;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.pricing .pricing-intro p:last-child {
  margin-bottom: 0;
}

.pricing .pricing-grid {
  align-items: stretch;
}

.pricing .pricing-item {
  background:
    linear-gradient(180deg, rgba(40, 27, 19, 0.94), rgba(23, 16, 11, 0.9)),
    radial-gradient(circle at top left, rgba(255, 140, 42, 0.08), transparent 45%);
  padding: 34px 32px 34px;
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 181, 93, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.pricing .service-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.2;
}

.pricing .description {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.pricing .cta-btn {
  border: 1px solid rgba(255, 181, 93, 0.28);
  color: var(--heading-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 0;
  margin-bottom: 0;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 22px 0 0;
  margin: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  text-align: left;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 181, 93, 0.12);
}

.pricing ul li {
  padding: 13px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing ul li span {
  display: block;
  font-size: 14px;
  line-height: 1.7;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #ff9c3c;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 2px;
}

.pricing .featured {
  position: relative;
  transform: translateY(-12px);
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing .pricing-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.pricing .pricing-cta .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  padding-inline: 28px;
}

@media (max-width: 992px) {
  .pricing .featured {
    transform: none;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 700px;
  line-height: 1.85;
}

.faq.faq-centered .content {
  text-align: center;
}

.faq.faq-centered .content p {
  margin-left: auto;
  margin-right: auto;
}

.faq .faq-container {
  margin-top: 15px;
}

.faq.faq-centered .faq-container {
  max-width: 920px;
  margin: 20px auto 0;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 140, 42, 0.08);
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

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

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

.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;
}

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

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

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

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.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);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-intro {
  margin-bottom: 30px;
}

.contact .contact-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.contact .info-item+.info-item {
  margin-top: 52px;
}

.contact .contact-info-column {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact .info-item {
  align-items: flex-start;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 26px;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 22px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.contact .info-item p+p {
  margin-top: 6px;
}

.contact .info-item a {
  color: inherit;
  text-decoration: none;
}

.contact .info-item a:hover {
  color: var(--accent-color);
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .contact-map {
  height: 100%;
  min-height: 450px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 181, 93, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.contact .contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .contact .contact-info-column {
    min-height: 0;
    justify-content: flex-start;
  }

  .contact .info-item+.info-item {
    margin-top: 38px;
  }

  .contact .info-item i {
    width: 56px;
    height: 56px;
    font-size: 23px;
    margin-right: 18px;
  }

  .contact .info-item h3 {
    font-size: 20px;
  }

  .contact .info-item p {
    font-size: 16px;
  }
}

.contact .php-email-form {
  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: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.09);
}

.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(--accent-color);
}

.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] {
  color: #1d1209;
  background: linear-gradient(135deg, #ffb15d 0%, #ff8c2a 55%, #f56d16 100%);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, #ffc072 0%, #ff9835 55%, #ff7a1f 100%);
}
