/**
* Updated: Jul 27 2023 with Bootstrap v5.3.1
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", 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";
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #0a0d13;
  --color-primary: #bc955f; /*#b67118*/
  --color-primary2: #886841;
  --color-primary3: #493822;
  --color-secondary: #333; /*#0e1d34;*/
  --bg-color-primary: #333;
}

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

::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #202020;
}

::-webkit-scrollbar
{
    width: 8px;
    background-color: #222222;
}

::-webkit-scrollbar-thumb
{
    background-color: var(--color-primary);
    border: 2px solid #636262;
}

#main {
  background: var(--bg-color-primary);
  color:#efefef;
}

.fadeout-img-1 {
  position: relative;
  overflow: hidden;
}

.fadeout-img-1 img {
  display: block;
  width: 100%;
  height: auto;
}

.fadeout-img-1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(51,51,51, 0) 0%, rgba(51,51,51, 1) 100%);
  width:49%;
}  

.fadeout-img-2 {
  position: relative;
  overflow: hidden;
}

.fadeout-img-2 img {
  display: block;
  width: 100%;
  height: auto;
}

.fadeout-img-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 43%;
  background: linear-gradient(to bottom, rgba(51,51,51, 0) 0%, rgba(51,51,51, 1) 100%);
  width:100%;
}

#ai.ai-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(188, 149, 95, 0.16), transparent 36%),
    radial-gradient(circle at 92% 92%, rgba(90, 139, 197, 0.16), transparent 34%),
    linear-gradient(rgba(26, 26, 26, 0.82), rgba(36, 36, 36, 0.6)),
    url("../img/home/ai-bg.jpg") no-repeat center center fixed;
  background-size: cover;
}

#ai .ai-subtitle {
  color: rgba(243, 243, 243, 0.88);
  max-width: 66ch;
  margin: 6px auto 0;
  line-height: 1.68;
}

#ai .chat-wrapper.ai-chat-shell {
  height: clamp(420px, 62vh, 560px);
  min-height: 420px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: rgba(20, 20, 20, 0.56);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

#ai .ai-loading {
  font-size: 1rem;
  color: #c3cad4 !important;
  letter-spacing: 0.4px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

#ai .ai-content-col {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

#ai .ai-info-title {
  color: #f0f2f6;
  letter-spacing: 0.2px;
}

#ai .ai-info-card {
  background: linear-gradient(160deg, rgba(41, 41, 41, 0.94), rgba(28, 28, 28, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e8e8e8;
  line-height: 1.62;
  padding: 12px 12px 11px;
  margin-bottom: 10px;
}

#ai .ai-feature-list {
  margin: 4px 0 0;
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr;
}

#ai .ai-feature-item {
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 4px 0;
  color: rgba(238, 238, 238, 0.94);
  line-height: 1.45;
  transition: transform 0.16s ease;
}

#ai .ai-feature-item:hover {
  transform: translateX(2px);
}

#ai .ai-feature-icon {
  font-size: 1.05rem;
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 991px) {
  #ai .chat-wrapper.ai-chat-shell {
    height: clamp(380px, 54vh, 500px);
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  #ai.ai-section {
    background-attachment: scroll;
  }

  #ai .chat-wrapper.ai-chat-shell {
    height: 420px;
    min-height: 420px;
  }

  #ai .ai-feature-list {
    grid-template-columns: 1fr;
  }
}

.home-client-padding {
  padding-left: 100px;
  padding-right: 0;
}

.home-client-grid {
  align-items: stretch;
  justify-content: center;
}

.home-client-grid .client-logo-col {
  display: flex;
  justify-content: center;
}

.home-client-tile {
  width: 100%;
  min-height: 96px;
  aspect-ratio: 1.9 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 14px;
  border: 1px solid rgba(210, 220, 232, 0.28);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.16), transparent 42%),
    radial-gradient(circle at 84% 88%, rgba(126, 169, 219, 0.16), transparent 44%),
    linear-gradient(160deg, rgba(67, 75, 86, 0.75), rgba(42, 50, 58, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
  position: relative;
}

.home-client-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.home-client-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 215, 172, 0.62);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.2), transparent 44%),
    radial-gradient(circle at 84% 88%, rgba(146, 183, 227, 0.2), transparent 46%),
    linear-gradient(160deg, rgba(74, 83, 94, 0.82), rgba(47, 56, 65, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 14px 28px rgba(0, 0, 0, 0.3);
}

.home-client-logo {
  pointer-events: none;
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.34));
}

.home-client-tile:hover .home-client-logo {
  transform: scale(1.02);
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.38));
}

@media (max-width: 1200px) {
  .home-client-padding {
      padding-left: 0;
      padding-right: 0;
  }
}

@media (max-width: 768px) {
  .home-client-tile {
    min-height: 86px;
    padding: 6px 10px;
    aspect-ratio: auto;
  }

  .home-client-logo {
    max-height: 100%;
  }
}

#updateModal-content {
  background: url('../img/home/tan-backdrop.gif') repeat-y top center;
  padding: 50px 75px;
  position: relative;
}

/* For small screens */
@media screen and (max-width: 768px) {
  #updateModal-content {
    padding: 35px 0px;
  }
}

#updateModal-content:before,#updateModal-content:after {
  background: url('../img/home/tan-backdrop-top.gif') no-repeat center top;
  content: '';
  height: 50px;
  left: 0;
  position: absolute;
  top: -11px;
  width: 100%
}

#updateModal-content:after {
  background: url('../img/home/tan-backdrop-bottom.gif') no-repeat center bottom;
  bottom: -11px;
  top: auto
}


.tan-bg {
  padding: 20px 25px;
  background: linear-gradient(to bottom, rgba(51, 51, 51, 0.1), rgba(51, 51, 51, 0.3)), url('../img/home/tan-backdrop.gif') repeat-y top center;
  background-size: cover, 100%;
  border: none;
  outline: none;
  color: #222!important;
}

.tan-bg:focus {
  background-color: transparent;
}
.tan-bg::-webkit-input-placeholder {
    color: #333;
}
.tan-bg::-moz-placeholder {
    color: #333;
}
.tan-bg:-ms-input-placeholder {
    color: #333;
}
.tan-bg::placeholder {
    color: #333;
}

@keyframes pulse-img-leaderboard {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 10px 10px rgba(255, 215, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}
.pulse-img-leaderboard {
  animation: pulse-img-leaderboard 2s infinite;
  border: 2px solid gold;
}

img {
  user-select: none;
}

.contact-form-submit:focus {
  outline: none;
}

.kofi-open-loading {
  width:520px;
  height:420px;
}

@media screen and (max-width: 520px) {
  .kofi-open-loading {
    width: 100%;
    height: auto;
  }
}

.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: black;
  text-align: center;
  height: 1.5em;
  opacity: .5;
      &:before {
          content: '';
          background: linear-gradient(to right, transparent, #818078, transparent);
          position: absolute;
          left: 0;
          top: 50%;
          width: 100%;
          height: 1px;
      }
      &:after {
          content: attr(data-content);
          position: relative;
          display: inline-block;
          color: black;
          padding: 0 .5em;
          line-height: 1.5em;
          color: #818078;
          background-color: var(--bg-color-primary);
      }
  }


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background:#303030;
}

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

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

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #acacac;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs .page-header:before {
  content: "";
  background-color: rgba(14, 29, 52, 0.8);
  position: absolute;
  inset: 0;
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f3f6fc;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

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

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4278cc;
  content: "/";
}

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

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(100, 77, 49, 0.8)
  color: #fff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
}

.header.sticked {
  background: rgba(17, 18, 20, 0.9);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(9, 18, 32, 0.1);
}

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

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

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

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

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .do-login,
  .navbar .do-login:focus {
    /* background: var(--color-primary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff; */
    margin-left:30px;
    color:#efefef;
    background-color:transparent;
    background-image: url('../img/home/bg-tile-btn.png');
    background-size: 100% 100%;
    text-align:center;
    height:42px;
    padding: 8px 20px;

  }

  .navbar .do-login:hover,
  .navbar .do-login:focus:hover {
    /* color: #fff;
    background: #886841; */
    color:#fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../img/home/bg-tile-btn.png');
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-secondary);
  }

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

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

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

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

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

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(27, 27, 27, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .do-login,
  .navbar .do-login:focus {
    /* background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff; */
    margin:15px;
    margin-left:70px;
    margin-right:70px;
    color:#efefef;
    background-color:transparent;
    background-image: url('../img/home/bg-tile-btn-lg.png');
    background-size: 100% 100%;
    text-align:center;
    height:60px;
    font-size:20px!important;
    padding: 8px 20px;
  
  }

  .navbar .do-login:hover,
  .navbar .do-login:focus:hover {
    /* color: #fff;
    background: rgba(218, 161, 7, 0.8); */
    color:#fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../img/home/bg-tile-btn-lg.png');
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #19335c;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

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

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(37, 37, 37, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Top Menu Refresh
--------------------------------------------------------------*/
#header.header {
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(12, 12, 13, 0.76), rgba(12, 12, 13, 0.28));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

#header .container-fluid {
  min-height: 52px;
}

#header .logo2 {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

#header.header.sticked {
  background: linear-gradient(to bottom, rgba(16, 17, 18, 0.95), rgba(16, 17, 18, 0.90));
  border-bottom-color: rgba(188, 149, 95, 0.26);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

#header .logo2 img {
  display: block;
  transform: translateY(-6px);
  transition: transform 0.2s ease, filter 0.2s ease;
}

#header .logo2:hover img {
  transform: translateY(-7px);
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.34));
}

@media (min-width: 1280px) {
  #header #navbar ul {
    gap: 5px;
  }

  #header #navbar > ul > li > a:not(.do-login) {
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.2px;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  }

  #header #navbar > ul > li > a:not(.do-login):hover,
  #header #navbar > ul > li:hover > a:not(.do-login),
  #header #navbar > ul > li > a.active:not(.do-login) {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-1px);
  }

  #header #navbar .do-login,
  #header #navbar .do-login:focus {
    margin-left: 16px;
    border: 1px solid rgba(188, 149, 95, 0.7);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 7px 16px rgba(0, 0, 0, 0.28);
  }

  #header #navbar .do-login:hover,
  #header #navbar .do-login:focus:hover {
    border-color: rgba(205, 165, 106, 0.95);
  }

  #header #navbar a.discord,
  #header #navbar a.gitlab,
  #header #navbar a.twitter {
    width: 34px;
    height: 34px;
    padding: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center !important;
    margin-left: 3px;
    margin-right: 3px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  }

  #header #navbar a.discord:hover,
  #header #navbar a.gitlab:hover,
  #header #navbar a.twitter:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
  }

  #header #navbar a.discord i,
  #header #navbar a.gitlab i,
  #header #navbar a.twitter i {
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 1em;
    text-align: center;
    line-height: 1;
  }
}

@media (max-width: 1279px) {
  #header .mobile-nav-show,
  #header .mobile-nav-hide {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #header .mobile-nav-show:hover,
  #header .mobile-nav-hide:hover {
    background: rgba(255, 255, 255, 0.18);
  }

  #header .navbar {
    position: fixed;
    top: 0;
    left: auto;
    right: -100%;
    bottom: 0;
    height: 100vh;
    width: 88vw;
    max-width: 370px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: right 0.28s ease, opacity 0.2s ease;
  }

  #header .navbar ul {
    position: fixed;
    top: 0;
    left: auto;
    right: -100%;
    bottom: 0;
    width: 88vw;
    max-width: 370px;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 78px 14px calc(18px + env(safe-area-inset-bottom));
    background: linear-gradient(185deg, rgba(20, 20, 20, 0.98), rgba(31, 31, 31, 0.96));
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    box-shadow: -18px 0 42px rgba(0, 0, 0, 0.42);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(16px);
    transition: right 0.28s ease, opacity 0.2s ease, transform 0.25s ease;
    list-style: none;
  }

  #header .navbar ul::before {
    content: "Menu";
    display: block;
    margin: 0 8px 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 700;
  }

  .mobile-nav-active #header .navbar {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-active #header .navbar ul {
    right: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  #header .navbar li {
    margin-bottom: 6px;
    list-style: none;
  }

  #header .navbar li::marker {
    content: "";
  }

  #header .navbar a,
  #header .navbar a:focus {
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.25px;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  #header .navbar a:hover,
  #header .navbar a.active,
  #header .navbar a:focus.active,
  #header .navbar li:hover > a {
    background: linear-gradient(160deg, rgba(188, 149, 95, 0.23), rgba(188, 149, 95, 0.10));
    border-color: rgba(188, 149, 95, 0.55);
    color: #fff;
  }

  #header .navbar .do-login,
  #header .navbar .do-login:focus {
    margin: 16px 12px 8px;
    border: 1px solid rgba(188, 149, 95, 0.82);
    border-radius: 12px;
    font-size: 18px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 24px rgba(0, 0, 0, 0.30);
  }

  #header .navbar li.d-inline-block {
    display: inline-flex !important;
    width: calc((100% - 14px) / 3);
    margin: 8px 0 0 !important;
    vertical-align: top;
  }

  #header .navbar a.discord,
  #header .navbar a.gitlab,
  #header .navbar a.twitter {
    width: 100%;
    height: 42px;
    padding: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center !important;
    border-radius: 11px;
    margin: 4px 6px 0 0;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
  }

  #header .navbar li.d-inline-block:last-child a {
    margin-right: 0;
  }

  #header .navbar a.discord:hover,
  #header .navbar a.gitlab:hover,
  #header .navbar a.twitter:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
  }

  #header .navbar a.discord i,
  #header .navbar a.gitlab i,
  #header .navbar a.twitter i {
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 1em;
    text-align: center;
    line-height: 1;
  }

  #header .navbar ul::-webkit-scrollbar {
    width: 6px;
  }

  #header .navbar ul::-webkit-scrollbar-thumb {
    background: rgba(188, 149, 95, 0.55);
    border-radius: 999px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;s
  height: 100%;
  margin-bottom: 20px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: #c4c4c5;
  font-size: 48px;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon {
  background: #fff;
}

.featured-services .service-item:hover .icon i {
  color: var(--color-primary);
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--color-secondary);
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: #b9b9b9;
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: var(--color-secondary);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
#about {
  position: relative;
  background: linear-gradient(180deg, rgba(46, 46, 46, 0.45), rgba(34, 34, 34, 0.18));
  overflow: hidden;
}

#about:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(188, 149, 95, 0.18), rgba(188, 149, 95, 0) 36%),
    radial-gradient(circle at 90% 80%, rgba(188, 149, 95, 0.12), rgba(188, 149, 95, 0) 28%);
  pointer-events: none;
}

#about .container {
  position: relative;
  z-index: 1;
}

#about .about-content-col {
  padding-right: 2.2rem;
}

#about .content h3 {
  font-weight: 700;
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  font-family: var(--font-secondary);
  color: var(--color-primary);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 12px;
}

#about .content h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(188, 149, 95, 0.95), rgba(188, 149, 95, 0.25));
}

#about .about-lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(236, 236, 236, 0.92);
  margin-bottom: 0;
  max-width: 60ch;
}

#about .content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

#about .about-feature-list {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

#about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 0;
}

#about .about-feature-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  padding: 14px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

#about .about-feature-item:hover {
  border-color: rgba(188, 149, 95, 0.48);
  background: linear-gradient(160deg, rgba(188, 149, 95, 0.16), rgba(255, 255, 255, 0.05));
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

#about .content ul i {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: var(--color-primary);
  margin-right: 12px;
  line-height: 0;
  background: rgba(188, 149, 95, 0.16);
  border: 1px solid rgba(188, 149, 95, 0.26);
}

#about .content ul h5 {
  font-size: 17px;
  font-weight: 700;
  color: #e7dfd0;
  margin-bottom: 4px;
}

#about .content ul p {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 0;
}

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

#about .about-media-col {
  display: flex;
}

#about .about-media-frame {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.32);
}

#about .about-media-frame:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 22px;
  border-radius: 10px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0));
  pointer-events: none;
}

#about .about-browser-bar {
  width: 100%;
  display: block;
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #404040;
}

#about .about-browser-shot {
  width: 100%;
  display: block;
  border-bottom: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #404040;
}

@media (max-width: 991px) {
  #about .about-content-col {
    padding-right: 0;
    text-align: center;
  }

  #about .content h3:after {
    left: 50%;
    transform: translateX(-50%);
  }

  #about .about-lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 64ch;
  }

  #about .about-feature-list {
    text-align: left;
  }

  #about .about-media-frame {
    margin: 0 auto 10px;
  }
}

@media (max-width: 575px) {
  #about .about-feature-item {
    padding: 13px 12px;
  }
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  border: 1px solid rgba(14, 29, 52, 0.15);
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: #acacac;
  transition: 0.3;
}

.services .card a:hover {
  color: var(--color-primary);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: var(--color-secondary);
  font-size: 15px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Updates Section
--------------------------------------------------------------*/
#updates {
  position: relative;
  padding-bottom: 6px;
}

#updates:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(188, 149, 95, 0.08), rgba(188, 149, 95, 0) 42%);
  pointer-events: none;
}

#updates .section-header {
  margin-bottom: 26px;
}

#updates .update-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(175deg, rgba(54, 45, 35, 0.96), rgba(39, 33, 26, 0.94));
  border: 1px solid rgba(188, 149, 95, 0.36);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#updates .update-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
  border-color: rgba(188, 149, 95, 0.62);
}

#updates .update-card-media {
  cursor: pointer;
}

#updates .update-card-image {
  width: 100%;
  min-height: 190px;
  object-fit: cover;
}

#updates .update-card-image-placeholder {
  width: 100%;
  height: 52px;
  display: block;
}

#updates .update-card-title {
  background: linear-gradient(to top, rgba(7, 7, 7, 0.82), rgba(7, 7, 7, 0.45));
  color: #e6ded2;
  font-family: var(--font-default);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}

#updates .update-card-date {
  right: 10px;
  top: 10px;
  border-radius: 999px;
  padding: 6px 10px !important;
  background: rgba(12, 12, 12, 0.74) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f0ece6;
  font-size: 12px;
  letter-spacing: 0.25px;
}

#updates .update-card-content {
  padding: 14px 18px 18px !important;
  margin: 0 !important;
  color: #ded9d1;
  line-height: 1.65;
  font-size: 15px;
  flex: 1;
}

#updates .update-card-compact .update-card-content {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#updates .update-card-featured {
  background: linear-gradient(175deg, rgba(59, 49, 38, 0.98), rgba(43, 35, 26, 0.96));
}

#updates .update-card-featured .update-card-content {
  font-size: 15.5px;
  line-height: 1.7;
  color: #e2dcd3;
}

#updates .update-read-more {
  cursor: pointer;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

#updates .update-read-more:hover {
  color: #d7b381;
  text-decoration: underline;
}

#updates .update-ribbon-wrapper {
  left: -5px !important;
  right: auto !important;
  transform: rotate(270deg);
  top: -5px !important;
}

#updates .update-ribbon {
  background: var(--color-primary2) !important;
  font-size: 12px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

#updates .updates-show-more-btn {
  border: 1px solid rgba(188, 149, 95, 0.56);
  color: #f0ece7;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border-radius: 10px !important;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#updates .updates-show-more-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
  border-color: rgba(188, 149, 95, 0.85);
  color: #fff;
}

#updates .updates-show-more-btn.disabled {
  opacity: 0.7;
}

#updates .updates-show-more-wrap {
  margin-bottom: 42px;
}

#updates .updates-divider-wrap {
  color: #c9c9c9;
}

@media (min-width: 992px) {
  #updates .update-card-featured {
    display: grid;
    grid-template-columns: minmax(320px, 42%) 1fr;
    grid-template-rows: auto;
    align-items: stretch;
  }

  #updates .update-card-featured .update-card-media {
    height: 100%;
    min-height: 100%;
  }

  #updates .update-card-featured .update-card-image {
    min-height: 100%;
    height: 100%;
    max-height: 100%;
  }

  #updates .update-card-featured .update-card-content {
    padding: 18px 22px 18px !important;
  }
}

@media (max-width: 991px) {
  #updates .update-card-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  #updates .update-card-title {
    font-size: 12px;
    padding: 9px !important;
  }

  #updates .update-card-compact .update-card-content {
    -webkit-line-clamp: 8;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(48, 48, 48, 0.58), rgba(40, 40, 40, 0.76)), url("../img/home/home-header1.webp") center center;
  background-size: cover;
  padding: 56px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.call-to-action p {
  color: #ececec;
  margin-bottom: 18px;
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.6px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 6px;
  transition: 0.25s;
  border: 1px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

@media (max-width: 991px) {
  .call-to-action {
    padding: 44px 0;
  }

  .call-to-action h3 {
    font-size: 25px;
  }

  .call-to-action p {
    font-size: 15px;
    margin-bottom: 14px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-top: 80px;
}

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

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

.features .features-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #acacac;
}

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

.features .features-item ul li {
  padding-bottom: 10px;
}

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

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

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

/* cooler highlight panels for "Seamless Browser Experience" and "Choose Your Client" */
.features .features-item.features-highlight {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 16px 12px;
  background:
    radial-gradient(circle at 10% 12%, rgba(188, 149, 95, 0.17), transparent 36%),
    radial-gradient(circle at 90% 88%, rgba(92, 147, 212, 0.14), transparent 35%),
    linear-gradient(165deg, rgba(34, 34, 34, 0.7), rgba(26, 26, 26, 0.42));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.features .features-item.features-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(188, 149, 95, 0.85), rgba(132, 187, 241, 0.7), rgba(188, 149, 95, 0.85));
  pointer-events: none;
}

.features .features-item.features-highlight h3 {
  color: #efefef;
}

.features .features-item.features-highlight p {
  color: rgba(236, 236, 236, 0.92);
}

.features .features-item.features-highlight a {
  color: #f6cca0;
}

.features .features-item.features-highlight a:hover {
  color: #ffe4c0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--color-secondary);
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

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

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  color: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: 0.3s;
  border: 1px solid var(--color-primary);
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  border-top-color: var(--color-primary);
}

.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
  padding-top: 76px;
  background:
    radial-gradient(circle at 12% 0%, rgba(188, 149, 95, 0.08), transparent 35%),
    radial-gradient(circle at 90% 100%, rgba(128, 172, 226, 0.08), transparent 35%);
}

.faq .faq-subtitle {
  margin: 6px auto 0;
  max-width: 64ch;
  color: rgba(238, 238, 238, 0.8);
  font-size: 15px;
  line-height: 1.7;
}

.faq .faq-shell {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
  background: rgba(16, 16, 16, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.faq .accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 10px;
  background: rgba(34, 34, 34, 0.85);
  color: #d8d8d8;
  border-radius: 10px;
  overflow: hidden;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 14px 46px 14px 50px;
  font-weight: 700;
  border: 0;
  font-size: 17px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  color: #f2f2f2;
  border-radius: 10px;
  letter-spacing: 0.15px;
  transition: background 0.22s ease, color 0.22s ease;
}

.faq .accordion-button:focus {
  box-shadow: 0 0 0 0.14rem rgba(188, 149, 95, 0.26);
}

.faq .accordion-button:not(.collapsed) {
  color: #ffd7a2;
  border-bottom: 0;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(188, 149, 95, 0.16), rgba(188, 149, 95, 0.03));
}

.faq .accordion-button:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.faq .question-icon {
  position: absolute;
  top: 13px;
  left: 18px;
  font-size: 18px;
  color: #e7bc80;
  opacity: 0.95;
}

.faq .accordion-button:after {
  position: absolute;
  right: 16px;
  top: 14px;
  filter: invert(85%) sepia(8%) saturate(214%) hue-rotate(357deg) brightness(104%) contrast(90%);
}

.faq .accordion-body {
  padding: 4px 22px 18px 50px;
  border: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  color: rgba(239, 239, 239, 0.9);
  line-height: 1.72;
}

.faq .accordion-body a {
  color: #ffd7a2;
  font-weight: 700;
}

.faq .accordion-body a:hover {
  color: #ffe7c3;
}

@media (max-width: 768px) {
  .faq .faq-shell {
    padding: 12px;
  }

  .faq .accordion-button {
    font-size: 15px;
    padding: 12px 40px 12px 44px;
  }

  .faq .question-icon {
    left: 14px;
    top: 11px;
    font-size: 16px;
  }

  .faq .accordion-button:after {
    right: 12px;
    top: 12px;
  }

  .faq .accordion-body {
    padding: 2px 16px 14px 44px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: linear-gradient(rgba(54, 54, 54, 0.6), rgba(54, 54, 54, 0.8)), url("../img/osrs/bg/rsbg.jpg") center center;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

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

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  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: 0 auto 15px auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats-counter .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid rgba(14, 29, 52, 0.15);
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #6c757d;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: rgba(14, 29, 52, 0.5);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--color-primary);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Horizontal Pricing Section
--------------------------------------------------------------*/
.horizontal-pricing .pricing-item {
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  padding-bottom: 30px;
  background: #fff;
  height: 100%;
  position: relative;
}

.horizontal-pricing h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
  color: var(--color-secondary);
}

.horizontal-pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
  text-align: center;
}

.horizontal-pricing h4 sup {
  font-size: 28px;
}

.horizontal-pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

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

.horizontal-pricing ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.horizontal-pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.horizontal-pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na span {
  text-decoration: line-through;
}

.horizontal-pricing .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.horizontal-pricing .buy-btn:hover {
  background: #406aff;
  border-color: #406aff;
}

.horizontal-pricing .featured {
  background: var(--color-primary);
}

.horizontal-pricing .featured h3,
.horizontal-pricing .featured h4,
.horizontal-pricing .featured h4 span,
.horizontal-pricing .featured ul,
.horizontal-pricing .featured ul .na,
.horizontal-pricing .featured ul i,
.horizontal-pricing .featured ul .na i {
  color: #fff;
}

.horizontal-pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
  border-color: #fff;
}

.horizontal-pricing .featured .buy-btn:hover {
  background: #fff;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Get a Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: #f3f6fc;
  padding: 40px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

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

.get-a-quote .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-a-quote .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.get-a-quote .php-email-form input,
.get-a-quote .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-a-quote .php-email-form input:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-a-quote .php-email-form input {
  padding: 12px 15px;
}

.get-a-quote .php-email-form textarea {
  padding: 12px 15px;
}

.get-a-quote .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(14, 29, 52, 0.8);
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

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

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

.contact {
  background:
    radial-gradient(circle at 18% 12%, rgba(188, 149, 95, 0.09), transparent 36%),
    radial-gradient(circle at 86% 90%, rgba(118, 171, 227, 0.08), transparent 35%);
}

.contact .contact-subtitle {
  margin: 6px auto 0;
  max-width: 66ch;
  color: rgba(236, 236, 236, 0.82);
  font-size: 15px;
  line-height: 1.68;
}

.contact .contact-shell {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px 20px 18px;
  background: rgba(18, 18, 18, 0.58);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  position: relative;
}

.contact .contact-shell::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(188, 149, 95, 0.75), rgba(255, 255, 255, 0.2), rgba(188, 149, 95, 0.75));
}

.contact .contact-label {
  color: #ececec;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

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

.contact .contact-form-grid .row {
  margin-left: -8px;
  margin-right: -8px;
}

.contact .contact-form-grid .row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.contact .tan-bg {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact .tan-bg:focus {
  background-color: transparent;
  border-color: rgba(95, 74, 45, 0.62);
  box-shadow: 0 0 0 0.14rem rgba(188, 149, 95, 0.3);
}

.contact #message.tan-bg {
  min-height: 180px;
  resize: vertical;
}

.contact .contact-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.contact .cf-turnstile {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.contact .contact-send-btn {
  min-width: 150px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact .contact-send-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
}

.contact .error-message {
  margin-top: 10px !important;
}

@media (max-width: 768px) {
  .contact .contact-shell {
    padding: 14px 14px 12px;
  }

  .contact .contact-subtitle {
    font-size: 14px;
  }

  .contact #message.tan-bg {
    min-height: 140px;
  }

  .contact .contact-actions {
    align-items: stretch;
    gap: 10px;
  }

  .contact .contact-send-btn {
    width: 100%;
  }
}

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d3dff3;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #c2cbdf;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero.hero {
  width: 100%;
  min-height: 58vh;
  background-color: var(--color-secondary);
  background-image: linear-gradient(150deg, rgba(10, 10, 10, 0.78), rgba(34, 34, 34, 0.72)), url("../img/home/hero-bg2.jpg");
  background-size: cover;
  background-position: center 35%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 142px 0 84px 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom:3px solid #404040;
}

#hero.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(188, 149, 95, 0.20), rgba(188, 149, 95, 0) 40%);
  pointer-events: none;
  z-index: 0;
}

#hero.hero:after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 149, 95, 0.26), rgba(188, 149, 95, 0));
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

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

#hero .hero-content {
  padding: 26px 30px 26px 0;
  border-radius: 18px;
  backdrop-filter: blur(1.2px);
}

#hero .hero-banner {
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}

#header .top-banner-shimmer-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}

#header .top-banner-shimmer {
  display: block;
  position: relative;
  z-index: 1;
}

#header .top-banner-shimmer-overlay {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  filter: brightness(1.75) saturate(1.15);
  clip-path: polygon(-35% 0, -20% 0, -5% 100%, -20% 100%);
  animation: topBannerShimmer 3.8s ease-in-out infinite;
}

#header .top-banner-shimmer-wrap.is-ready .top-banner-shimmer-overlay {
  display: block;
}

@keyframes topBannerShimmer {
  0% {
    opacity: 0;
    clip-path: polygon(-35% 0, -20% 0, -5% 100%, -20% 100%);
  }
  8% {
    opacity: 0.72;
  }
  45% {
    opacity: 0.72;
    clip-path: polygon(108% 0, 123% 0, 138% 100%, 123% 100%);
  }
  100% {
    opacity: 0;
    clip-path: polygon(108% 0, 123% 0, 138% 100%, 123% 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  #header .top-banner-shimmer-overlay {
    animation: none;
  }
}

#hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 575px) {
  #hero h2 {
    font-size: 30px;
  }
}

#hero .hero-title {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  letter-spacing: 0.2px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 14px;
}

#hero .hero-description {
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 22px;
}

#hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

#hero form {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

#hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

#hero form .form-control:hover,
#hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

#hero form .btn-primary {
  background-color: var(--color-primary);
  padding: 15px 30px;
}

#hero form .btn-primary:hover {
  background-color: #2756ff;
}

#hero .stats-item {
  padding: 30px;
  width: 100%;
}

#hero .hero-stat-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  padding: 24px 20px;
}

#hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

#hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
}

#hero .hero-cta-wrap {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(175deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.38));
  padding-top: 20px;
  padding-bottom: 20px;
}

#hero .hero-btn {
  border-radius: 10px;
  letter-spacing: 0.35px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#hero .hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

#hero .hero-btn-secondary:hover {
  border-color: #9a9a9a !important;
}

#hero .hero-btn-primary:hover {
  border-color: #d1ab77 !important;
}

@media (max-width: 991px) {
  #hero.hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 24px;
    background-position: center top;
  }

  #hero .hero-content {
    padding: 18px 0 0;
    text-align: center;
  }

  #hero .hero-description {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }

  #hero .row.gy-4 {
    margin-top: 2px;
  }

  #hero .row.gy-4 > [class*="col-"] {
    padding-left: 18px;
    padding-right: 18px;
  }

  #hero .hero-stat-card {
    margin: 4px 0;
    padding: 20px 14px;
  }

  #hero .hero-cta-wrap {
    margin: 8px 0 4px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  color: #f3f3f3;
  padding: 58px 0 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(188, 149, 95, 0.16), transparent 45%),
    radial-gradient(circle at 86% 82%, rgba(102, 151, 207, 0.12), transparent 44%),
    linear-gradient(180deg, #1f1f1f, #171717);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 16px;
}

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

.footer .footer-info .logo span {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #f7f7f7;
  font-family: var(--font-primary);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
  color: rgba(245, 245, 245, 0.87);
  line-height: 1.72;
  max-width: 58ch;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.footer h4 {
  font-size: 15px;
  font-weight: bold;
  position: relative;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #f8f8f8;
}

.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;
  color: rgba(13, 66, 255, 0.8);
  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: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
  color: rgba(245, 245, 245, 0.9);
}

.footer .footer-contact a {
  color: #f7d9a6;
  font-weight: 700;
}

.footer .footer-contact a:hover {
  color: #ffe6bd;
}

.footer .footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.footer .copyright {
  text-align: center;
  color: rgba(245, 245, 245, 0.88);
}

.footer .footer-meta {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 18px;
}

.footer .footer-meta > div {
  margin-bottom: 3px;
}

.footer .footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
  margin-bottom: 0;
  line-height: 1.2;
}

.footer .footer-legal-links a {
  color: #f5f5f5 !important;
  text-decoration: none;
}

.footer .footer-legal-links a:hover {
  color: #ffe1ac !important;
}

.footer .footer-sep {
  opacity: 0.7;
}

.footer .footer-rule {
  border: 0;
  height: 1px;
  display: block;
  margin: 2px auto 6px !important;
  padding: 0;
  max-width: 560px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.06));
}

.footer .footer-lastmod-label {
  font-weight: 700;
  color: #ffe6bc;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

@media (max-width: 991px) {
  .footer {
    padding: 44px 0 20px;
  }

  .footer .footer-info p {
    max-width: none;
  }

  .footer .footer-meta {
    padding: 14px 12px;
  }
}
