/*--------------------------------------------------------------
# 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: "Manrope",  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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #5b5b5b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #00aeef; /* 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: #ffffff; /* 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: #ffffff; /* 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: #828c91;  /* The default color of the main navmenu links */
  --nav-hover-color: #00aeef; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #00aeef; /* 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: #f6f8fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  font-weight: bold;
  padding: 8px 15px;
  margin: 0 0 0 30px;
  border-radius: 5px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-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);
  }

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

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

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

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

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

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

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

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

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

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #252525;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #00aeef;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

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

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

.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: 5px;
  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;
}

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero 9 Section
--------------------------------------------------------------*/
.hero-9 {
  --background-color: #00aeef;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #fad126;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

.hero-9 .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-9:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero-9 h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

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

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

.hero-9 .btn-get-started {
  color: var(--background-color);
  background: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 15px 8px 15px;
  border-radius: 5px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.hero-9 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 1%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-9 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--heading-color);
  font-weight: 600;
}

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

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

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

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

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

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

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

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

.hero-9 .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero-9 .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero-9 .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

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

/*--------------------------------------------------------------
# Key Features Section
--------------------------------------------------------------*/
.key-features {
  --accent-color: #00aeef;
  padding-top: 60px;
  padding-bottom: 60px;
}

.key-features .feature-box {
  background-color: var(--surface-color);
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.key-features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.key-features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.key-features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Perio Chart Section
--------------------------------------------------------------*/
.perio-chart {
  --accent-color: #00aeef;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.perio-chart::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: 60%;
  height: 70%;
  background: #ee5f12;
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.05;
  animation: blob-move1 15s ease-in-out infinite alternate;
}

.perio-chart::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: #12ee79;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.05;
  animation: blob-move2 20s ease-in-out infinite alternate-reverse;
}

.perio-chart .bg-element {
  position: absolute;
  width: 70%;
  height: 80%;
  top: 20%;
  right: 10%;
  background: color-mix(in srgb, #3312ee, #ee1296, 50%);
  border-radius: 30% 70% 50% 50%/50% 30% 70% 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
  animation: blob-move3 18s ease-in-out infinite alternate;
}

@keyframes blob-move1 {
  0% {
    border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    border-radius: 50% 50% 30% 70%/60% 40% 60% 40%;
    transform: translate(5%, 5%) rotate(10deg) scale(1.1);
  }
}

@keyframes blob-move2 {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    border-radius: 40% 60% 70% 30%/50% 60% 40% 60%;
    transform: translate(-5%, -5%) rotate(-10deg) scale(1.1);
  }
}

@keyframes blob-move3 {
  0% {
    border-radius: 30% 70% 50% 50%/50% 30% 70% 50%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    border-radius: 60% 40% 40% 60%/40% 60% 40% 60%;
    transform: translate(-3%, 3%) rotate(-5deg) scale(1.05);
  }
}

.perio-chart .hero-content {
  position: relative;
  z-index: 2;
}

.perio-chart .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .perio-chart .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .perio-chart .hero-content h1 {
    font-size: 2rem;
  }
}

.perio-chart .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.perio-chart .hero-content .hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.perio-chart .hero-content .hero-cta .btn-get-started {
  padding: 12px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.perio-chart .hero-content .hero-cta .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.perio-chart .hero-content .hero-cta .btn-watch-video {
  display: inline-flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s;
}

.perio-chart .hero-content .hero-cta .btn-watch-video i {
  font-size: 2rem;
  margin-right: 8px;
  color: var(--accent-color);
  transition: all 0.3s;
}

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

.perio-chart .hero-content .hero-cta .btn-watch-video:hover i {
  transform: scale(1.1);
}

.perio-chart .hero-content .hero-stats {
  display: flex;
  gap: 2rem;
}

.perio-chart .hero-content .hero-stats .stat-item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--accent-color);
}

.perio-chart .hero-content .hero-stats .stat-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.perio-chart .hero-image {
  position: relative;
  z-index: 2;
}

.perio-chart .hero-image .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.perio-chart .hero-image .image-wrapper .main-image {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.perio-chart .hero-image .image-wrapper .main-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.perio-chart .hero-image .image-wrapper .floating-element {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.perio-chart .hero-image .image-wrapper .floating-element i {
  font-size: 1.2rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.perio-chart .hero-image .image-wrapper .floating-element span {
  font-weight: 600;
  font-size: 0.9rem;
}

.perio-chart .hero-image .image-wrapper .floating-element.floating-element-1 {
  top: 15%;
  left: -5%;
  animation: float 6s ease-in-out infinite;
}

.perio-chart .hero-image .image-wrapper .floating-element.floating-element-2 {
  top: 45%;
  right: -5%;
  animation: float 7s ease-in-out infinite 1s;
}

.perio-chart .hero-image .image-wrapper .floating-element.floating-element-3 {
  bottom: 10%;
  left: 10%;
  animation: float 5s ease-in-out infinite 0.5s;
}

.perio-chart .hero-image .image-wrapper .blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 1;
}

.perio-chart .hero-image .image-wrapper .blur-circle.blur-circle-1 {
  width: 250px;
  height: 250px;
  background-color: #ee1266;
  opacity: 0.05;
  top: -20px;
  right: 20%;
  animation: pulse 2s infinite alternate;
}

.perio-chart .hero-image .image-wrapper .blur-circle.blur-circle-2 {
  width: 180px;
  height: 180px;
  background-color: #6612ee;
  opacity: 0.05;
  bottom: 10%;
  left: 0;
  animation: pulse 10s infinite alternate-reverse;
}

.perio-chart .hero-image .image-wrapper .blur-circle.blur-circle-3 {
  width: 120px;
  height: 120px;
  background-color: color-mix(in srgb, #ee1266, #6612ee, 50%);
  opacity: 0.1;
  top: 30%;
  right: -10%;
  animation: pulse 7s infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.05;
    transform: scale(1);
  }

  100% {
    opacity: 0.2;
    transform: scale(1.2);
  }
}

.perio-chart .trusted-by {
  margin-top: 4rem;
  text-align: center;
}

.perio-chart .trusted-by p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.perio-chart .trusted-by .clients-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.perio-chart .trusted-by .clients-wrapper .client-logo {
  height: 274px;
  opacity: 0.6;
  transition: all 0.3s;
}

.perio-chart .trusted-by .clients-wrapper .client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .perio-chart {
    padding: 80px 0 60px;
  }

  .perio-chart .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .perio-chart .hero-content .hero-cta {
    justify-content: center;
  }

  .perio-chart .hero-content .hero-stats {
    justify-content: center;
  }

  .perio-chart .hero-image .image-wrapper .floating-element {
    display: none;
  }
}

/*--------------------------------------------------------------
# Headset Section
--------------------------------------------------------------*/
.headset .feature-item .feature-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.headset .feature-item .feature-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.headset .feature-item .feature-icon.icon-red {
  background-color: color-mix(in srgb, #df4141, transparent 92%);
}

.headset .feature-item .feature-icon.icon-red i {
  color: #df4141;
}

.headset .feature-item .feature-icon.icon-green {
  background-color: color-mix(in srgb, #2ecc71, transparent 92%);
}

.headset .feature-item .feature-icon.icon-green i {
  color: #2ecc71;
}

.headset .feature-item .feature-icon.icon-blue {
  background-color: color-mix(in srgb, #3498db, transparent 92%);
}

.headset .feature-item .feature-icon.icon-blue i {
  color: #3498db;
}

.headset .feature-item .feature-icon.icon-orange {
  background-color: color-mix(in srgb, #f1840f, transparent 92%);
}

.headset .feature-item .feature-icon.icon-orange i {
  color: #f1840f;
}

.headset .feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.headset .feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.headset .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.headset .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features {
  --accent-color: #00aeef;
}

.more-features .features-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.more-features .features-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.more-features .features-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

.more-features .features-image:hover img {
  transform: scale(1.05);
}

.more-features .features-image .floating-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.more-features .features-image .floating-card .card-content {
  display: flex;
  align-items: center;
}

.more-features .features-image .floating-card .card-content i {
  font-size: 32px;
  color: var(--accent-color);
  margin-right: 15px;
}

.more-features .features-image .floating-card .card-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.more-features .features-image .floating-card .card-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 768px) {
  .more-features .features-image img {
    height: 400px;
  }

  .more-features .features-image .floating-card {
    bottom: 20px;
    right: 20px;
    padding: 15px;
  }
}

.more-features .features-content {
  padding-left: 40px;
}

@media (max-width: 992px) {
  .more-features .features-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

.more-features .features-content h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.more-features .features-content .lead {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.more-features .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.more-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.more-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.more-features .feature-item:hover .feature-icon {
  background: var(--accent-color);
}

.more-features .feature-item:hover .feature-icon i {
  color: var(--contrast-color);
}

.more-features .feature-item .feature-icon {
  width: 30px;
  height: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.more-features .feature-item .feature-icon i {
  font-size: 18px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.more-features .feature-item .feature-content {
  flex: 1;
}

.more-features .feature-item .feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.more-features .feature-item .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 768px) {
  .more-features .features-content h3 {
    font-size: 28px;
  }

  .more-features .features-content .lead {
    font-size: 16px;
  }

  .more-features .feature-item {
    padding: 20px;
  }

  .more-features .feature-item .feature-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }

  .more-features .feature-item .feature-icon i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  --accent-color: #00aeef;
}

.faq .faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq .faq-sidebar .faq-image {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
}

.faq .faq-sidebar .faq-image img {
  transition: transform 0.5s ease;
}

.faq .faq-sidebar .faq-image img:hover {
  transform: scale(1.04);
}

.faq .faq-sidebar .contact-box {
  background-color: color-mix(in srgb, var(--background-color), transparent 90%);
  border-bottom: 1px solid #00aeef;
  padding: 20px;
}

.faq .faq-sidebar .contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq .faq-sidebar .contact-box h3 i {
  font-size: 24px;
  color: var(--accent-color);
}

.faq .faq-sidebar .contact-box p {
  margin-bottom: 5px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.faq .faq-sidebar .contact-box .btn-contact {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-sidebar .contact-box .btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills {
  gap: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 15px;
}

.faq .faq-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
}

.faq .faq-tabs .tab-content {
  padding-top: 25px;
}

.faq .faq-item {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.faq .faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  padding-right: 35px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

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

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq .faq-item.faq-active {
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

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

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .faq .faq-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .faq .faq-sidebar .contact-box {
    text-align: center;
  }

  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 30%;
  }

  .faq .faq-tabs .nav-pills .nav-link {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 100%;
  }

  .faq .faq-item {
    padding: 20px;
  }

  .faq .faq-item h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
# Hero Testimonials Section
--------------------------------------------------------------*/
.hero-testimonials {
  --accent-color: #00aeef;
  padding-top: 80px;
  position: relative;
  padding-bottom: 79px;
}

.hero-testimonials h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(120deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-testimonials p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-testimonials .cta-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-testimonials .cta-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.hero-testimonials .cta-buttons .btn-primary i {
  transition: transform 0.3s ease;
}

.hero-testimonials .cta-buttons .btn-primary:hover i {
  transform: translateX(4px);
}

.hero-testimonials .cta-buttons .btn-watch-video {
  display: inline-flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s;
}

.hero-testimonials .cta-buttons .btn-watch-video i {
  font-size: 2rem;
  margin-right: 8px;
  color: var(--accent-color);
  transition: all 0.3s;
}

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

.hero-testimonials .cta-buttons .btn-watch-video:hover i {
  transform: scale(1.1);
}

.hero-testimonials .trusted-by p {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-testimonials .trusted-by .logos img {
  height: 24px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hero-testimonials .trusted-by .logos img:hover {
  opacity: 1;
}

.hero-testimonials .hero-image {
  position: relative;
  z-index: 1;
}

.hero-testimonials .hero-image::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%), transparent);
  z-index: -1;
  filter: blur(60px);
}

.hero-testimonials .hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--heading-color), transparent 90%);
}

@media (max-width: 991.98px) {
  .hero-testimonials {
    text-align: center;
    padding: 40px 0;
  }

  .hero-testimonials .hero-image {
    margin-bottom: 3rem;
  }

  .hero-testimonials .hero-image::before {
    top: -10%;
    right: -10%;
  }
}

/*--------------------------------------------------------------
# Testimonials 3 Section
--------------------------------------------------------------*/
.testimonials-3 {
  /* Extra Video Button */
  /* Responsive Styles */
}

.testimonials-3 .testimonials-wrapper {
  padding: 20px 0;
}

.testimonials-3 .testimonial-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonials-3 .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials-3 .testimonial-card:hover .quote-mark {
  color: var(--accent-color);
}

.testimonials-3 .quote-mark {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 2.5rem;
  line-height: 1;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: color 0.3s ease;
  opacity: 0.8;
}

.testimonials-3 .quote-mark i {
  transform: scaleX(-1);
}

.testimonials-3 .testimonial-content {
  margin-bottom: 25px;
  padding-top: 10px;
}

.testimonials-3 .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-style: italic;
  margin-bottom: 0;
}

.testimonials-3 .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials-3 .testimonial-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  margin-right: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonials-3 .testimonial-author .author-info h4 {
  font-size: .85rem;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--heading-color);
}

.testimonials-3 .testimonial-author .author-info span {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: block;
}

.testimonials-3 .action-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .testimonials-3 .action-buttons {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .testimonials-3 .action-buttons {
    justify-content: center;
  }
}

@media (min-width: 993px) {
  .testimonials-3 .action-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 1199px) {
  .testimonials-3 .testimonial-card {
    padding: 35px 25px 25px;
  }

  .testimonials-3 .quote-mark {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .testimonials-3 .testimonial-card {
    margin-bottom: 20px;
  }

  .testimonials-3 .testimonial-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .testimonials-3 .testimonial-card {
    padding: 30px 20px 20px;
  }

  .testimonials-3 .quote-mark {
    font-size: 2rem;
    top: 15px;
    left: 20px;
  }

  .testimonials-3 .testimonial-author img {
    width: 40px;
    height: 40px;
  }

  .testimonials-3 .testimonial-author .author-info h4 {
    font-size: .75rem;
  }

  .testimonials-3 .testimonial-author .author-info span {
    font-size: 0.7rem;
  }
}

@media (max-width: 575px) {
  .testimonials-3 .testimonial-card {
    padding: 25px 18px 18px;
  }

  .testimonials-3 .quote-mark {
    font-size: 1.8rem;
  }

  .testimonials-3 .testimonial-content p {
    font-size: 0.9rem;
  }

  .testimonials-3 .testimonial-author img {
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }
}

/*--------------------------------------------------------------
# Video Testimonials Section
--------------------------------------------------------------*/
.video-testimonials .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
  height: 100%;
}

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

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

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

.video-testimonials .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.video-testimonials .card a:hover {
  color: var(--accent-color);
}

.video-testimonials .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
}

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

/*--------------------------------------------------------------
# Waverunner Section
--------------------------------------------------------------*/
.waverunner {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color) 90%, white 10%) 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;

  .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    min-height: 70vh;
    padding-top: 60px;
  }

  h2 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
  }

  p {
    max-width: 80%;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
  }

  .carousel-control-prev, .carousel-control-next {
    width: 10%;
  }

  .carousel-control-next-icon, .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
  }

  .btn-get-started {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    animation-delay: 0.8s;
    color: var(--default-color);
    border: 2px solid var(--accent-color);
    &:hover {
      background: var(--accent-color);
      color: var(--contrast-color);
      text-decoration: none;
    }
  }

  
  @media (min-width: 1024px) {
    p {
      max-width: 60%;
    }
    .carousel-control-prev, .carousel-control-next {
      width: 5%;
    }
  }

  @media (max-width: 768px) {

    .carousel-container {
      min-height: 90vh;
    }

    h2 {
      font-size: 28px;
    }
  }

  .hero-waves  {
    display: block;
    width: 100%;
    height: 60px;
    position: relative;
  }
  
  .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: var(--accent-color);
    opacity: 0.6;
  }
  .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: var(--accent-color);
    opacity: 0.4;
  }
  
  .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: var(--accent-color);
  }
  
  @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%);
    }
  }

}

/*--------------------------------------------------------------
# Coffee With Kat Section
--------------------------------------------------------------*/
.coffee-with-kat {
  --background-color: rgba(0, 174, 239, 0.7);
  --accent-color: #00aeef;
  padding-top: 100px;
  position: relative;
  background: linear-gradient(170deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color), var(--accent-color) 5%) 100%);
  padding-bottom: 100px;
}

.coffee-with-kat .cta-wrapper {
  position: relative;
  border-radius: 15px;
  background-color: var(--surface-color);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--accent-color), transparent 92%);
  overflow: hidden;
}

.coffee-with-kat .cta-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.coffee-with-kat .cta-shapes .shape {
  position: absolute;
  border-radius: 50%;
}

.coffee-with-kat .cta-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  top: -150px;
  right: -100px;
}

.coffee-with-kat .cta-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  bottom: -100px;
  left: 20%;
}

.coffee-with-kat .cta-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--accent-color), transparent 92%) 100%);
  top: 30%;
  left: -75px;
}

.coffee-with-kat .cta-content {
  position: relative;
  z-index: 2;
}

.coffee-with-kat .cta-content .badge-custom {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.coffee-with-kat .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.coffee-with-kat .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.05rem;
  line-height: 1.6;
}

.coffee-with-kat .benefits-row {
  margin-top: 2rem;
}

.coffee-with-kat .benefits-row .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.coffee-with-kat .benefits-row .benefit-item .icon-box {
  width: 25px;
  height: 25px;
  min-width: 25px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-right: 1rem;
  font-size: 1rem;
}

.coffee-with-kat .benefits-row .benefit-item .benefit-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.coffee-with-kat .benefits-row .benefit-item .benefit-content p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.5;
}

.coffee-with-kat .action-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.coffee-with-kat .action-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: none;
}

.coffee-with-kat .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.coffee-with-kat .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.coffee-with-kat .action-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  color: var(--accent-color);
}

.coffee-with-kat .action-buttons .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.coffee-with-kat .action-buttons .guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.coffee-with-kat .action-buttons .guarantee-badge i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.coffee-with-kat .cta-image-container {
  position: relative;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  z-index: 2;
}

.coffee-with-kat .cta-image-container .main-image {
  position: relative;
  z-index: 2;
  max-height: 400px;
  object-fit: contain;
}

.coffee-with-kat .cta-image-container .floating-element {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.coffee-with-kat .cta-image-container .floating-element i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.coffee-with-kat .cta-image-container .floating-element span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.coffee-with-kat .cta-image-container .floating-element.element-1 {
  top: 5%;
  left: 0;
  animation: float1 4s ease-in-out infinite;
}

.coffee-with-kat .cta-image-container .floating-element.element-2 {
  bottom: 5%;
  right: 0;
  animation: float2 5s ease-in-out infinite;
}

.coffee-with-kat .cta-image-container .pattern-dots {
  position: absolute;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(color-mix(in srgb, var(--accent-color), transparent 40%) 2px, transparent 2px);
  background-size: 15px 15px;
  bottom: 10%;
  left: 10%;
  z-index: 1;
  border-radius: 20px;
  opacity: 0.6;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 991.98px) {
  .coffee-with-kat {
    padding: 70px 0;
  }

  .coffee-with-kat .row {
    flex-direction: column-reverse; 
  }

   
  .coffee-with-kat .cta-image-container {
    padding: 2rem;
    min-height: 350px;
  }

  .coffee-with-kat .cta-image-container .floating-element.element-1 {
    top: 1%;
    left: 10%;
  }

  .coffee-with-kat .cta-image-container .floating-element.element-2 {
    bottom: 1%;
    right: 10%;
  }

  .coffee-with-kat .cta-content {
    padding: 2rem !important;
  }

  .coffee-with-kat .cta-content h2 {
    font-size: 2rem;
  }

  .coffee-with-kat .action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .coffee-with-kat .action-buttons .btn {
    width: 100%;
  }

  .coffee-with-kat .action-buttons .guarantee-badge {
    margin-left: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .coffee-with-kat {
    padding: 50px 0;
  }

  .coffee-with-kat .cta-content {
    padding: 1.5rem !important;
  }

  .coffee-with-kat .cta-content h2 {
    font-size: 1.75rem;
  }

  .coffee-with-kat .benefits-row .col-md-6 {
    margin-bottom: 1rem;
  }

  .coffee-with-kat .cta-image-container {
    min-height: 300px;
  }

  .coffee-with-kat .cta-image-container .floating-element {
    padding: 0.5rem 0.75rem;
  }

  .coffee-with-kat .cta-image-container .floating-element span {
    font-size: 0.8rem;
  }

  .coffee-with-kat .shape {
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

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

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}