@charset "UTF-8";

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

.rubik-dirt-regular {
  font-family: "Rubik Dirt", system-ui;
  font-weight: 400;
  font-style: normal;
}

/* 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: #001b40; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #001b40; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #007587; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #fbe337; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #007587; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #007587; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #fbe337; /* 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: #f2f2f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #001b40;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #fbe337;
  --surface-color: #007587;
  --contrast-color: #ffffff;
}

.yellow2-background {
  --background-color: #fbe337;
  --default-color: #ffffff;
  --heading-color: #fbe337;
  --accent-color: #fbe337;
  --surface-color: #001b40;
  --contrast-color: #007587;
}

.teal-background {
  --background-color: #007587;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #fbe337;
  --surface-color: #ffffff;
  --contrast-color: #001b40;
}

.teal2-background {
  --background-color: #007587;
  --default-color: #001b40;
  --heading-color: #001b40;
  --accent-color: #007587;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

.yellow-background {
  --background-color: #fbe337;
  --default-color: #001b40;
  --heading-color: #001b40;
  --accent-color: #001b40;
  --surface-color: #001b40;
  --contrast-color: #007587;
}

.navy-background {
  --background-color: #001b40;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #fbe337;
  --surface-color: #007587;
  --contrast-color: #001b40;
}

.navy2-background {
  --background-color: #001b40;
  --default-color: #001b40;
  --heading-color: #007587;
  --accent-color: #fbe337;
  --surface-color: #ffffff;
  --contrast-color: #001b40;
}

.orange-background {
  --background-color: #ff8400;
  --default-color: #001b40;
  --heading-color: #001b40;
  --accent-color: #001b40;
  --surface-color: #001b40;
  --contrast-color: #007587;
}

.orange2-background {
  --background-color: #ff8400;
  --default-color: #001b40;
  --heading-color: #001b40;
  --accent-color: #ff8400;
  --surface-color: #ffffff;
  --contrast-color: #fbe337;
}

.miscyellow-background {
  --background-color: #fbe337;
  --default-color: #001b40;
  --heading-color: #001b40;
  --accent-color: #007587;
  --surface-color: #ffffff;
  --contrast-color: #fbe337;
}

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

/*-------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

btn-teal {
  color: #fff;
  background-color: #007587;
  border-color: #007587;
}

.btn-teal:hover {
  color: #fff;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: #007587;
	
}

btn-navy {
  color: #fff;
  background-color: #001b40;
  border-color: #001b40;
}

.btn-navy:hover {
  color: #fff;
  background-color: #007587;
  border-color: #001b40;
}

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

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

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

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

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

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

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

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

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

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --heading-color: #ffffff;
  --accent-color: #fbe337;
  --surface-color: #ffffff;
  --contrast-color: #001b40;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn: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);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #007587;
  --accent-color: #fbe337;
  --contrast-color: #007587;
  --nav-color: #ffffff;
  --nav-hover-color: #fbe337;
  --nav-mobile-background-color: #001b40;
  --nav-dropdown-background-color: #005a68;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #fbe337;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

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

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

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

/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    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 {
  --default-color: #ffffff;
  --heading-color: #fbe337;
  --accent-color: #fbe337;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: #ff8400;
  font-size: 14px;
  position: relative;
}

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

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

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

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

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

.footer .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 30%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

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

.footer .btn-primary {
  background-color: #fbe337;
  color: #007587;
  border: 2px solid var(--accent-color);
}

.footer .btn-primary:hover {
  color: #007587;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	
}

/*--------------------------------------------------------------
# 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: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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 50%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --background-color: #001b40;
  --default-color: #ffffff;
  --heading-color: #fbe337;
  --accent-color: #ffffff;
  --surface-color: #007587;
  --contrast-color: #001b40;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

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

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

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 7 Section
--------------------------------------------------------------*/
.hero-7 {
  --background-color: #001b40;
  --heading-color: #fbe337;
  --accent-color: #007587;
  --surface-color: #001b40;
  --contrast-color: #ffffff;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-7 .hero-container {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-7 .hero-container .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-7 .hero-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 30%) 0%, color-mix(in srgb, var(--background-color), transparent 60%) 100%);
  z-index: 2;
}

.hero-7 .hero-container .container {
  z-index: 3;
}

.hero-7 .hero-container .hero-content {
  padding-right: 30px;
}

.hero-7 .hero-container .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

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

@media (max-width: 576px) {
  .hero-7 .hero-container .hero-content h1 {
    font-size: 2rem;
    text-align: center;
  }
}

.hero-7 .hero-container .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

@media (max-width: 576px) {
  .hero-7 .hero-container .hero-content p {
    font-size: 1.1rem;
    text-align: center;
  }
}

.hero-7 .hero-container .hero-content .cta-buttons {
  display: flex;
  gap: 15px;
}

@media (max-width: 576px) {
  .hero-7 .hero-container .hero-content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.hero-7 .hero-container .hero-content .cta-buttons a {
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

@media (max-width: 576px) {
  .hero-7 .hero-container .hero-content .cta-buttons a {
    width: 100%;
    max-width: 240px;
  }
}

.hero-7 .hero-container .hero-content .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero-7 .hero-container .hero-content .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-7 .hero-container .hero-content .cta-buttons .btn-secondary {
  background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
  color: var(--default-color);
  border: 2px solid var(--surface-color);
}

.hero-7 .hero-container .hero-content .cta-buttons .btn-secondary:hover {
  background-color: var(--surface-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .hero-7 .hero-container .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.hero-7 .hero-container .stats-card {
  background-color: color-mix(in srgb, var(--surface-color), transparent 95%);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-7 .hero-container .stats-card .stats-header {
  text-align: center;
  margin-bottom: 25px;
}

.hero-7 .hero-container .stats-card .stats-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-7 .hero-container .stats-card .stats-header .decoration-line {
  height: 3px;
  width: 70px;
  background-color: var(--accent-color);
  margin: 0 auto;
}

.hero-7 .hero-container .stats-card .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.hero-7 .hero-container .stats-card .stats-grid .stat-item {
  display: flex;
  align-items: center;
}

.hero-7 .hero-container .stats-card .stats-grid .stat-item .stat-icon {
  font-size: 1.8rem;
  height: 55px;
  width: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  margin-right: 12px;
  flex-shrink: 0;
}

.hero-7 .hero-container .stats-card .stats-grid .stat-item .stat-content h4 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.hero-7 .hero-container .stats-card .stats-grid .stat-item .stat-content p {
  opacity: 0.8;
  margin: 5px 0 0 0;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .hero-7 .hero-container .stats-card .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .hero-7 .hero-container {
    text-align: center;
  }
}

.hero-7 .event-ticker {
  background-color: var(--accent-color);
  padding: 25px 0;
  color: var(--contrast-color);
}

.hero-7 .event-ticker .ticker-item {
  display: flex;
  align-items: center;
}

.hero-7 .event-ticker .ticker-item .date {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 10px;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.hero-7 .event-ticker .ticker-item .title {
  margin-right: 15px;
  font-size: 0.95rem;
}

.hero-7 .event-ticker .ticker-item .btn-register {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.hero-7 .event-ticker .ticker-item .btn-register:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Hero 8 Section
--------------------------------------------------------------*/
.hero-8 {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .hero-8 {
    padding: 100px 0 60px;
  }
}

.hero-8 .content-area {
  position: relative;
  z-index: 3;
}

@media (max-width: 992px) {
  .hero-8 .content-area {
    margin-bottom: 3rem;
    text-align: center;
  }
}

.hero-8 .hero-heading {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .hero-8 .hero-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .hero-8 .hero-heading {
    font-size: 2.2rem;
  }
}

.hero-8 .hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 992px) {
  .hero-8 .hero-description {
    margin-bottom: 2rem;
  }
}

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

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

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

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

.hero-8 .primary-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}

.hero-8 .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .hero-8 .primary-btn {
    width: 100%;
    text-align: center;
  }
}

.hero-8 .video-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.hero-8 .video-link:hover {
  color: var(--accent-color);
}

.hero-8 .video-link:hover .play-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.hero-8 .play-text {
  font-weight: 500;
}

.hero-8 .play-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.hero-8 .image-section {
  position: relative;
}

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

.hero-8 .pattern-overlay {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-color) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: -1;
}

@media (max-width: 768px) {
  .hero-8 .pattern-overlay {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -20px;
  }
}

.hero-8 .main-hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero-8 .stats-badge {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  max-width: 200px;
}

@media (max-width: 768px) {
  .hero-8 .stats-badge {
    position: relative;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: 0;
    width: fit-content;
  }
}

.hero-8 .stats-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-8 .stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.hero-8 .stats-text {
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--default-color);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Hero 9 Section
--------------------------------------------------------------*/
.hero-9 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-9 .hero-content {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

.hero-9 .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-9 .hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-9 .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  z-index: 0;
}

.hero-9 .hero-text {
  text-align: center;
  padding: 60px 0;
}

.hero-9 .hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-9 .hero-text h1 {
    font-size: 2.5rem;
  }
}

.hero-9 .hero-text .hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-9 .hero-text .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

.hero-9 .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-9 .hero-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid var(--accent-color);
}

.hero-9 .hero-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-9 .hero-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-9 .hero-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
}

.hero-9 .hero-buttons .btn.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .hero-9 .hero-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.hero-9 .hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  backdrop-filter: blur(10px);
  padding: 30px 0;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.hero-9 .hero-info .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-9 .hero-info .info-item .icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-9 .hero-info .info-item .icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.hero-9 .hero-info .info-item .content h4 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-9 .hero-info .info-item .content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-9 .hero-info .info-item {
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-9 .hero-info .info-item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero-9 .hero-info {
    position: relative;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero-9 {
    min-height: auto;
  }

  .hero-9 .hero-content {
    min-height: 100vh;
  }

  .hero-9 .hero-text {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Destination Details Section
--------------------------------------------------------------*/
.destination-details .destination-hero {
  margin-bottom: 80px;
}

.destination-details .destination-hero .hero-image {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .destination-details .destination-hero .hero-image {
    height: 350px;
    border-radius: 15px;
  }
}

.destination-details .destination-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-details .destination-hero .hero-image .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.destination-details .destination-hero .hero-image .hero-content {
  text-align: center;
  color: var(--contrast-color);
}

.destination-details .destination-hero .hero-image .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .destination-details .destination-hero .hero-image .hero-content h1 {
    font-size: 2.5rem;
  }
}

.destination-details .destination-hero .hero-image .hero-content .hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

.destination-details .destination-overview {
  margin-bottom: 80px;
  text-align: center;
}

.destination-details .destination-overview h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.destination-details .destination-overview p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.destination-details .attractions-section {
  margin-bottom: 80px;
}

.destination-details .attractions-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.destination-details .attractions-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.destination-details .attractions-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.destination-details .attractions-section .attraction-item {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
  height: 100%;
}

.destination-details .attractions-section .attraction-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.destination-details .attractions-section .attraction-item .attraction-image {
  height: 200px;
  overflow: hidden;
}

.destination-details .attractions-section .attraction-item .attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.destination-details .attractions-section .attraction-item .attraction-content {
  padding: 25px;
}

.destination-details .attractions-section .attraction-item .attraction-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.destination-details .attractions-section .attraction-item .attraction-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
}

.destination-details .attractions-section .attraction-item:hover .attraction-image img {
  transform: scale(1.1);
}

.destination-details .tours-section {
  margin-bottom: 80px;
}

.destination-details .tours-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.destination-details .tours-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.destination-details .tours-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.destination-details .tours-section .tour-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
  height: 100%;
}

.destination-details .tours-section .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.destination-details .tours-section .tour-card .tour-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.destination-details .tours-section .tour-card .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.destination-details .tours-section .tour-card .tour-image .tour-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
}

.destination-details .tours-section .tour-card .tour-content {
  padding: 25px;
}

.destination-details .tours-section .tour-card .tour-content .tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.destination-details .tours-section .tour-card .tour-content .tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.destination-details .tours-section .tour-card .tour-content .tour-meta span i {
  color: var(--accent-color);
}

.destination-details .tours-section .tour-card .tour-content .tour-meta span.rating {
  color: #ffc107;
}

.destination-details .tours-section .tour-card .tour-content .tour-meta span.rating i {
  color: #ffc107;
}

.destination-details .tours-section .tour-card .tour-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.destination-details .tours-section .tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.destination-details .tours-section .tour-card .tour-content .btn-tour {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.destination-details .tours-section .tour-card .tour-content .btn-tour:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.destination-details .tours-section .tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.destination-details .map-section {
  margin-bottom: 80px;
}

.destination-details .map-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.destination-details .map-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.destination-details .map-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.destination-details .map-section .map-container {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.destination-details .map-section .map-container .map-embed {
  height: 400px;
}

.destination-details .map-section .map-container .map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.destination-details .map-section .map-container .map-points {
  padding: 25px;
  background: var(--surface-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.destination-details .map-section .map-container .map-points .point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.destination-details .map-section .map-container .map-points .point-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.destination-details .map-section .map-container .map-points .point-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

.destination-details .practical-info {
  margin-bottom: 80px;
}

.destination-details .practical-info .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.destination-details .practical-info .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.destination-details .practical-info .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.destination-details .practical-info .info-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: 0.3s;
}

.destination-details .practical-info .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.destination-details .practical-info .info-item .info-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.destination-details .practical-info .info-item .info-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.destination-details .practical-info .info-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.destination-details .practical-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
}

.destination-details .practical-info .travel-tips {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.destination-details .practical-info .travel-tips h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.destination-details .practical-info .travel-tips .tips-list {
  list-style: none;
  padding: 0;
}

.destination-details .practical-info .travel-tips .tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.destination-details .practical-info .travel-tips .tips-list li i {
  color: var(--accent-color);
  margin-top: 3px;
  font-size: 1.1rem;
}

.destination-details .gallery-section {
  margin-bottom: 80px;
}

.destination-details .gallery-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.destination-details .gallery-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.destination-details .gallery-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.destination-details .gallery-section .swiper-wrapper {
  height: auto !important;
}

.destination-details .gallery-section .gallery-item {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 10px;
}

.destination-details .gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.destination-details .gallery-section .gallery-item img:hover {
  transform: scale(1.05);
}

.destination-details .gallery-section .swiper-pagination {
  margin-top: 30px;
}

.destination-details .gallery-section .swiper-pagination .swiper-pagination-bullet {
  background: var(--accent-color);
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.destination-details .gallery-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.destination-details .cta-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 20px;
  text-align: center;
}

.destination-details .cta-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .destination-details .cta-section h2 {
    font-size: 2rem;
  }
}

.destination-details .cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.destination-details .cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.destination-details .cta-section .cta-buttons .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.destination-details .cta-section .cta-buttons .btn.btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: 2px solid var(--contrast-color);
}

.destination-details .cta-section .cta-buttons .btn.btn-primary:hover {
  background: transparent;
  color: var(--contrast-color);
}

.destination-details .cta-section .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.destination-details .cta-section .cta-buttons .btn.btn-outline:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Portfolio Details 3 Section
--------------------------------------------------------------*/
.portfolio-details-3 {
  --section-spacing: 5rem;
  --content-spacing: 4rem;
  --subtle-border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details-3 .project-hero {
  margin-bottom: var(--section-spacing);
}

.portfolio-details-3 .project-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.portfolio-details-3 .project-hero .hero-content .project-category {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.portfolio-details-3 .project-hero .hero-content .project-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.portfolio-details-3 .project-hero .hero-content .project-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 400;
  margin-bottom: 0;
}

.portfolio-details-3 .project-hero .project-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details-3 .project-hero .project-meta-grid .meta-column {
  text-align: center;
}

.portfolio-details-3 .project-hero .project-meta-grid .meta-column .meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.5rem;
}

.portfolio-details-3 .project-hero .project-meta-grid .meta-column .meta-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.portfolio-details-3 .visual-showcase {
  margin-bottom: var(--section-spacing);
}

.portfolio-details-3 .visual-showcase .main-visual {
  border-radius: 8px;
  overflow: hidden;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-wrapper {
  height: auto !important;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-button-next,
.portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  border-radius: 50%;
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-button-next::after,
.portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 600;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-button-next:hover,
.portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev {
  left: 30px;
}

.portfolio-details-3 .visual-showcase .main-visual .swiper-button-next {
  right: 30px;
}

.portfolio-details-3 .content-section {
  margin-bottom: var(--section-spacing);
}

.portfolio-details-3 .content-section .project-overview {
  text-align: center;
}

.portfolio-details-3 .content-section .project-overview h2 {
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.portfolio-details-3 .content-section .project-overview .overview-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 4rem;
}

.portfolio-details-3 .content-section .project-overview .challenge-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
}

.portfolio-details-3 .content-section .project-overview .challenge-solution .challenge-block h3,
.portfolio-details-3 .content-section .project-overview .challenge-solution .solution-block h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details-3 .content-section .project-overview .challenge-solution .challenge-block p,
.portfolio-details-3 .content-section .project-overview .challenge-solution .solution-block p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details-3 .metrics-showcase {
  padding: 4rem 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  margin: var(--section-spacing) -15px;
  border-radius: 8px;
}

.portfolio-details-3 .metrics-showcase .metrics-content h3 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details-3 .metrics-showcase .metrics-content p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details-3 .metrics-showcase .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.portfolio-details-3 .metrics-showcase .metrics-grid .metric-item {
  text-align: center;
  padding: 1.5rem;
}

.portfolio-details-3 .metrics-showcase .metrics-grid .metric-item .metric-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.portfolio-details-3 .metrics-showcase .metrics-grid .metric-item .metric-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.4;
}

.portfolio-details-3 .technology-stack {
  margin-bottom: var(--section-spacing);
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details-3 .technology-stack h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 0;
}

.portfolio-details-3 .technology-stack .tech-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.portfolio-details-3 .technology-stack .tech-categories .tech-category .category-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.portfolio-details-3 .technology-stack .tech-categories .tech-category .tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.portfolio-details-3 .technology-stack .tech-categories .tech-category .tech-list .tech-item {
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details-3 .technology-stack .tech-categories .tech-category .tech-list .tech-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

.portfolio-details-3 .process-gallery {
  margin-bottom: var(--section-spacing);
}

.portfolio-details-3 .process-gallery h3 {
  font-size: 2.25rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--heading-color);
}

.portfolio-details-3 .process-gallery .gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item.large {
  grid-row: span 2;
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item:hover {
  transform: translateY(-5px);
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details-3 .process-gallery .gallery-masonry .gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.portfolio-details-3 .key-features-section {
  margin-bottom: var(--section-spacing);
}

.portfolio-details-3 .key-features-section .features-intro {
  padding-right: 2rem;
}

.portfolio-details-3 .key-features-section .features-intro h3 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details-3 .key-features-section .features-intro p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

.portfolio-details-3 .key-features-section .features-list .feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.portfolio-details-3 .key-features-section .features-list .feature-row:last-child {
  margin-bottom: 0;
}

.portfolio-details-3 .key-features-section .features-list .feature-row .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portfolio-details-3 .key-features-section .features-list .feature-row .feature-icon i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.portfolio-details-3 .key-features-section .features-list .feature-row .feature-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.portfolio-details-3 .key-features-section .features-list .feature-row .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 0;
}

.portfolio-details-3 .project-footer {
  padding-top: 3rem;
  border-top: var(--subtle-border);
}

.portfolio-details-3 .project-footer .footer-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.prev-project,
.portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project {
  color: var(--heading-color);
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.prev-project .nav-direction,
.portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project .nav-direction {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.25rem;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.prev-project .nav-title,
.portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project .nav-title {
  font-size: 1.1rem;
  font-weight: 500;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.prev-project:hover,
.portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project {
  text-align: right;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.all-projects {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 25px;
  color: var(--heading-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.all-projects i {
  font-size: 1rem;
}

.portfolio-details-3 .project-footer .footer-navigation .nav-link.all-projects:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .portfolio-details-3 .project-hero .hero-content .project-title {
    font-size: 3rem;
  }

  .portfolio-details-3 .project-hero .project-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-details-3 .content-section .project-overview .challenge-solution {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .portfolio-details-3 .content-section .project-overview h2 {
    font-size: 2.25rem;
  }

  .portfolio-details-3 .metrics-showcase .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details-3 .key-features-section .features-intro {
    margin-bottom: 2rem;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .portfolio-details-3 {
    --section-spacing: 3rem;
  }

  .portfolio-details-3 .project-hero .hero-content .project-title {
    font-size: 2.5rem;
  }

  .portfolio-details-3 .project-hero .project-meta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details-3 .visual-showcase .main-visual .swiper-slide img {
    height: 400px;
  }

  .portfolio-details-3 .visual-showcase .main-visual .swiper-button-next,
  .portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .portfolio-details-3 .visual-showcase .main-visual .swiper-button-next::after,
  .portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev::after {
    font-size: 0.9rem;
  }

  .portfolio-details-3 .visual-showcase .main-visual .swiper-button-prev {
    left: 15px;
  }

  .portfolio-details-3 .visual-showcase .main-visual .swiper-button-next {
    right: 15px;
  }

  .portfolio-details-3 .content-section .project-overview h2 {
    font-size: 2rem;
  }

  .portfolio-details-3 .project-footer .footer-navigation {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .portfolio-details-3 .project-footer .footer-navigation .nav-link.prev-project,
  .portfolio-details-3 .project-footer .footer-navigation .nav-link.next-project {
    text-align: center;
  }

  .portfolio-details-3 .project-footer .footer-navigation .nav-link.all-projects {
    order: -1;
  }

  .portfolio-details-3 .technology-stack .tech-categories .tech-category .tech-list .tech-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 576px) {
  .portfolio-details-3 .gallery-masonry {
    grid-template-columns: 1fr !important;
  }

  .portfolio-details-3 .gallery-masonry .gallery-item.large {
    grid-row: span 1;
  }

  .portfolio-details-3 .metrics-showcase {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
}

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

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

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

@media (min-width: 993px) {
  .portfolio-details-3 .action-buttons {
    justify-content: center;
  }
}

.portfolio-details-3 .primary-btn {
  background-color: #fbe337;
  color: var(--heading-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}

.portfolio-details-3 .primary-btn:hover {
  background-color: color-mix(in srgb, #fbe337, black 10%);
  color: var(--heading-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .hero-8 .primary-btn {
    width: 100%;
    text-align: center;
  }
}



/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding: 70px 0;
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

@media (min-width: 576px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
}

.gallery .gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.gallery .gallery-item.featured {
  grid-row: span 2;
}

@media (min-width: 768px) {
  .gallery .gallery-item.featured {
    grid-column: span 2;
  }
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
  transform: scale(0.5);
  transition: transform 0.4s ease;
}

.gallery .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery .gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery .btn-view-more {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-color);
  font-weight: 600;
  padding: 12px 30px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.gallery .btn-view-more i {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.gallery .btn-view-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.gallery .btn-view-more:hover i {
  transform: translateX(5px);
}



/*--------------------------------------------------------------
# Misc Section
--------------------------------------------------------------*/


.misc .featured-event {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.misc .featured-event .featured-event-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.misc .featured-event .featured-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.misc .featured-event .featured-event-image .event-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.misc .featured-event:hover .featured-event-image img {
  transform: scale(1.05);
}

.misc .featured-event .featured-event-content {
  padding: 35px;
}

.misc .featured-event .featured-event-content h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.misc .featured-event .featured-event-content p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.misc .featured-event .featured-event-content .event-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.misc .featured-event ul {
  list-style: none;
  padding: 0;
}

.misc .featured-event ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.misc .featured-event ul li:last-child {
  padding-bottom: 0;
}

.misc .featured-event ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.misc .featured-event .featured-event-content .event-details .event-detail-item {
  display: flex;
  align-items: center;
}

.misc .featured-event .featured-event-content .event-details .event-detail-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 12px;
}

.misc .featured-event .featured-event-content .event-details .event-detail-item span {
  font-size: 0.95rem;
}

.misc .featured-event .featured-event-content .btn-reserve {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.misc .featured-event .featured-event-content .btn-reserve:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
}

.misc .info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 100%;
}

.misc .info-cards .info-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.misc .info-cards .info-card:hover {
  transform: translateY(-5px);
}

.misc .info-cards .info-card .info-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.misc .info-cards .info-card .info-card-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.misc .info-cards .info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.misc .info-cards .info-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.misc .info-cards .info-card.hours .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.misc .info-cards .info-card.hours .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 85%);
}

.misc .info-cards .info-card.hours .hours-list li:last-child {
  border-bottom: none;
}

.misc .info-cards .info-card.hours .hours-list li span:first-child {
  font-weight: 600;
}

.misc .info-cards .info-card.hours .hours-list li span:last-child {
  color: var(--accent-color);
}

.misc .info-cards .info-card.contact address {
  font-style: normal;
  margin-bottom: 20px;
  line-height: 1.6;
}

.misc .info-cards .info-card.contact .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.misc .info-cards .info-card.contact .contact-methods a {
  display: flex;
  align-items: center;
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.misc .info-cards .info-card.contact .contact-methods a i {
  color: var(--accent-color);
  margin-right: 10px;
}

.misc .info-cards .info-card.contact .contact-methods a:hover {
  color: var(--accent-color);
}

.misc .awards-section {
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
  padding: 40px;
  border-radius: 16px;
  margin-top: 40px;
}

.misc .awards-section .awards-header {
  text-align: center;
  margin-bottom: 40px;
}

.misc .awards-section .awards-header h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.misc .awards-section .awards-header p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 700px;
  margin: 0 auto;
}

.misc .awards-section .awards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.misc .awards-section .awards-list .award-item {
  display: flex;
  align-items: center;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.misc .awards-section .awards-list .award-item:hover {
  transform: translateY(-5px);
}

.misc .awards-section .awards-list .award-item .award-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.misc .awards-section .awards-list .award-item .award-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.misc .awards-section .awards-list .award-item .award-content h4 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.misc .awards-section .awards-list .award-item .award-content p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.misc .subscribe-wrapper {
  margin-top: 40px;
  display: flex;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.misc .subscribe-wrapper .subscribe-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.misc .subscribe-wrapper .subscribe-content h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.misc .subscribe-wrapper .subscribe-content p {
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.misc .subscribe-wrapper .subscribe-content .subscribe-form .subscribe-form-row {
  display: flex;
  gap: 15px;
}

.misc .subscribe-wrapper .subscribe-content .subscribe-form .subscribe-form-row input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 1rem;
}

.misc .subscribe-wrapper .subscribe-content .subscribe-form .subscribe-form-row input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.misc .subscribe-wrapper .subscribe-content .subscribe-form .subscribe-form-row button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.misc .subscribe-wrapper .subscribe-content .subscribe-form .subscribe-form-row button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.misc .subscribe-wrapper .subscribe-content .subscribe-form .subscribe-form-row button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.misc .subscribe-wrapper .subscribe-content .subscribe-form .subscribe-form-row button:hover i {
  transform: translateX(5px);
}

.misc .subscribe-wrapper .subscribe-image-wrapper {
  flex: 0 0 45%;
  overflow: hidden;
}

.misc .subscribe-wrapper .subscribe-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .misc .featured-event .featured-event-content {
    padding: 25px;
  }

  .misc .awards-section {
    padding: 30px;
  }

  .misc .subscribe-wrapper .subscribe-content {
    padding: 35px;
  }
}

@media (max-width: 992px) {
  .misc .info-cards {
    margin-top: 30px;
    flex-direction: row;
  }

  .misc .info-cards .info-card {
    flex: 1;
  }

  .misc .awards-list .award-item {
    padding: 20px;
  }

  .misc .subscribe-wrapper {
    flex-direction: column;
  }

  .misc .subscribe-wrapper .subscribe-image-wrapper {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .misc .featured-event-image {
    height: 220px;
  }

  .misc .info-cards {
    flex-direction: column;
  }

  .misc .awards-section .awards-list {
    grid-template-columns: 1fr;
  }

  .misc .subscribe-wrapper .subscribe-content .subscribe-form-row {
    flex-direction: column;
  }

  .misc .subscribe-wrapper .subscribe-content .subscribe-form-row button {
    width: 100%;
    padding: 14px;
    justify-content: center;
  }
}



/*--------------------------------------------------------------
# Features 16 Section
--------------------------------------------------------------*/
.features-16 {
  --default-color: #ffffff;
  --accent-color: #fbe337;
  --surface-color: #001b40;
  --contrast-color: #001b40;
  padding: 0;
}



.features-16 .video-play {
  min-height: 400px;
  background: linear-gradient(color-mix(in srgb, var(--background-color)), color-mix(in srgb, var(--background-color), transparent 75%)), center center;
  background-size: cover;
}

.features-16 .content {
  background: linear-gradient(color-mix(in srgb, var(--background-color)), color-mix(in srgb, var(--background-color), transparent 75%)), center center;
  background-size: cover;
  padding: 20px;
}

.features-16 .video-play img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 0px 0 0px 0;
  text-align: center;
  position: relative;
}


@media (min-width: 768px) {
  .features-16 .content {
    padding: 80px;
  }
}

.features-16 .content h3 {
  font-weight: 600;
  font-size: 32px;
}

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

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

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

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

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

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

.features-16 .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  padding-right: 19px;
}

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

.features-16 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  z-index: 1;
}


/*--------------------------------------------------------------
# Features 17 Section
--------------------------------------------------------------*/
.features-17 .features-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

.features-17 .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) {
  .features-17 .features-image img {
    height: 400px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.features-17 .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) {
  .features-17 .features-content h3 {
    font-size: 28px;
  }

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

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

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

  .features-17 .feature-item .feature-icon i {
    font-size: 20px;
  }
}


/*--------------------------------------------------------------
# Features 20 Section
--------------------------------------------------------------*/
.features-20 .feature-card {
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 94%);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.features-20 .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-20 .feature-card.highlighted {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), var(--surface-color));
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.features-20 .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 40%));
  color: var(--contrast-color);
}

.features-20 .feature-icon i {
  font-size: 1.75rem;
}

.features-20 h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-20 p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.features-20 .feature-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.features-20 .feature-benefits li {
  display: flex;
  align-items: center top;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.features-20 .feature-benefits li i {
  color: var(--accent-color);
  font-size: 1rem;
}

.features-20 .feature-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.features-20 .feature-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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

.features-20 .feature-testimonial {
  margin-top: 4rem;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 94%);
  overflow: hidden;
}

.features-20 .testimonial-image {
  height: 100%;
}

.features-20 .testimonial-image img {
  height: 100%;
  object-fit: cover;
}

.features-20 .testimonial-content {
  padding: 3rem;
}

.features-20 .testimonial-content .quote-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 1.75rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.features-20 .testimonial-content p {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.features-20 .testimonial-content .testimonial-author h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.features-20 .testimonial-content .testimonial-author span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .features-20 .feature-card {
    margin-bottom: 1.5rem;
    padding: 2rem;
  }

  .features-20 .testimonial-content {
    padding: 2rem;
    text-align: center;
  }

  .features-20 .testimonial-content .quote-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .features-20 .feature-testimonial {
    margin-top: 2rem;
  }

  .features-20 .testimonial-image {
    max-height: 300px;
    overflow: hidden;
  }

  .features-20 .testimonial-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .features-20 .testimonial-content {
    padding: 1.5rem;
  }

  .features-20 .testimonial-content p {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Features 21 Section
--------------------------------------------------------------*/
.features-21 .feature-gallery {
  position: relative;
}

.features-21 .feature-gallery img.img-fluid {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 32px color-mix(in srgb, var(--accent-color) 12%, transparent 90%);
  background: var(--surface-color);
}

.features-21 .feature-gallery .feature-thumb {
  position: absolute;
  right: -32px;
  bottom: -32px;
  display: flex;
  gap: 16px;
  z-index: 2;
}

.features-21 .feature-gallery .feature-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 3px solid var(--background-color);
  border-radius: 50%;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--heading-color) 10%, transparent 90%);
  background: var(--surface-color);
  transition: box-shadow 0.3s;
}

.features-21 .feature-gallery .feature-thumb img:hover {
  box-shadow: 0 2px 16px color-mix(in srgb, var(--accent-color) 35%, transparent 65%);
}

.features-21 .features-content h3 {
  font-size: 2.2rem;
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--heading-color);
}

.features-21 .features-content>p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.1rem;
  font-family: var(--default-font);
}

.features-21 .feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 5%, transparent 95%);
  border-radius: 1rem;
  padding: 1.7rem 1.25rem;
  box-shadow: 0 1px 10px color-mix(in srgb, var(--heading-color) 3%, transparent 97%);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.features-21 .feature-card .icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 11%, transparent 89%);
  margin-right: 8px;
  font-size: 2rem;
  color: var(--accent-color);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent-color) 4%, transparent 96%);
  transition: background 0.3s, color 0.3s;
}

.features-21 .feature-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.features-21 .feature-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

.features-21 .feature-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 12%, transparent 88%);
}

.features-21 .feature-card:hover .icon-wrap {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .features-21 .feature-gallery img.img-fluid {
    height: 260px;
  }

  .features-21 .feature-gallery .feature-thumb {
    right: 0;
    bottom: -12px;
  }
}

@media (max-width: 768px) {
  .features-21 .feature-gallery {
    text-align: center;
  }

  .features-21 .feature-gallery img.img-fluid {
    height: 190px;
  }

  .features-21 .feature-gallery .feature-thumb {
    position: static;
    margin-top: 12px;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .details h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.events .details .social {
  margin-bottom: 15px;
}

.events .details .social a {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.events .details .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.events .details .social a i {
  font-size: 16px;
  line-height: 0;
}

.events .details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin-bottom: 10px;
}

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.features .feature-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.features .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.features .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .feature-image .overlay-icon i {
  font-size: 24px;
}

.features .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.features .feature-content .content-inner {
  padding: 3rem;
}

@media (max-width: 992px) {
  .features .feature-content .content-inner {
    padding: 2rem;
  }
}

.features .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.features h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .features h3 {
    font-size: 24px;
  }
}

.features p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.features .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.features .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .feature-list li:last-child {
  margin-bottom: 0;
}

.features .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.features .feature-action {
  margin-top: 1.5rem;
}

.features .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.features .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.features .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.features .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .features .feature-image,
  .features .feature-content {
    height: auto;
  }

  .features .feature-content .content-inner {
    padding: 2rem;
  }

  .features h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 h3 {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.features-2 .icon-box {
  margin-top: 50px;
}

.features-2 .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 0;
}

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

.features-2 .icon-box .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features-2 .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features-2 .icon-box .title a:hover {
  color: var(--accent-color);
}

.features-2 .icon-box .description {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.features-2 .video-box {
  min-height: 400px;
}

.features-2 .video-box img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features-2 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  z-index: 1;
}

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 {
  padding: 0;
}

.features-3 .video-play {
  min-height: 400px;
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/bg-4.webp") center center;
  background-size: cover;
}

.features-3 .content {
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/abstract-bg-4.webp") center center;
  background-size: cover;
  padding: 40px;
}

@media (min-width: 768px) {
  .features-3 .content {
    padding: 80px;
  }
}

.features-3 .content h3 {
  font-weight: 600;
  font-size: 32px;
}

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

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

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

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

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

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

.features-3 .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  padding-right: 19px;
}

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

.features-3 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  height: 100%;
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.services-2 .service-item .img {
  overflow: hidden;
}

.services-2 .service-item .img img {
  transition: 0.6s;
}

.services-2 .service-item .details {
  padding: 25px;
}

.services-2 .service-item .details .icon {
  margin: 0 auto 20px auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.services-2 .service-item .details .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services-2 .service-item .details h3 {
  color: var(--heading-color);
  font-weight: 700;
  margin: 0 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
  text-align: center;
}

.services-2 .service-item .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: center;
}

.services-2 .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.15);
}

.services-2 .service-item:hover .img img {
  transform: scale(1.1);
}

.services-2 .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services-2 .service-item:hover .details .icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.services-2 .service-item:hover .details .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  position: relative;
}

.services .services-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services .services-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .services .services-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .services .services-content h2 {
    font-size: 28px;
  }
}

.services .services-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.services .services-content .btn-consultation {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .services-content .btn-consultation span {
  margin-right: 8px;
}

.services .services-content .btn-consultation i {
  transition: transform 0.3s ease;
}

.services .services-content .btn-consultation:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services .services-content .btn-consultation:hover i {
  transform: translateX(5px);
}

.services .services-image {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: flex-end;
}

.services .services-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  object-fit: cover;
}

.services .services-image .shape-circle {
  position: absolute;
  right: -30px;
  top: -30px;
  height: 180px;
  width: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  z-index: 1;
}

.services .services-image .shape-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 1;
  animation: float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
  .services .services-image {
    margin-top: 30px;
    height: 300px;
    justify-content: center;
  }
}

.services .services-slider {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

.services .services-slider .swiper-wrapper {
  height: auto !important;
}

.services .service-card {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services .service-card .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.services .service-card .icon-box i {
  font-size: 30px;
  color: var(--contrast-color);
  transition: all 0.4s;
}

.services .service-card .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transform: rotate(-45deg);
  position: absolute;
  right: -50px;
  top: -50px;
  transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services .service-card .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services .service-card .content h4 a {
  color: var(--heading-color);
  transition: all 0.4s;
}

.services .service-card .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.services .service-card .content .service-number {
  position: relative;
  padding-left: 76px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s;
}

.services .service-card .content .service-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 70px;
  background-color: var(--accent-color);
  transition: all 0.4s;
}

.services .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services .service-card:hover .icon-box {
  background-color: var(--contrast-color);
}

.services .service-card:hover .icon-box i {
  color: var(--accent-color);
}

.services .service-card:hover .arrow-link {
  top: 16px;
  right: 16px;
  background-color: var(--contrast-color);
}

.services .service-card:hover .content h4 a {
  color: var(--contrast-color);
}

.services .service-card:hover .content p {
  color: var(--contrast-color);
}

.services .service-card:hover .content .service-number {
  color: var(--contrast-color);
  padding-left: 0;
}

.services .service-card:hover .content .service-number::after {
  background-color: var(--contrast-color);
  left: 30px;
}

.services .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.services .swiper-navigation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  transition: all 0.4s;
  margin-right: 10px;
}

.services .swiper-navigation button:last-child {
  margin-right: 0;
}

.services .swiper-navigation button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes float {

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

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

/*--------------------------------------------------------------
# About Me Section
--------------------------------------------------------------*/
.about-me .about-img {
  position: relative;
}

.about-me .about-img .img-wrapper {
  position: relative;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 15px;
}

.about-me .about-img .img-wrapper img {
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.about-me .about-img .img-wrapper img:hover {
  transform: scale(1.02);
}

.about-me .content .section-header {
  margin-bottom: 30px;
}

.about-me .content .section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-me .content .section-header p {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
}

.about-me .content .about-content .bio-text .lead {
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 0;
}

.about-me .content .about-content .bio-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
}

.about-me .content .about-content .info-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-me .content .about-content .info-list .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.about-me .content .about-content .info-list .info-item:hover {
  transform: translateY(-3px);
}

.about-me .content .about-content .info-list .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.about-me .content .about-content .info-list .info-item h5 {
  font-size: 16px;
  margin: 0 0 5px;
  font-weight: 600;
  color: var(--heading-color);
}

.about-me .content .about-content .info-list .info-item p {
  margin: 0;
  font-size: 15px;
  color: var(--default-color);
}

.about-me .content .about-content .social-links {
  text-align: center;
}

.about-me .content .about-content .social-links .links-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-me .content .about-content .social-links .links-wrapper a {
  color: var(--heading-color);
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-me .content .about-content .social-links .links-wrapper a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .about-me .about-img {
    margin-bottom: 30px;
  }

  .about-me .content .about-content .info-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-me .content .section-header h2 {
    font-size: 28px;
  }

  .about-me .content .section-header p {
    font-size: 16px;
  }

  .about-me .content .about-content .bio-text .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .about-me .about-img .img-wrapper .social-links {
    padding: 12px 20px;
    gap: 12px;
  }

  .about-me .about-img .img-wrapper .social-links a {
    font-size: 16px;
    width: 32px;
    height: 32px;
  }

  .about-me .content .about-content .info-list {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Pricing 2 Section
--------------------------------------------------------------*/
.pricing-2 {
  --basic-plan-color: #45B7D1;
  --standard-plan-color: #ff8400;
  --pro-plan-color: #b4194a;
  --enterprise-plan-color: #7367F0;
}

.pricing-2 .pricing-cards {
  perspective: 1000px;
}

.pricing-2 .pricing-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-2 .pricing-card:hover {
  transform: translateZ(20px) rotateX(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-2 .pricing-card.basic {
  border-top: 5px solid var(--basic-plan-color);
}

.pricing-2 .pricing-card.basic .icon-wrapper {
  background-color: var(--basic-plan-color);
}

.pricing-2 .pricing-card.standard {
  border-top: 5px solid var(--standard-plan-color);
}

.pricing-2 .pricing-card.standard .icon-wrapper {
  background-color: var(--standard-plan-color);
}

.pricing-2 .pricing-card.pro {
  border-top: 5px solid var(--pro-plan-color);
}

.pricing-2 .pricing-card.pro .icon-wrapper {
  background-color: var(--pro-plan-color);
}

.pricing-2 .pricing-card.enterprise {
  border-top: 5px solid var(--enterprise-plan-color);
}

.pricing-2 .pricing-card.enterprise .icon-wrapper {
  background-color: var(--enterprise-plan-color);
}

.pricing-2 .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.pricing-2 .pricing-card .pricing-header .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px;
}

.pricing-2 .pricing-card .pricing-header .icon-wrapper i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.pricing-2 .pricing-card .pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.pricing-2 .pricing-card .pricing-header .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--heading-color);
}

.pricing-2 .pricing-card .pricing-header .price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-2 .pricing-card .pricing-header .price .period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
  font-weight: 400;
  margin-left: -4px;
}

.pricing-2 .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-2 .pricing-card .features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.pricing-2 .pricing-card .features-list li i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing-2 .pricing-card .features-list li i.bi-check-lg {
  color: var(--accent-color);
}

.pricing-2 .pricing-card .features-list li i.bi-x-lg {
  color: var(--contrast-color);
}

.pricing-2 .pricing-card .btn-custom {
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-2 .pricing-card .btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing-2 .pricing-card .btn-custom:hover::before {
  width: 100%;
}

.pricing-2 .pricing-card.basic .btn-custom {
  background-color: var(--basic-plan-color);
}

.pricing-2 .pricing-card.standard .btn-custom {
  background-color: var(--standard-plan-color);
}

.pricing-2 .pricing-card.pro .btn-custom {
  background-color: var(--pro-plan-color);
}

.pricing-2 .pricing-card.enterprise .btn-custom {
  background-color: var(--enterprise-plan-color);
}

@media (max-width: 991.98px) {
  .pricing-2 .pricing-card {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  position: relative;
}

.pricing .pricing-item h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
}

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

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

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: left;
  line-height: 20px;
}

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

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

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .pricing-item ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

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

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

.pricing .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

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

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .row {
  align-items: center;
}

@media (max-width: 991px) {
  .team .team-intro {
    margin-bottom: 40px;
  }
}

.team .team-intro .team-intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.team .team-intro .team-intro-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.team .team-intro .team-intro-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.team .team-intro .team-intro-content p {
  margin-bottom: 30px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-intro .team-navigation {
  display: flex;
  gap: 10px;
}

.team .team-intro .team-navigation button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-intro .team-navigation button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.team .member-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-10px);
}

.team .member-card:hover .member-image:before {
  opacity: 0.7;
}

.team .member-card .member-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.team .member-card .member-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team .member-card .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team .member-card .member-image:hover img {
  transform: scale(1.05);
}

.team .member-card .member-info {
  padding: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team .member-card .member-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .member-card .member-info span {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.team .member-card .member-social {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.team .member-card .member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team .member-card .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .member-card .member-bio p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.team .team-carousel-wrap {
  overflow-x: hidden;
  padding: 30px 20px;
}

.team .team-carousel {
  overflow: visible;
}

.team .team-carousel .swiper-slide {
  height: auto;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-header {
  margin-bottom: 2.5rem;
}

.service-details .service-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.service-details .service-header h1:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  width: 70px;
  background: var(--accent-color);
}

.service-details .service-header .lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-main .service-content-tabs {
  margin-bottom: 3rem;
}

.service-details .service-main .service-content-tabs .nav-pills {
  gap: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 1px;
  padding-left: 10px;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  border-radius: 6px 6px 0 0;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-bottom: none;
  transition: all 0.3s ease;
  margin-bottom: -1px;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: none;
  position: relative;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--surface-color);
}

.service-details .service-main .service-content-tabs .tab-content {
  background-color: var(--surface-color);
  border-radius: 0 0 10px 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-top: none;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .main-image {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block {
  padding: 1.5rem;
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block h4 i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 5%);
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-text p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps {
  margin-top: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper {
  position: relative;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  z-index: 0;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item:last-child {
  margin-bottom: 0;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item .step-number {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-right: 1.5rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item .step-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card {
  background: linear-gradient(145deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 8%) 100%);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: all 0.3s ease;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-icon {
  margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-label {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies {
  margin-top: 3rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .swiper-pagination {
  bottom: -5px;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item {
  border-radius: 10px;
  overflow: hidden;
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-image {
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content {
  padding: 2rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content .case-result {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content .case-result .result-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.1;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content .case-result .result-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 0;
}

.service-details .service-main .section-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-details .service-main .section-subtitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-main .services-packages .service-package {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .service-main .services-packages .service-package:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.service-details .service-main .services-packages .service-package:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-main .services-packages .service-package:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-details .service-main .services-packages .service-package:hover .package-icon {
  background-color: var(--accent-color);
}

.service-details .service-main .services-packages .service-package:hover .package-icon i {
  color: var(--contrast-color);
}

.service-details .service-main .services-packages .service-package .package-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-details .service-main .services-packages .service-package .package-icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details .service-main .services-packages .service-package h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-details .service-main .services-packages .service-package p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.service-details .sidebar-wrapper .service-info-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.service-details .sidebar-wrapper .service-info-card .card-header {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  padding: 2rem;
  position: relative;
}

.service-details .sidebar-wrapper .service-info-card .card-header h3 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .sidebar-wrapper .service-info-card .card-header .service-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-details .sidebar-wrapper .service-info-card .service-stats {
  padding: 1.5rem 2rem;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item:last-child {
  margin-bottom: 0;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item i {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item div span {
  display: block;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item div span.stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.25rem;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item div span.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-color);
}

.service-details .sidebar-wrapper .service-highlights {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .sidebar-wrapper .service-highlights h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.service-details .sidebar-wrapper .service-highlights h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item {
  display: flex;
  align-items: flex-start;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item .highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item .highlight-content h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item .highlight-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
  line-height: 1.5;
}

.service-details .sidebar-wrapper .contact-action {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-details .sidebar-wrapper .contact-action:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), black 15%) 0%, var(--accent-color) 100%);
  z-index: 1;
}

.service-details .sidebar-wrapper .contact-action .action-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  text-align: center;
}

.service-details .sidebar-wrapper .contact-action .action-content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-details .sidebar-wrapper .contact-action .action-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-details .sidebar-wrapper .contact-action .action-content .action-button {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .sidebar-wrapper .contact-action .action-content .action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .sidebar-wrapper .client-testimonial {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content {
  position: relative;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .quote-mark {
  display: block;
  margin-bottom: 1rem;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .quote-mark i {
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.2;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info {
  display: flex;
  align-items: center;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info .client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info div h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info div span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 991px) {
  .service-details .service-header h1 {
    font-size: 2rem;
  }

  .service-details .sidebar-wrapper {
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .service-details .service-content-tabs .nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-details .service-content-tabs .nav-pills .nav-link {
    white-space: nowrap;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .service-details .service-content-tabs .nav-pills .nav-link i {
    font-size: 1rem;
  }

  .service-details .service-content-tabs .tab-content {
    padding: 1.5rem;
  }

  .service-details .service-header h1 {
    font-size: 1.75rem;
  }

  .service-details .service-header .lead {
    font-size: 1rem;
  }

  .service-details .case-study-item .case-content {
    padding: 1.25rem !important;
  }

  .service-details .case-study-item .case-content h4 {
    font-size: 1.125rem !important;
  }

  .service-details .case-study-item .case-content .case-result .result-value {
    font-size: 1.75rem !important;
  }
}

/*--------------------------------------------------------------
# Features 4 Section
--------------------------------------------------------------*/
.features-4 {
  padding: 0;
}

.features-4 .video-play {
  min-height: 400px;
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/bg-4.webp") center center;
  background-size: cover;
}

.features-4 .content {
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/abstract-bg-4.webp") center center;
  background-size: cover;
  padding: 40px;
}

@media (min-width: 768px) {
  .features-4 .content {
    padding: 80px;
  }
}

.features-4 .content h3 {
  font-weight: 600;
  font-size: 32px;
}

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

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

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

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

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

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

.features-4 .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  padding-right: 19px;
}

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

.features-4 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cards .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.cards .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cards .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cards .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cards .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cards .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cards .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cards .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cards .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.cards .card-item .card-content {
  padding: 2rem;
}

.cards .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cards .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cards 2 Section
--------------------------------------------------------------*/
.cards-2 .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cards-2 .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cards-2 .card-item:hover .card-img img {
  transform: scale(1.1);
}

.cards-2 .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cards-2 .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cards-2 .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cards-2 .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cards-2 .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cards-2 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.cards-2 .card-item .card-content {
  padding: 2rem;
}

.cards-2 .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards-2 .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cards-2 .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Cards 20 Section
--------------------------------------------------------------*/
.cards-20 .service-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
}

.cards-20 .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cards-20 .service-card:hover::before {
  transform: scaleX(1);
}

.cards-20 .service-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.cards-20 .service-card.featured::before {
  transform: scaleX(1);
}

.cards-20 .service-card.featured .icon-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
}

.cards-20 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: var(--accent-color);
}

.cards-20 .service-card .card-header {
  padding: 25px 25px 15px;
  text-align: center;
}

.cards-20 .service-card .card-header .icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 32px;
  transition: all 0.3s ease;
}

.cards-20 .service-card .card-header h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
}

.cards-20 .service-card .card-body {
  padding: 0 25px 15px;
}

.cards-20 .service-card .card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  text-align: center;
}

.cards-20 .service-card .card-body .feature-image {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.cards-20 .service-card .card-body .feature-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 80%), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cards-20 .service-card .card-body .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cards-20 .service-card:hover .feature-image::before {
  opacity: 1;
}

.cards-20 .service-card:hover .feature-image img {
  transform: scale(1.1);
}

.cards-20 .service-card .card-footer {
  padding: 15px 25px 25px;
}

.cards-20 .service-card .card-footer .btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cards-20 .service-card .card-footer .btn-explore i {
  margin-left: 8px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cards-20 .service-card .card-footer .btn-explore:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.cards-20 .service-card .card-footer .btn-explore:hover i {
  transform: translate(3px, -3px);
}

.cards-20 .service-card.featured .btn-explore {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.cards-20 .service-card.featured .btn-explore:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  border-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
}

@media (max-width: 768px) {
  .cards-20 .service-card .card-header {
    padding: 20px 20px 10px;
  }

  .cards-20 .service-card .card-header .icon-box {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .cards-20 .service-card .card-header h4 {
    font-size: 16px;
  }

  .cards-20 .service-card .card-body {
    padding: 0 20px 10px;
  }

  .cards-20 .service-card .card-body .feature-image {
    height: 140px;
  }

  .cards-20 .service-card .card-footer {
    padding: 10px 20px 20px;
  }
}



/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery-2 .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery-2 .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Tabs 3 Section
--------------------------------------------------------------*/
.tabs-3 .nav-tabs {
  border: 0;
}

.tabs-3 .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tabs-3 .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs-3 .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .tabs-3 .nav-link h4 {
    font-size: 16px;
  }
}

.tabs-3 .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.tabs-3 .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs-3 .tab-content {
  margin-top: 30px;
}

.tabs-3 .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.tabs-3 .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.tabs-3 .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs-3 .tab-pane ul li {
  padding-top: 10px;
}

.tabs-3 .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs-3 .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Tabs 4 Section
--------------------------------------------------------------*/
.tabs-4 .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.tabs-4 .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.tabs-4 .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.tabs-4 .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.tabs-4 .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.tabs-4 .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.tabs-4 .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.tabs-4 .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.tabs-4 .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.tabs-4 .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.tabs-4 .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.tabs-4 .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.tabs-4 .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

.tabs-4 .nav-tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.tabs-4 .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-4 .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.tabs-4 .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.tabs-4 .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.tabs-4 .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

.tabs-4 .nav-tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.tabs-4 .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.tabs-4 .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.tabs-4 .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.tabs-4 .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.tabs-4 .tab-content .content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.tabs-4 .tab-content .content-box p.highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.tabs-4 .tab-content .content-box .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.tabs-4 .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.tabs-4 .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.tabs-4 .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.tabs-4 .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-4 .tab-content .content-box .features-list li:hover {
  transform: translateX(5px);
}

.tabs-4 .tab-content .content-box .features-list li:hover span {
  color: var(--default-color);
}

.tabs-4 .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tabs-4 .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
}

.tabs-4 .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.tabs-4 .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.tabs-4 .tab-pane {
  transition: all 0.4s ease;
}

.tabs-4 .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.tabs-4 .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .tabs-4 .nav-tabs {
    margin-bottom: 30px;
  }

  .tabs-4 .nav-tabs .nav-link {
    padding: 15px;
  }

  .tabs-4 .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .tabs-4 .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .tabs-4 .tab-content .content-box {
    padding: 30px;
  }

  .tabs-4 .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .tabs-4 .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .tabs-4 .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .tabs-4 .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .tabs-4 .tab-content .content-box {
    padding: 25px;
  }

  .tabs-4 .tab-content .content-box h3 {
    font-size: 22px;
  }

  .tabs-4 .tab-content .content-box p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

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

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

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {
  padding-top: 60px;
  padding-bottom: 60px;
}

.slider .container-fluid {
  padding: 0;
}

.slider .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .slider .event-item {
    min-height: 500px;
  }
}

.slider .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.slider .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
  position: relative;
}

.slider .event-item .price {
  color: #ffffff;
  border-bottom: 2px solid var(--accent-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.slider .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

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

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

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

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

/*--------------------------------------------------------------
# Slider 2 Section
--------------------------------------------------------------*/
.slider-2 {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

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

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

.slider-2 .section-title h2 {
  color: #ffffff;
}

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

.slider-2 .event-item h3 {
  font-weight: 700;
  font-size: 30px;
}

.slider-2 .event-item .price {
  font-size: 26px;
  font-family: var(--default-font);
  font-weight: 700;
  margin-bottom: 15px;
}

.slider-2 .event-item .price span {
  border-bottom: 2px solid var(--accent-color);
}

.slider-2 .event-item ul {
  list-style: none;
  padding: 0;
}

.slider-2 .event-item ul li {
  padding-bottom: 10px;
}

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

.slider-2 .event-item p:last-child {
  margin-bottom: 0;
}

.slider-2 .swiper-wrapper {
  height: auto;
}

.slider-2 .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

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

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

/*--------------------------------------------------------------
# Slider 3 Section
--------------------------------------------------------------*/
.slider-3 {
  padding-top: 60px;
  overflow: visible;
  margin-bottom: 200px;
  padding-bottom: 60px;
}

.slider-3 .section-title {
  text-align: left;
}

.slider-3 .section-title h2 {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
  text-transform: uppercase;
  font-size: 20px;
}

.slider-3 .section-title p {
  color: var(--contrast-color);
}

.slider-3 .services-carousel-wrap {
  position: relative;
  margin-bottom: -200px;
}

.slider-3 .swiper-wrapper {
  height: auto;
}

.slider-3 .service-item {
  position: relative;
  overflow: hidden;
}

.slider-3 .service-item:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.slider-3 .service-item img {
  transition: 0.5s all ease;
  transform: scale(1);
}

.slider-3 .service-item .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.slider-3 .service-item .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.slider-3 .service-item .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.slider-3 .service-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.slider-3 .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.slider-3 .service-item:hover img {
  transform: scale(1.2);
}

.slider-3 .navigation-prev,
.slider-3 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: var(--contrast-color);
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.slider-3 .navigation-prev i,
.slider-3 .navigation-next i {
  font-size: 2rem;
}

.slider-3 .navigation-prev:hover,
.slider-3 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.slider-3 .navigation-prev {
  left: 10px;
}

.slider-3 .navigation-next {
  right: 10px;
}

.slider-3 .swiper {
  padding-bottom: 50px;
}

.slider-3 .swiper-pagination {
  bottom: 0px;
}

.slider-3 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.slider-3 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.tabs .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.tabs .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.tabs .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.tabs .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.tabs .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.tabs .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.tabs .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.tabs .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.tabs .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.tabs .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.tabs .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.tabs .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

.tabs .nav-tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.tabs .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.tabs .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.tabs .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.tabs .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

.tabs .nav-tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.tabs .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.tabs .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.tabs .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.tabs .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.tabs .tab-content .content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.tabs .tab-content .content-box p.highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.tabs .tab-content .content-box .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.tabs .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.tabs .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.tabs .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.tabs .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .tab-content .content-box .features-list li:hover {
  transform: translateX(5px);
}

.tabs .tab-content .content-box .features-list li:hover span {
  color: var(--default-color);
}

.tabs .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tabs .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
}

.tabs .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.tabs .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.tabs .tab-pane {
  transition: all 0.4s ease;
}

.tabs .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.tabs .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .tabs .nav-tabs {
    margin-bottom: 30px;
  }

  .tabs .nav-tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .tabs .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .tabs .tab-content .content-box {
    padding: 30px;
  }

  .tabs .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .tabs .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .tabs .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .tabs .nav-tabs .nav-link p {
    font-size: 13px;
  }

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

  .tabs .tab-content .content-box h3 {
    font-size: 22px;
  }

  .tabs .tab-content .content-box p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Tabs 2 Section
--------------------------------------------------------------*/
.tabs-2 .tab-controls {
  position: relative;
  z-index: 10;
  border-radius: 50px;
  display: inline-flex;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 8px;
}

.tabs-2 .tab-controls .nav-item {
  margin: 0 5px;
}

.tabs-2 .tab-controls .nav-item:first-child {
  margin-left: 0;
}

.tabs-2 .tab-controls .nav-item:last-child {
  margin-right: 0;
}

.tabs-2 .tab-controls .nav-item .nav-link {
  display: flex;
  align-items: center;
  border-radius: 30px;
  padding: 12px 24px;
  background-color: transparent;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.tabs-2 .tab-controls .nav-item .nav-link i {
  font-size: 18px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.tabs-2 .tab-controls .nav-item .nav-link:hover {
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.tabs-2 .tab-controls .nav-item .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tabs-2 .tab-content {
  position: relative;
}

.tabs-2 .tab-content .tab-pane {
  transition: all 0.35s ease-in-out;
}

.tabs-2 .tab-content .tab-pane.fade {
  opacity: 0;
  transform: translateY(20px);
}

.tabs-2 .tab-content .tab-pane.show {
  opacity: 1;
  transform: translateY(0);
}

.tabs-2 .tab-content .tab-wrapper {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.tabs-2 .tab-content .tab-wrapper .tab-image {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tabs-2 .tab-content .tab-wrapper .tab-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tabs-2 .tab-content .tab-wrapper .tab-image:hover img {
  transform: scale(1.05);
}

.tabs-2 .tab-content .tab-wrapper .tab-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.tabs-2 .tab-content .tab-wrapper .tab-image .experience-badge .number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.tabs-2 .tab-content .tab-wrapper .tab-image .experience-badge .text {
  display: block;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner {
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .tab-header {
  margin-bottom: 24px;
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .tab-header .tab-subtitle {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .tab-header .tab-subtitle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background-color: var(--accent-color);
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .tab-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
  line-height: 1.3;
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item:last-child {
  margin-bottom: 0;
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item:hover {
  transform: translateX(6px);
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item:hover .benefit-icon {
  background-color: var(--accent-color);
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item:hover .benefit-icon i {
  color: var(--contrast-color);
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-icon i {
  color: var(--accent-color);
  font-size: 22px;
  transition: all 0.3s ease;
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.tabs-2 .tab-content .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-content p {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .tabs-2 .tab-wrapper .tab-content-inner {
    padding: 40px;
  }

  .tabs-2 .tab-wrapper .tab-content-inner .tab-header h3 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .tabs-2 .tab-controls .nav-item .nav-link {
    padding: 10px 18px;
    font-size: 14px;
  }

  .tabs-2 .tab-controls .nav-item .nav-link i {
    font-size: 16px;
  }

  .tabs-2 .tab-wrapper .tab-image .experience-badge {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
  }

  .tabs-2 .tab-wrapper .tab-image .experience-badge .number {
    font-size: 20px;
  }

  .tabs-2 .tab-wrapper .tab-image .experience-badge .text {
    font-size: 12px;
  }

  .tabs-2 .tab-wrapper .tab-content-inner {
    padding: 30px;
  }

  .tabs-2 .tab-wrapper .tab-content-inner .tab-header h3 {
    font-size: 24px;
  }

  .tabs-2 .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-icon {
    width: 45px;
    height: 45px;
  }

  .tabs-2 .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-icon i {
    font-size: 18px;
  }

  .tabs-2 .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-content h4 {
    font-size: 16px;
  }

  .tabs-2 .tab-wrapper .tab-content-inner .benefits-list .benefit-item .benefit-content p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .tabs-2 .tab-controls {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 15px;
    padding: 6px;
  }

  .tabs-2 .tab-controls .nav-item {
    margin: 4px;
  }

  .tabs-2 .tab-controls .nav-item .nav-link {
    padding: 8px 14px;
    font-size: 13px;
  }

  .tabs-2 .tab-wrapper .row {
    flex-direction: column-reverse;
  }

  .tabs-2 .tab-wrapper .tab-image {
    height: 300px;
  }
}

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

.faq-2 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.faq-2 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

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

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

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

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

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Events 2 Section
--------------------------------------------------------------*/
.events-2 .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 15px;
  border-radius: 50px;
  display: inline-flex;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.events-2 .nav-tabs li {
  display: inline-block;
  margin: 0 5px;
}

.events-2 .nav-tabs a {
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  background-color: transparent;
  color: var(--default-color);
  padding: 12px 40px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .events-2 .nav-tabs a {
    padding: 10px 30px;
  }
}

@media (max-width: 767px) {
  .events-2 .nav-tabs a {
    padding: 8px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .events-2 .nav-tabs a {
    padding: 8px 20px;
    font-size: 13px;
  }
}

.events-2 .nav-tabs a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.events-2 .nav-tabs a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.events-2 .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 40px auto;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (min-width: 991px) {
  .events-2 .sub-heading {
    width: 80%;
  }
}

.events-2 .tab-pane {
  transition: all ease-in-out 0.3s;
}

.events-2 .schedule-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 15px;
  transition: all ease-in-out 0.3s;
  border-radius: 10px;
  margin-bottom: 5px;
}

.events-2 .schedule-item:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  transform: translateX(5px);
}

.events-2 .schedule-item time {
  font-weight: 600;
  color: var(--accent-color);
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.events-2 .schedule-item .speaker {
  width: 65px;
  height: 65px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 15px 15px 0;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all ease-in-out 0.3s;
}

.events-2 .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

.events-2 .schedule-item:hover .speaker {
  border-color: var(--accent-color);
}

.events-2 .schedule-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.events-2 .schedule-item h4 span {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: normal;
  font-size: 16px;
  padding-left: 10px;
}

@media (max-width: 767px) {
  .events-2 .schedule-item h4 {
    font-size: 18px;
  }

  .events-2 .schedule-item h4 span {
    display: block;
    padding-left: 0;
    margin-top: 5px;
  }
}

.events-2 .schedule-item p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .events-2 .schedule-item {
    padding: 20px 10px;
  }

  .events-2 .schedule-item:hover {
    transform: none;
  }
}

/*--------------------------------------------------------------
# Tabs 5 Section
--------------------------------------------------------------*/
.tabs-5 .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.tabs-5 .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.tabs-5 .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.tabs-5 .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.tabs-5 .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.tabs-5 .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.tabs-5 .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.tabs-5 .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.tabs-5 .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.tabs-5 .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.tabs-5 .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.tabs-5 .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.tabs-5 .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

.tabs-5 .nav-tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.tabs-5 .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-5 .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.tabs-5 .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.tabs-5 .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.tabs-5 .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

.tabs-5 .nav-tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.tabs-5 .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.tabs-5 .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.tabs-5 .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.tabs-5 .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.tabs-5 .tab-content .content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.tabs-5 .tab-content .content-box p.highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.tabs-5 .tab-content .content-box .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.tabs-5 .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.tabs-5 .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.tabs-5 .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.tabs-5 .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-5 .tab-content .content-box .features-list li:hover {
  transform: translateX(5px);
}

.tabs-5 .tab-content .content-box .features-list li:hover span {
  color: var(--default-color);
}

.tabs-5 .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tabs-5 .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
}

.tabs-5 .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.tabs-5 .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.tabs-5 .tab-pane {
  transition: all 0.4s ease;
}

.tabs-5 .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.tabs-5 .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .tabs-5 .nav-tabs {
    margin-bottom: 30px;
  }

  .tabs-5 .nav-tabs .nav-link {
    padding: 15px;
  }

  .tabs-5 .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .tabs-5 .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .tabs-5 .tab-content .content-box {
    padding: 30px;
  }

  .tabs-5 .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .tabs-5 .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .tabs-5 .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .tabs-5 .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .tabs-5 .tab-content .content-box {
    padding: 25px;
  }

  .tabs-5 .tab-content .content-box h3 {
    font-size: 22px;
  }

  .tabs-5 .tab-content .content-box p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Tabs 6 Section
--------------------------------------------------------------*/
.tabs-6 .nav-tabs {
  border: none;
  border-right: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  padding: 0;
}

.tabs-6 .nav-tabs .nav-item {
  margin: 15px 0;
}

.tabs-6 .nav-tabs .nav-link {
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  color: var(--default-color);
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

.tabs-6 .nav-tabs .nav-link .d-flex {
  gap: 15px;
}

.tabs-6 .nav-tabs .nav-link i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.tabs-6 .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: 0.3s;
}

.tabs-6 .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs-6 .nav-tabs .nav-link:hover i {
  color: var(--accent-color);
}

.tabs-6 .nav-tabs .nav-link.active {
  color: var(--accent-color);
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.tabs-6 .nav-tabs .nav-link.active i {
  color: var(--accent-color);
}

.tabs-6 .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
}

@media (max-width: 991px) {
  .tabs-6 .nav-tabs {
    border-right: none;
    border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 30px;
    padding: 0;
  }

  .tabs-6 .nav-tabs .nav-item {
    margin: 8px 0;
  }

  .tabs-6 .nav-tabs .nav-link {
    padding: 10px 15px;
  }

  .tabs-6 .nav-tabs .nav-link.active::after {
    right: 0;
    bottom: -3px;
    top: auto;
    height: 3px;
    width: 100%;
  }
}

.tabs-6 .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.tabs-6 .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.tabs-6 .tab-content p.fst-italic {
  font-style: italic;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
  position: relative;
}

.tabs-6 .tab-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.tabs-6 .tab-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-6 .tab-content ul li i {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 18px;
  color: var(--accent-color);
}

.tabs-6 .tab-content img {
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tabs-6 .tab-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }

  .tabs-6 .tab-content img {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.blog-posts .meta {
  position: relative;
  margin-top: -20px;
  padding: 0 30px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}

.blog-posts .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Posts Slider Section
--------------------------------------------------------------*/
.posts-slider {
  padding: 30px 0;
}

.posts-slider .posts-slider {
  padding: 30px 0;
  overflow: hidden;
}

.posts-slider .swiper-wrapper {
  height: auto !important;
}

.posts-slider .post-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: var(--surface-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.posts-slider .post-card .post-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.posts-slider .post-card .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.posts-slider .post-card .post-img .post-overlay {
  position: absolute;
  inset: 0;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
}

.posts-slider .post-card .post-img .post-overlay .post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.9;
}

.posts-slider .post-card .post-img .post-overlay .post-meta span {
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.posts-slider .post-card .post-img .post-overlay .post-meta span i {
  font-size: 16px;
}

.posts-slider .post-card .post-img .post-overlay .post-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
  color: var(--contrast-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.posts-slider .post-card .post-img .post-overlay .read-more {
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--contrast-color);
  padding: 12px 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-radius: 30px;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.posts-slider .post-card .post-img .post-overlay .read-more i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.posts-slider .post-card .post-img .post-overlay .read-more:hover {
  background-color: var(--accent-color);
  gap: 12px;
}

.posts-slider .post-card .post-img .post-overlay .read-more:hover i {
  transform: translateX(3px);
}

.posts-slider .post-card:hover .post-img img {
  transform: scale(1.1);
}

.posts-slider .swiper-button-next,
.posts-slider .swiper-button-prev {
  width: 50px;
  height: 50px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.posts-slider .swiper-button-next::after,
.posts-slider .swiper-button-prev::after {
  font-size: 20px;
}

.posts-slider .swiper-button-next:hover,
.posts-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
}

@media (max-width: 991px) {
  .posts-slider .post-card .post-img .post-overlay {
    padding: 30px 25px;
  }

  .posts-slider .post-card .post-img .post-overlay .post-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .posts-slider .post-card .post-img .post-overlay {
    padding: 25px 20px;
  }

  .posts-slider .post-card .post-img .post-overlay .post-meta {
    gap: 15px;
    font-size: 13px;
  }

  .posts-slider .post-card .post-img .post-overlay .post-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .posts-slider .post-card .post-img .post-overlay .read-more {
    font-size: 14px;
    padding: 10px 20px;
  }

  .posts-slider .swiper-button-next,
  .posts-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .posts-slider .swiper-button-next::after,
  .posts-slider .swiper-button-prev::after {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Posts Slider 2 Section
--------------------------------------------------------------*/
.posts-slider-2 {
  position: relative;
  overflow: hidden;
}

.posts-slider-2 .swiper-wrapper {
  height: auto !important;
  margin-bottom: 20px;
}

.posts-slider-2 .swiper-button-prev,
.posts-slider-2 .swiper-button-next {
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
}

.posts-slider-2 .swiper-button-prev::after,
.posts-slider-2 .swiper-button-next::after {
  font-size: 20px;
}

.posts-slider-2 .swiper-button-prev:hover,
.posts-slider-2 .swiper-button-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.posts-slider-2 .post-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.posts-slider-2 .post-item:hover {
  transform: translateY(-5px);
}

.posts-slider-2 .post-item:hover .post-title {
  color: var(--accent-color);
}

.posts-slider-2 .post-item .post-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.posts-slider-2 .post-item .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.posts-slider-2 .post-item .post-img .post-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.posts-slider-2 .post-item .post-content {
  padding: 24px;
}

.posts-slider-2 .post-item .post-content .post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.posts-slider-2 .post-item .post-content .post-meta i {
  margin-right: 6px;
  font-size: 16px;
}

.posts-slider-2 .post-item .post-content .post-title {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 16px;
  transition: color 0.3s ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.posts-slider-2 .post-item .post-content .post-excerpt {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.posts-slider-2 .post-item .post-content .read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
}

.posts-slider-2 .post-item .post-content .read-more i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.posts-slider-2 .post-item .post-content .read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .posts-slider-2 .post-item .post-content {
    padding: 20px;
  }

  .posts-slider-2 .post-item .post-content .post-title {
    font-size: 18px;
  }

  .posts-slider-2 .post-item .post-content .post-excerpt {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-2 .container {
  max-width: 1280px;
}

.contact-2 .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-2 .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact-2 .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-2 .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact-2 .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact-2 .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact-2 .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact-2 .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-2 .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact-2 .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-2 .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-2 .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact-2 .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact-2 .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact-2 .social-links-panel {
  margin-top: 35px;
}

.contact-2 .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact-2 .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact-2 .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-2 .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact-2 .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-2 .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-2 .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact-2 .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact-2 .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact-2 .form-container .form-floating {
  margin-bottom: 20px;
}

.contact-2 .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact-2 .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact-2 .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact-2 .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact-2 .form-container .form-floating label::after {
  background-color: transparent;
}

.contact-2 .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-2 .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact-2 .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact-2 .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact-2 .contact-info-panel {
    padding: 30px 25px;
  }

  .contact-2 .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact-2 .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

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

.faq-3 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.faq-3 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

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

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

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

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

.faq-3 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

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

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

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

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

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

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

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

.faq-4 .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq-4 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.faq-4 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

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

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

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

.faq-4 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  overflow-x: hidden;
  padding: 40px 0;
  /* Responsive adjustments */
}

.clients .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.clients .clients-slider:not(:last-child) {
  margin-bottom: 20px;
}

.clients .clients-track {
  display: flex;
  width: fit-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.clients .clients-track.track-1 {
  animation-name: scroll-left;
}

.clients .clients-track.track-2 {
  animation-name: scroll-right;
}

.clients .clients-track:hover {
  animation-play-state: paused;
}

.clients .clients-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients .clients-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

.clients .clients-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clients .clients-slide:hover::before {
  left: 100%;
}

.clients .clients-slide:hover img {
  filter: none;
  opacity: 1;
}

.clients .clients-slide img {
  max-width: 80%;
  max-height: 60%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2080px);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-2080px);
  }

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

@media (max-width: 991px) {
  .clients .clients-slide {
    width: 180px;
    height: 90px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1760px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1760px);
    }

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

@media (max-width: 767px) {
  .clients .clients-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1440px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1440px);
    }

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

/*--------------------------------------------------------------
# Clients 2 Section
--------------------------------------------------------------*/
.clients-2 .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients-2 .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients-2 .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .clients-2 .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients-2 .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Clients 3 Section
--------------------------------------------------------------*/
.clients-3 .client-item {
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-3 .client-item img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}

.clients-3 .client-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.clients-3 .client-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 1199px) {
  .clients-3 .client-item {
    padding: 1.25rem;
  }
}

@media (max-width: 767px) {
  .clients-3 .client-item {
    padding: 1rem;
  }
}

/*--------------------------------------------------------------
# Clients 4 Section
--------------------------------------------------------------*/
.clients-4 .swiper {
  padding: 10px 0;
}

.clients-4 .swiper-wrapper {
  height: auto;
}

.clients-4 .swiper-slide img {
  transition: 0.3s;
}

.clients-4 .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact 4 Section
--------------------------------------------------------------*/
.contact-4 .container {
  max-width: 1280px;
}

.contact-4 .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-4 .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact-4 .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-4 .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact-4 .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact-4 .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact-4 .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact-4 .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-4 .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact-4 .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-4 .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-4 .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact-4 .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact-4 .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact-4 .social-links-panel {
  margin-top: 35px;
}

.contact-4 .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact-4 .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact-4 .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-4 .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact-4 .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-4 .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-4 .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact-4 .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact-4 .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact-4 .form-container .form-floating {
  margin-bottom: 20px;
}

.contact-4 .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact-4 .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact-4 .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact-4 .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact-4 .form-container .form-floating label::after {
  background-color: transparent;
}

.contact-4 .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-4 .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact-4 .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact-4 .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact-4 .contact-info-panel {
    padding: 30px 25px;
  }

  .contact-4 .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact-4 .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Cards 3 Section
--------------------------------------------------------------*/
.cards-3 .container-fluid {
  padding: 0;
}

.cards-3 .cards-slider {
  overflow: hidden;
}

.cards-3 .swiper-wrapper {
  height: auto !important;
  transition-timing-function: linear !important;
}

.cards-3 .card-item {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.cards-3 .card-item:hover .card-bg {
  transform: scale(1.1);
}

.cards-3 .card-item:hover .card-content {
  background: rgba(0, 0, 0, 0.7);
}

.cards-3 .card-item .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}

.cards-3 .card-item .card-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease-in-out;
}

.cards-3 .card-item:hover .card-bg::before {
  background: rgba(0, 0, 0, 0.2);
}

.cards-3 .card-item .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cards-3 .card-item .icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 24px;
}

.cards-3 .card-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 1199px) {
  .cards-3 .card-item {
    height: 350px;
  }

  .cards-3 .card-item .card-content {
    padding: 25px;
  }

  .cards-3 .card-item .icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .cards-3 .card-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .cards-3 .card-item {
    height: 300px;
  }

  .cards-3 .card-item .card-content {
    padding: 20px;
  }

  .cards-3 .card-item .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .cards-3 .card-item h3 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Cards 4 Section
--------------------------------------------------------------*/
.cards-4 .service-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
}

.cards-4 .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cards-4 .service-card:hover::before {
  transform: scaleX(1);
}

.cards-4 .service-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.cards-4 .service-card.featured::before {
  transform: scaleX(1);
}

.cards-4 .service-card.featured .icon-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
}

.cards-4 .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: var(--accent-color);
}

.cards-4 .service-card .card-header {
  padding: 25px 25px 15px;
  text-align: center;
}

.cards-4 .service-card .card-header .icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 32px;
  transition: all 0.3s ease;
}

.cards-4 .service-card .card-header h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
}

.cards-4 .service-card .card-body {
  padding: 0 25px 15px;
}

.cards-4 .service-card .card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  text-align: center;
}

.cards-4 .service-card .card-body .feature-image {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.cards-4 .service-card .card-body .feature-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 80%), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cards-4 .service-card .card-body .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cards-4 .service-card:hover .feature-image::before {
  opacity: 1;
}

.cards-4 .service-card:hover .feature-image img {
  transform: scale(1.1);
}

.cards-4 .service-card .card-footer {
  padding: 15px 25px 25px;
}

.cards-4 .service-card .card-footer .btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cards-4 .service-card .card-footer .btn-explore i {
  margin-left: 8px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cards-4 .service-card .card-footer .btn-explore:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.cards-4 .service-card .card-footer .btn-explore:hover i {
  transform: translate(3px, -3px);
}

.cards-4 .service-card.featured .btn-explore {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.cards-4 .service-card.featured .btn-explore:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  border-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
}

@media (max-width: 768px) {
  .cards-4 .service-card .card-header {
    padding: 20px 20px 10px;
  }

  .cards-4 .service-card .card-header .icon-box {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .cards-4 .service-card .card-header h4 {
    font-size: 16px;
  }

  .cards-4 .service-card .card-body {
    padding: 0 20px 10px;
  }

  .cards-4 .service-card .card-body .feature-image {
    height: 140px;
  }

  .cards-4 .service-card .card-footer {
    padding: 10px 20px 20px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

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

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

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

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 .service-item {
  height: 100%;
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.services-3 .service-item .img {
  overflow: hidden;
}

.services-3 .service-item .img img {
  transition: 0.6s;
}

.services-3 .service-item .details {
  padding: 25px;
}

.services-3 .service-item .details .icon {
  margin: 0 auto 20px auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.services-3 .service-item .details .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services-3 .service-item .details h3 {
  color: var(--heading-color);
  font-weight: 700;
  margin: 0 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
  text-align: center;
}

.services-3 .service-item .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: center;
}

.services-3 .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.15);
}

.services-3 .service-item:hover .img img {
  transform: scale(1.1);
}

.services-3 .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services-3 .service-item:hover .details .icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.services-3 .service-item:hover .details .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Cards 5 Section
--------------------------------------------------------------*/
.cards-5 .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 500px;
}

.cards-5 .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
  z-index: 2;
}

.cards-5 .card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cards-5 .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

.cards-5 .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
}

.cards-5 .card .card-body h3 a {
  color: var(--contrast-color);
}

.cards-5 .card .card-body .card-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.cards-5 .card .card-body .card-content p {
  font-size: 15px;
  padding-top: 10px;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--contrast-color);
}

.cards-5 .card:hover .card-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location .row {
  align-items: stretch;
}

.location .map-container {
  height: 100%;
  min-height: 450px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.location .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location .image-wrapper2 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.location .image-wrapper2:hover {
  transform: translateY(-5px);
}

.location .info-container {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.location .info-container .section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.location .info-container .section-header h2 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 2.2rem;
}

.location .info-container .section-header p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.location .info-card {
  display: flex;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.location .info-card:last-of-type {
  border-bottom: none;
}

.location .info-card .info-icon {
  flex-shrink: 0;
  margin-right: 1rem;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location .info-card .info-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.location .info-card .info-content h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.location .info-card .info-content p {
  margin-bottom: 0.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.location .info-card .info-content p.small-text {
  font-size: 0.85rem;
  font-style: italic;
}

.location .info-card .info-content .hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
}

.location .info-card .info-content .hours-grid .day {
  font-weight: 500;
}

.location .info-card .info-content .hours-grid .time {
  text-align: right;
}

.location .cta-wrapper {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

.location .cta-wrapper a {
  flex: 1;
  display: inline-block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location .cta-wrapper a.btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.location .cta-wrapper a.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.location .cta-wrapper a.btn-contact {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.location .cta-wrapper a.btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .location .info-container {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .location .cta-wrapper {
    flex-direction: column;
  }

  .location .hours-grid {
    grid-template-columns: 1fr !important;
  }

  .location .hours-grid .time {
    text-align: left !important;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Contact 3 Section
--------------------------------------------------------------*/
.contact-3 .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-3 .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-3 .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-3 .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact-3 .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-3 .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact-3 .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact-3 .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact-3 .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-3 .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact-3 .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-3 .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact-3 .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact-3 .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact-3 .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-3 .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact-3 .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-3 .contact-form-wrapper .loading,
.contact-3 .contact-form-wrapper .error-message,
.contact-3 .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact-3 .form-container-overlap {
    margin-top: -120px;
  }

  .contact-3 .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-3 .contact-info-box {
    margin-bottom: 20px;
  }

  .contact-3 .form-container-overlap {
    margin-top: -100px;
  }

  .contact-3 .contact-form-wrapper {
    padding: 25px;
  }

  .contact-3 .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact-3 .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact-3 .form-container-overlap {
    margin-top: -80px;
  }

  .contact-3 .contact-form-wrapper {
    padding: 20px;
  }

  .contact-3 .btn-submit {
    width: 100%;
  }

  .contact-3 .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Cards 6 Section
--------------------------------------------------------------*/
.cards-6 .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 500px;
}

.cards-6 .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
  z-index: 2;
}

.cards-6 .card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cards-6 .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

.cards-6 .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
}

.cards-6 .card .card-body h3 a {
  color: var(--contrast-color);
}

.cards-6 .card .card-body .card-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.cards-6 .card .card-body .card-content p {
  font-size: 15px;
  padding-top: 10px;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--contrast-color);
}

.cards-6 .card:hover .card-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

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

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Stats 2 Section
--------------------------------------------------------------*/
.stats-2 .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats-2 .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats-2 .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats-2 .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  position: relative;
  padding-top: 80px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

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

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

.hero-2 .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero-2 .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero-2 .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-2 .hero-content .hero-buttons {
    justify-content: center;
  }
}

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

.hero-2 .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero-2 .company-badge i {
  font-size: 1.25rem;
}

.hero-2 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-2 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero-2 .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-2 .btn-link:hover {
  color: var(--accent-color);
}

.hero-2 .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero-2 .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-2 .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-2 .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero-2 .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero-2 .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero-2 .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero-2 .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-2 .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero-2 .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero-2 .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero-2 .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero-2 .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero-2 .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero-2 .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero-2 .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero-2 .stat-item .stat-content {
  flex-grow: 1;
}

.hero-2 .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero-2 .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero-2 .stat-item {
    padding: 1.5rem;
  }
}

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

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

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

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

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

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

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

.hero-3 .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-3 .welcome p {
  font-size: 24px;
  margin: 0;
}

.hero-3 .content {
  margin-top: 40px;
}

.hero-3 .content .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  border-radius: 4px;
}

.hero-3 .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero-3 .content .why-box p {
  margin-bottom: 30px;
}

.hero-3 .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero-3 .content .why-box .more-btn i {
  font-size: 14px;
}

.hero-3 .content .why-box .more-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.hero-3 .content .icon-box {
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.hero-3 .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero-3 .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero-3 .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

@media (min-width: 1200px) {
  .hero-4:after {
    position: absolute;
    content: "";
    width: 44%;
    background-image: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 15%), color-mix(in srgb, var(--background-color), transparent 15%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%);
    top: 0;
    bottom: 0;
    z-index: 2;
  }
}

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

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

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

.hero-4 h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.hero-4 blockquote {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding-left: 20px;
  border-left: 2px solid var(--accent-color);
  margin: 40px 0;
}

.hero-4 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
}

.hero-4 .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

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

.hero-4 .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

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

.hero-4 .btn-watch-video:hover i {
  color: var(--default-color);
}

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

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

/*--------------------------------------------------------------
# Features 5 Section
--------------------------------------------------------------*/
.features-5 .features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.features-5 .feature-card {
  display: flex;
  gap: 2rem;
  position: relative;
  padding: 2.5rem;
  background: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  overflow: hidden;
}

.features-5 .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.features-5 .feature-card:hover .icon-wrapper img {
  transform: scale(1.1);
}

.features-5 .feature-card:hover .feature-number {
  color: var(--accent-color);
}

.features-5 .feature-card:nth-child(even) {
  flex-direction: row-reverse;
}

.features-5 .feature-card:nth-child(even) .content {
  text-align: right;
}

.features-5 .feature-card:nth-child(even) .feature-number {
  left: auto;
  right: 0;
}

.features-5 .icon-wrapper {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-5 .icon-wrapper img {
  max-width: 120px;
  transition: transform 0.4s ease-out;
}

.features-5 .content {
  flex: 1;
  position: relative;
}

.features-5 .content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
}

.features-5 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

.features-5 .feature-number {
  font-size: 5rem;
  font-weight: 800;
  position: absolute;
  top: -2.5rem;
  left: 0;
  opacity: 0.08;
  color: var(--heading-color);
  transition: color 0.3s ease;
  font-family: var(--heading-font);
  line-height: 1;
  z-index: 1;
}

@media (max-width: 991px) {
  .features-5 .feature-card {
    padding: 2rem;
    gap: 1.5rem;
  }

  .features-5 .feature-card .icon-wrapper {
    flex: 0 0 100px;
  }

  .features-5 .feature-card .icon-wrapper img {
    max-width: 100px;
  }

  .features-5 .feature-card .feature-number {
    font-size: 4rem;
    top: -2rem;
  }

  .features-5 .feature-card .content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {

  .features-5 .feature-card,
  .features-5 .feature-card:nth-child(even) {
    flex-direction: column;
    padding: 1.75rem;
  }

  .features-5 .feature-card .content,
  .features-5 .feature-card:nth-child(even) .content {
    text-align: center;
  }

  .features-5 .feature-card .icon-wrapper,
  .features-5 .feature-card:nth-child(even) .icon-wrapper {
    margin-bottom: 1rem;
  }

  .features-5 .feature-card .feature-number,
  .features-5 .feature-card:nth-child(even) .feature-number {
    font-size: 3.5rem;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.about-3 .image-wrapper:hover {
  transform: translateY(-5px);
}

.about-3 .content h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-3 .content h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  left: 0;
  bottom: -10px;
}

.about-3 .content h5 {
  font-weight: 500;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.about-3 .content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-3 .features-list {
  margin-top: 2rem;
}

.about-3 .features-list .feature-item {
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-3 .features-list .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-3 .features-list .feature-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.about-3 .features-list .feature-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-3 .features-list .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about-3 .signature-area .signature {
  max-width: 150px;
  height: auto;
  margin-bottom: 5px;
}

.about-3 .signature-area p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.about-3 .btn {
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-3 .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-3 .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.about-3 .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.about-3 .btn.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .about-3 .image-wrapper {
    margin-bottom: 2rem;
  }

  .about-3 .content {
    text-align: center;
  }

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

  .about-3 .signature-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .about-3 .features-list .feature-item {
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Services 4 Section
--------------------------------------------------------------*/
.services-4 .service-item {
  position: relative;
  padding-top: 40px;
}

.services-4 .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-4 .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-right: 5px solid var(--background-color);
}

.services-4 .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services-4 .service-item .icon i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services-4 .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.services-4 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services-4 .service-item .title a {
  color: var(--heading-color);
}

.services-4 .service-item .title a:hover {
  color: var(--accent-color);
}

.services-4 .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .small-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about .about-title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 1.6rem;
  }
}

.about .about-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .about .description-wrapper {
    border-left: 1px solid var(--accent-color);
    padding-left: 30px;
  }
}

.about .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about .content-card .card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.about .content-card .card-image img {
  transition: transform 0.5s ease;
}

.about .content-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about .content-card .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about .content-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
  flex: 1;
}

.about .content-card .card-content .read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about .content-card .card-content .read-more:hover {
  gap: 0.75rem;
}

.about .content-card .card-content .read-more:hover i {
  transform: translateX(5px);
}

.about .content-card .card-content .read-more i {
  transition: transform 0.3s ease;
}

.about .content-card:hover .card-image img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-2 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-2:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 25%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action-2 .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}


/*--------------------------------------------------------------
# Call To Action 9 Section
--------------------------------------------------------------*/
.call-to-action-9 .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.call-to-action-9 .cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.call-to-action-9 .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.call-to-action-9 .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
}

.call-to-action-9 .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.call-to-action-9 .cta-buttons .btn-primary {
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-9 .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action-9 .cta-buttons .btn-outline {
  padding: 0.8rem 2rem;
  background-color: transparent;
  color: var(--default-color);
  border: 2px solid var(--default-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-9 .cta-buttons .btn-outline:hover {
  background-color: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.call-to-action-9 .cta-image {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action-9 .cta-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.call-to-action-9 .cta-image img:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .call-to-action-9 .cta-wrapper {
    flex-direction: column;
    padding: 2.5rem;
  }

  .call-to-action-9 .cta-content {
    text-align: center;
  }

  .call-to-action-9 .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action-9 .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .call-to-action-9 .cta-buttons {
    justify-content: center;
  }

  .call-to-action-9 .cta-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .call-to-action-9 .cta-wrapper {
    padding: 2rem;
  }

  .call-to-action-9 .cta-content h2 {
    font-size: 1.8rem;
  }

  .call-to-action-9 .cta-content p {
    font-size: 1rem;
  }

  .call-to-action-9 .cta-buttons .btn-primary,
  .call-to-action-9 .cta-buttons .btn-outline {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}


/*--------------------------------------------------------------
# Team 2 Section
--------------------------------------------------------------*/
.team-2 .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

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

.team-2 .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/svg/wave.svg") no-repeat center bottom;
  mask: url("../img/svg/wave.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team-2 .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team-2 .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

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

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

.team-2 .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

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

.team-2 .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team-2 .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team-2 .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team-2 .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Team 3 Section
--------------------------------------------------------------*/
.team-3 .swiper-wrapper {
  height: auto !important;
}

.team-3 .team-slider {
  position: relative;
  padding: 20px 0 60px;
}

.team-3 .team-slider .swiper-pagination {
  bottom: 0;
}

.team-3 .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.team-3 .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.team-3 .team-slider .swiper-button-prev,
.team-3 .team-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.team-3 .team-slider .swiper-button-prev:after,
.team-3 .team-slider .swiper-button-next:after {
  font-size: 16px;
}

.team-3 .team-slider .swiper-button-prev:hover,
.team-3 .team-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.team-3 .team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  background-color: var(--surface-color);
  height: 100%;
}

.team-3 .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-3 .team-card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
}

.team-3 .team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-3 .team-image {
  position: relative;
  overflow: hidden;
}

.team-3 .team-image img {
  transition: transform 0.6s ease;
}

.team-3 .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.team-3 .team-image .social-links {
  display: flex;
  gap: 15px;
}

.team-3 .team-image .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: 0.3s;
}

.team-3 .team-image .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-5px);
}

.team-3 .team-content {
  padding: 20px;
  text-align: center;
}

.team-3 .team-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-3 .team-content span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.team-3 .team-content p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

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

/*--------------------------------------------------------------
# Features 14 Section
--------------------------------------------------------------*/
.features-14 h3 {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.features-14 .icon-box {
  margin-top: 50px;
}

.features-14 .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 0;
}

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

.features-14 .icon-box .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features-14 .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features-14 .icon-box .title a:hover {
  color: var(--accent-color);
}

.features-14 .icon-box .description {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.features-14 .video-box {
  min-height: 400px;
}

.features-14 .video-box img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features-14 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  z-index: 1;
}

/*--------------------------------------------------------------
# Cards 16 Section
--------------------------------------------------------------*/
.cards-16 .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cards-16 .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cards-16 .card-item:hover .card-img img {
  transform: scale(1.1);
}

.cards-16 .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cards-16 .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cards-16 .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cards-16 .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cards-16 .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards-16 .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cards-16 .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cards-16 .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards-16 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards-16 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cards-16 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.cards-16 .card-item .card-content {
  padding: 2rem;
}

.cards-16 .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards-16 .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cards-16 .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Events 3 Section
--------------------------------------------------------------*/
.events-3 .events-list {
  margin-bottom: 2rem;
}

.events-3 .events-list .event-item {
  display: flex;
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-3 .events-list .event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.events-3 .events-list .event-item .event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 0;
  text-align: center;
}

.events-3 .events-list .event-item .event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.events-3 .events-list .event-item .event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.events-3 .events-list .event-item .event-content {
  padding: 1.5rem;
  flex: 1;
}

.events-3 .events-list .event-item .event-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  font-weight: 600;
}

.events-3 .events-list .event-item .event-content .event-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.events-3 .events-list .event-item .event-content .event-meta i {
  margin-right: 0.25rem;
}

.events-3 .events-list .event-item .event-content .event-meta p {
  margin: 0;
}

.events-3 .events-list .event-item .event-content p {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.events-3 .events-list .event-item .event-content .btn-event {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--accent-color);
}

.events-3 .events-list .event-item .event-content .btn-event i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.events-3 .events-list .event-item .event-content .btn-event:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events-3 .events-list .event-item .event-content .btn-event:hover i {
  transform: translateX(5px);
}

@media (max-width: 576px) {
  .events-3 .events-list .event-item {
    flex-direction: column;
  }

  .events-3 .events-list .event-item .event-date {
    width: 100%;
    flex-direction: row;
    padding: 0.75rem;
  }

  .events-3 .events-list .event-item .event-date .day {
    margin-right: 0.5rem;
  }

  .events-3 .events-list .event-item .event-content .event-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.events-3 .pagination-wrapper {
  margin-top: 2rem;
}

.events-3 .pagination-wrapper .pagination .page-link {
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  transition: all 0.3s ease;
  margin: 0 3px;
  background-color: var(--background-color);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-3 .pagination-wrapper .pagination .page-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--accent-color);
}

.events-3 .pagination-wrapper .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.events-3 .pagination-wrapper .pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.events-3 .sidebar .sidebar-item {
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.events-3 .sidebar .sidebar-item .sidebar-title {
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
}

.events-3 .sidebar .sidebar-item .sidebar-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 60px;
  background: var(--accent-color);
}

.events-3 .sidebar .sidebar-item.featured-event .featured-event-content img {
  border-radius: 6px;
  margin-bottom: 1rem;
}

.events-3 .sidebar .sidebar-item.featured-event .featured-event-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.events-3 .sidebar .sidebar-item.featured-event .featured-event-content p {
  margin-bottom: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 0.95rem;
}

.events-3 .sidebar .sidebar-item.featured-event .featured-event-content p i {
  color: var(--accent-color);
  margin-right: 0.25rem;
}

.events-3 .sidebar .sidebar-item.featured-event .featured-event-content .btn-register {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 0.5rem;
}

.events-3 .sidebar .sidebar-item.featured-event .featured-event-content .btn-register:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.events-3 .sidebar .sidebar-item .categories ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.events-3 .sidebar .sidebar-item .categories ul li {
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.events-3 .sidebar .sidebar-item .categories ul li:last-child {
  border-bottom: none;
}

.events-3 .sidebar .sidebar-item .categories ul li a {
  display: flex;
  justify-content: space-between;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  padding: 0.75rem 0;
  transition: color 0.3s ease;
}

.events-3 .sidebar .sidebar-item .categories ul li a:hover {
  color: var(--accent-color);
}

.events-3 .sidebar .sidebar-item .categories ul li a span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-radius: 50px;
  padding: 0.15rem 0.5rem;
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
}

.events-3 .sidebar .sidebar-item .categories ul li a:hover span {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.events-3 .sidebar .event-calendar .calendar-header {
  margin-bottom: 0.75rem;
  text-align: center;
}

.events-3 .sidebar .event-calendar .calendar-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.events-3 .sidebar .event-calendar .calendar-body .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 85%);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.events-3 .sidebar .event-calendar .calendar-body .weekdays div {
  padding: 0.25rem;
}

.events-3 .sidebar .event-calendar .calendar-body .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.events-3 .sidebar .event-calendar .calendar-body .days .day {
  padding: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3px auto;
  transition: all 0.2s ease;
}

.events-3 .sidebar .event-calendar .calendar-body .days .day:hover:not(.other-month) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.events-3 .sidebar .event-calendar .calendar-body .days .day.has-event {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
}

.events-3 .sidebar .event-calendar .calendar-body .days .day.has-event:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events-3 .sidebar .event-calendar .calendar-body .days .day.other-month {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  cursor: default;
}

/*--------------------------------------------------------------
# Events 6 Section
--------------------------------------------------------------*/
.events-6 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.events-6 .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events-6 .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events-6 .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events-6 .card-body {
  z-index: 10;
  background: var(--background-color);
  border-top: 4px solid var(--background-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events-6 .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events-6 .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events-6 .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.events-6 .card:hover .card-body {
  border-color: var(--accent-color);
}

.events-6 .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Events 4 Section
--------------------------------------------------------------*/
.events-4 .section-title {
  margin-bottom: 3rem;
}

.events-4 .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.events-4 .section-title p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events-4 .event-filters .form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.events-4 .event-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.events-4 .event-card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.events-4 .event-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.events-4 .event-card .event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  min-width: 100px;
}

.events-4 .event-card .event-date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.events-4 .event-card .event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.5rem 0;
}

.events-4 .event-card .event-date .year {
  font-size: 0.9rem;
}

.events-4 .event-card .event-content {
  padding: 1.5rem;
  flex: 1;
}

.events-4 .event-card .event-content h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  font-weight: 600;
}

.events-4 .event-card .event-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.events-4 .event-card .event-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.events-4 .event-card .event-tag.academic {
  background-color: #e3f2fd;
  color: #0d47a1;
}

.events-4 .event-card .event-tag.sports {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.events-4 .event-card .event-tag.arts {
  background-color: #ffebee;
  color: #c62828;
}

.events-4 .event-card .event-tag.community {
  background-color: #fff3e0;
  color: #e65100;
}

.events-4 .event-card .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.events-4 .event-card .event-meta .meta-item {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.events-4 .event-card .event-meta .meta-item i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events-4 .event-card .event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.events-4 .event-card .event-actions .btn-learn-more {
  padding: 0.5rem 1.25rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
}

.events-4 .event-card .event-actions .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.events-4 .event-card .event-actions .btn-calendar {
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.events-4 .event-card .event-actions .btn-calendar i {
  margin-right: 0.3rem;
}

.events-4 .event-card .event-actions .btn-calendar:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.events-4 .btn-view-all {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.events-4 .btn-view-all:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .events-4 .event-card {
    flex-direction: column;
  }

  .events-4 .event-card .event-date {
    flex-direction: row;
    padding: 1rem;
    gap: 0.5rem;
    min-width: auto;
  }

  .events-4 .event-card .event-date .month,
  .events-4 .event-card .event-date .day,
  .events-4 .event-card .event-date .year {
    margin: 0;
  }

  .events-4 .event-card .event-date .day {
    font-size: 1.5rem;
    margin: 0 0.3rem;
  }

  .events-4 .event-actions {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# About Me 2 Section
--------------------------------------------------------------*/
.about-me-2 .about-img {
  position: relative;
}

.about-me-2 .about-img .img-wrapper {
  position: relative;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 15px;
}

.about-me-2 .about-img .img-wrapper img {
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.about-me-2 .about-img .img-wrapper img:hover {
  transform: scale(1.02);
}

.about-me-2 .content .section-header {
  margin-bottom: 30px;
}

.about-me-2 .content .section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-me-2 .content .section-header p {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
}

.about-me-2 .content .about-content .bio-text .lead {
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 0;
}

.about-me-2 .content .about-content .bio-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
}

.about-me-2 .content .about-content .info-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-me-2 .content .about-content .info-list .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.about-me-2 .content .about-content .info-list .info-item:hover {
  transform: translateY(-3px);
}

.about-me-2 .content .about-content .info-list .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.about-me-2 .content .about-content .info-list .info-item h5 {
  font-size: 16px;
  margin: 0 0 5px;
  font-weight: 600;
  color: var(--heading-color);
}

.about-me-2 .content .about-content .info-list .info-item p {
  margin: 0;
  font-size: 15px;
  color: var(--default-color);
}

.about-me-2 .content .about-content .social-links {
  text-align: center;
}

.about-me-2 .content .about-content .social-links .links-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-me-2 .content .about-content .social-links .links-wrapper a {
  color: var(--heading-color);
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-me-2 .content .about-content .social-links .links-wrapper a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .about-me-2 .about-img {
    margin-bottom: 30px;
  }

  .about-me-2 .content .about-content .info-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-me-2 .content .section-header h2 {
    font-size: 28px;
  }

  .about-me-2 .content .section-header p {
    font-size: 16px;
  }

  .about-me-2 .content .about-content .bio-text .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .about-me-2 .about-img .img-wrapper .social-links {
    padding: 12px 20px;
    gap: 12px;
  }

  .about-me-2 .about-img .img-wrapper .social-links a {
    font-size: 16px;
    width: 32px;
    height: 32px;
  }

  .about-me-2 .content .about-content .info-list {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Featured Programs Section
--------------------------------------------------------------*/
.featured-programs .program-card {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--surface-color);
}

.featured-programs .program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}

.featured-programs .program-card:hover .program-overlay {
  opacity: 1;
}

.featured-programs .program-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.featured-programs .program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-programs .program-img:hover img {
  transform: scale(1.1);
}

.featured-programs .program-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-programs .btn-explore {
  padding: 8px 20px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.featured-programs .btn-explore:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.featured-programs .program-content {
  padding: 25px 20px;
}

.featured-programs .program-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.featured-programs .program-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.featured-programs .program-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.featured-programs .program-meta span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  display: flex;
  align-items: center;
}

.featured-programs .program-meta span i {
  margin-right: 5px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .featured-programs .program-img {
    height: 180px;
  }

  .featured-programs .program-content {
    padding: 20px 15px;
  }

  .featured-programs .program-content h3 {
    font-size: 1.2rem;
  }

  .featured-programs .program-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/*--------------------------------------------------------------
# Cards 7 Section
--------------------------------------------------------------*/
.cards-7 .card-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.cards-7 .card-item .card-bg {
  min-height: 300px;
  position: relative;
}

.cards-7 .card-item .card-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.cards-7 .card-item .card-body {
  padding: 30px;
}

.cards-7 .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.cards-7 .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

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

.faq-5 .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

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

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

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

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

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

.faq-5 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

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

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

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

.faq-5 .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

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

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

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

/*--------------------------------------------------------------
# Faq 6 Section
--------------------------------------------------------------*/
.faq-6 .faq-sidebar {
  position: sticky;
  top: 100px;
}

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

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

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

.faq-6 .faq-sidebar .contact-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 14px;
  padding: 30px;
}

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

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

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

.faq-6 .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-6 .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-6 .faq-tabs .nav-pills {
  gap: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 15px;
}

.faq-6 .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-6 .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-6 .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-6 .faq-tabs .tab-content {
  padding-top: 25px;
}

.faq-6 .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-6 .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

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

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

.faq-6 .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-6 .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# About 7 Section
--------------------------------------------------------------*/
.about-7 .section-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.about-7 .section-intro .subtitle {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-7 .section-intro .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-7 .section-intro .title {
    font-size: 3rem;
  }
}

.about-7 .section-intro .desc {
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-7 .highlight-cards {
  margin-top: 5rem;
}

.about-7 .highlight-cards .highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 350px;
}

.about-7 .highlight-cards .highlight-card.elevated {
  transform: translateY(2rem);
}

@media (max-width: 768px) {
  .about-7 .highlight-cards .highlight-card.elevated {
    transform: translateY(0);
  }
}

.about-7 .highlight-cards .highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-7 .highlight-cards .highlight-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.about-7 .highlight-cards .highlight-card .card-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  transition: transform 0.3s ease;
}

.about-7 .highlight-cards .highlight-card .card-content .card-title {
  color: var(--contrast-color);
  font-size: 1.25rem;
  font-weight: 600;
}

.about-7 .highlight-cards .highlight-card:hover img {
  transform: scale(1.1);
}

.about-7 .highlight-cards .highlight-card:hover .card-content {
  transform: translateY(-5px);
}

.about-7 .values-section {
  margin-top: 6rem;
}

.about-7 .values-section .values-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-7 .values-section .values-image img {
  width: 100%;
  transition: transform 0.7s ease;
}

.about-7 .values-section .values-image:hover img {
  transform: scale(1.05);
}

.about-7 .values-section .values-content {
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .about-7 .values-section .values-content {
    padding: 0 0 0 2rem;
  }
}

.about-7 .values-section .values-content .values-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-7 .values-section .values-content .values-title {
    font-size: 2.25rem;
  }
}

.about-7 .values-section .values-content .values-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-7 .values-section .values-content .values-list .value-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.about-7 .values-section .values-content .values-list .value-item .value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.about-7 .values-section .values-content .values-list .value-item .value-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-7 .values-section .values-content .values-list .value-item .value-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline;
}

.about-7 .values-section .values-content .values-list .value-item .value-text p {
  display: inline;
  margin-left: 0.5rem;
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about-2 .content ul {
  list-style: none;
  padding: 0;
}

.about-2 .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about-2 .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

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

.about-2 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Slider 6 Section
--------------------------------------------------------------*/
.slider-6 .img-bg {
  min-height: 500px;
  position: relative;
}

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

.slider-6 .slides {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.slider-6 h3 {
  font-size: 24px;
  font-weight: 700;
}

.slider-6 h4 {
  font-size: 18px;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.slider-6 .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.slider-6 .swiper-wrapper {
  height: auto;
}

.slider-6 .swiper-button-prev:after,
.slider-6 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider-6 .swiper-button-prev {
  left: 80px;
}

.slider-6 .swiper-button-next {
  right: 80px;
}

.slider-6 .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.slider-6 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

@media (max-width: 1200px) {
  .slider-6 .swiper {
    margin: 60px 60px 40px 60px;
  }

  .slider-6 .swiper-button-prev,
  .slider-6 .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .slider-6 .swiper {
    margin: 40px 40px 20px 40px;
  }
}

/*--------------------------------------------------------------
# Features 10 Section
--------------------------------------------------------------*/
.features-10 h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features-10 .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1;
}

.features-10 .icon-list span {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-10 .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features-10 .phone-wrap {
    position: relative;
  }
}

.features-10 .phone-wrap img {
  width: 340px;
}

@media (max-width: 992px) {
  .features-10 .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features-10 .phone-wrap img {
    width: 100%;
  }
}

.features-10 .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.features-10 .details h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-10 .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features-10 .details .btn-get-started {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-family: var(--heading-font);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
}

.features-10 .details .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Call To Action 3 Section
--------------------------------------------------------------*/
.call-to-action-3 {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-3 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-3:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action-3 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-3 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-3 p {
  color: var(--default-color);
}

.call-to-action-3 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action-3 .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery 4 Section
--------------------------------------------------------------*/
.gallery-4 .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery-4 .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery-4 .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Cards 9 Section
--------------------------------------------------------------*/
.cards-9 .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%;
}

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

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

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

.cards-9 .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.cards-9 .card a:hover {
  color: var(--accent-color);
}

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

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

/*--------------------------------------------------------------
# Events 8 Section
--------------------------------------------------------------*/
.events-8 .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events-8 .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events-8 .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events-8 .card-body {
  z-index: 10;
  background: var(--background-color);
  border-top: 4px solid var(--background-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events-8 .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events-8 .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events-8 .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.events-8 .card:hover .card-body {
  border-color: var(--accent-color);
}

.events-8 .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 5 Section
--------------------------------------------------------------*/
.services-5 .img {
  border-radius: 8px;
  overflow: hidden;
}

.services-5 .img img {
  transition: 0.6s;
}

.services-5 .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services-5 .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services-5 .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-5 .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services-5 .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Features 7 Section
--------------------------------------------------------------*/
.features-7 .feature-item {
  padding: 5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-7 .feature-item:first-child {
  padding-top: 2rem;
}

.features-7 .feature-item:last-child {
  border-bottom: none;
  padding-bottom: 2rem;
}

.features-7 .feature-content {
  padding-right: 3rem;
}

.order-lg-2 .features-7 .feature-content {
  padding-right: 0;
  padding-left: 3rem;
}

.features-7 .feature-content .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  color: var(--contrast-color);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.features-7 .feature-content .icon i {
  font-size: 1.5rem;
}

.features-7 .feature-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.features-7 .feature-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.features-7 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-7 .feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.features-7 .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.features-7 .feature-list li:last-child {
  margin-bottom: 0;
}

.features-7 .feature-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-7 .feature-image img {
  width: 100%;
  transition: transform 0.6s ease;
}

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

@media (max-width: 991px) {
  .features-7 .feature-item {
    padding: 3rem 0;
  }

  .features-7 .feature-content {
    padding: 0 0 2rem 0;
    text-align: center;
  }

  .order-lg-2 .features-7 .feature-content {
    padding: 0 0 2rem 0;
  }

  .features-7 .feature-content h3 {
    font-size: 1.75rem;
  }

  .features-7 .feature-content .icon {
    margin: 0 auto 1.5rem;
  }

  .features-7 .feature-list li {
    justify-content: center;
  }

  .features-7 .feature-image {
    margin: 0 auto;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .features-7 .feature-item {
    padding: 2.5rem 0;
  }

  .features-7 .feature-content h3 {
    font-size: 1.5rem;
  }

  .features-7 .feature-content p {
    font-size: 1rem;
  }

  .features-7 .feature-list li {
    font-size: 1rem;
  }
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Tabs 7 Section
--------------------------------------------------------------*/
.tabs-7 .nav-tabs {
  border: none;
  border-right: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  padding: 0;
}

.tabs-7 .nav-tabs .nav-item {
  margin: 15px 0;
}

.tabs-7 .nav-tabs .nav-link {
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  color: var(--default-color);
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

.tabs-7 .nav-tabs .nav-link .d-flex {
  gap: 15px;
}

.tabs-7 .nav-tabs .nav-link i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.tabs-7 .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: 0.3s;
}

.tabs-7 .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs-7 .nav-tabs .nav-link:hover i {
  color: var(--accent-color);
}

.tabs-7 .nav-tabs .nav-link.active {
  color: var(--accent-color);
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.tabs-7 .nav-tabs .nav-link.active i {
  color: var(--accent-color);
}

.tabs-7 .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
}

@media (max-width: 991px) {
  .tabs-7 .nav-tabs {
    border-right: none;
    border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 30px;
    padding: 0;
  }

  .tabs-7 .nav-tabs .nav-item {
    margin: 8px 0;
  }

  .tabs-7 .nav-tabs .nav-link {
    padding: 10px 15px;
  }

  .tabs-7 .nav-tabs .nav-link.active::after {
    right: 0;
    bottom: -3px;
    top: auto;
    height: 3px;
    width: 100%;
  }
}

.tabs-7 .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.tabs-7 .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.tabs-7 .tab-content p.fst-italic {
  font-style: italic;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
  position: relative;
}

.tabs-7 .tab-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.tabs-7 .tab-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-7 .tab-content ul li i {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 18px;
  color: var(--accent-color);
}

.tabs-7 .tab-content img {
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tabs-7 .tab-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }

  .tabs-7 .tab-content img {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Location 2 Section
--------------------------------------------------------------*/
.location-2 .row {
  align-items: stretch;
}

.location-2 .map-container {
  height: 100%;
  min-height: 450px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.location-2 .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-2 .info-container {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.location-2 .info-container .section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.location-2 .info-container .section-header h2 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 2.2rem;
}

.location-2 .info-container .section-header p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.location-2 .info-card {
  display: flex;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.location-2 .info-card:last-of-type {
  border-bottom: none;
}

.location-2 .info-card .info-icon {
  flex-shrink: 0;
  margin-right: 1rem;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-2 .info-card .info-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.location-2 .info-card .info-content h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.location-2 .info-card .info-content p {
  margin-bottom: 0.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.location-2 .info-card .info-content p.small-text {
  font-size: 0.85rem;
  font-style: italic;
}

.location-2 .info-card .info-content .hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
}

.location-2 .info-card .info-content .hours-grid .day {
  font-weight: 500;
}

.location-2 .info-card .info-content .hours-grid .time {
  text-align: right;
}

.location-2 .cta-wrapper {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

.location-2 .cta-wrapper a {
  flex: 1;
  display: inline-block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location-2 .cta-wrapper a.btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.location-2 .cta-wrapper a.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.location-2 .cta-wrapper a.btn-contact {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.location-2 .cta-wrapper a.btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .location-2 .info-container {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .location-2 .cta-wrapper {
    flex-direction: column;
  }

  .location-2 .hours-grid {
    grid-template-columns: 1fr !important;
  }

  .location-2 .hours-grid .time {
    text-align: left !important;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Team 5 Section
--------------------------------------------------------------*/
.team-5 .row {
  align-items: center;
}

@media (max-width: 991px) {
  .team-5 .team-intro {
    margin-bottom: 40px;
  }
}

.team-5 .team-intro .team-intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.team-5 .team-intro .team-intro-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.team-5 .team-intro .team-intro-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.team-5 .team-intro .team-intro-content p {
  margin-bottom: 30px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team-5 .team-intro .team-navigation {
  display: flex;
  gap: 10px;
}

.team-5 .team-intro .team-navigation button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-5 .team-intro .team-navigation button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.team-5 .member-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-5 .member-card:hover {
  transform: translateY(-10px);
}

.team-5 .member-card:hover .member-image:before {
  opacity: 0.7;
}

.team-5 .member-card .member-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.team-5 .member-card .member-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team-5 .member-card .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-5 .member-card .member-image:hover img {
  transform: scale(1.05);
}

.team-5 .member-card .member-info {
  padding: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-5 .member-card .member-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-5 .member-card .member-info span {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.team-5 .member-card .member-social {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.team-5 .member-card .member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team-5 .member-card .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team-5 .member-card .member-bio p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.team-5 .team-carousel-wrap {
  overflow-x: hidden;
  padding: 30px 20px;
}

.team-5 .team-carousel {
  overflow: visible;
}

.team-5 .team-carousel .swiper-slide {
  height: auto;
}

/*--------------------------------------------------------------
# Cards 11 Section
--------------------------------------------------------------*/
.cards-11 .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.cards-11 .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.cards-11 .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards-11 .card-item h4 a {
  color: var(--heading-color);
}

.cards-11 .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.cards-11 .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.cards-11 .card-item:hover span,
.cards-11 .card-item:hover h4 a,
.cards-11 .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Team 4 Section
--------------------------------------------------------------*/
.team-4 .swiper-wrapper {
  height: auto !important;
}

.team-4 .team-slider {
  position: relative;
  padding: 20px 0 60px;
}

.team-4 .team-slider .swiper-pagination {
  bottom: 0;
}

.team-4 .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.team-4 .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.team-4 .team-slider .swiper-button-prev,
.team-4 .team-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.team-4 .team-slider .swiper-button-prev:after,
.team-4 .team-slider .swiper-button-next:after {
  font-size: 16px;
}

.team-4 .team-slider .swiper-button-prev:hover,
.team-4 .team-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.team-4 .team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  background-color: var(--surface-color);
  height: 100%;
}

.team-4 .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-4 .team-card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
}

.team-4 .team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-4 .team-image {
  position: relative;
  overflow: hidden;
}

.team-4 .team-image img {
  transition: transform 0.6s ease;
}

.team-4 .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.team-4 .team-image .social-links {
  display: flex;
  gap: 15px;
}

.team-4 .team-image .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: 0.3s;
}

.team-4 .team-image .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-5px);
}

.team-4 .team-content {
  padding: 20px;
  text-align: center;
}

.team-4 .team-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-4 .team-content span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.team-4 .team-content p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 991px) {
  .team-4 .team-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Cards 8 Section
--------------------------------------------------------------*/
.cards-8 .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cards-8 .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cards-8 .card-item:hover .card-img img {
  transform: scale(1.1);
}

.cards-8 .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cards-8 .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cards-8 .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cards-8 .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cards-8 .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards-8 .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cards-8 .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cards-8 .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards-8 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards-8 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cards-8 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.cards-8 .card-item .card-content {
  padding: 2rem;
}

.cards-8 .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards-8 .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cards-8 .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cards 10 Section
--------------------------------------------------------------*/
.cards-10 .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cards-10 .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cards-10 .card-item:hover .card-img img {
  transform: scale(1.1);
}

.cards-10 .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cards-10 .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cards-10 .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cards-10 .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cards-10 .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards-10 .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cards-10 .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cards-10 .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards-10 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards-10 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cards-10 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.cards-10 .card-item .card-content {
  padding: 2rem;
}

.cards-10 .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards-10 .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cards-10 .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Slider 4 Section
--------------------------------------------------------------*/
.slider-4 .img-bg {
  min-height: 500px;
  position: relative;
}

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

.slider-4 .slides {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.slider-4 h3 {
  font-size: 24px;
  font-weight: 700;
}

.slider-4 h4 {
  font-size: 18px;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.slider-4 .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.slider-4 .swiper-wrapper {
  height: auto;
}

.slider-4 .swiper-button-prev:after,
.slider-4 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider-4 .swiper-button-prev {
  left: 80px;
}

.slider-4 .swiper-button-next {
  right: 80px;
}

.slider-4 .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.slider-4 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

@media (max-width: 1200px) {
  .slider-4 .swiper {
    margin: 60px 60px 40px 60px;
  }

  .slider-4 .swiper-button-prev,
  .slider-4 .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .slider-4 .swiper {
    margin: 40px 40px 20px 40px;
  }
}

/*--------------------------------------------------------------
# Tabs 8 Section
--------------------------------------------------------------*/
.tabs-8 .nav-tabs {
  border: none;
  border-right: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  padding: 0;
}

.tabs-8 .nav-tabs .nav-item {
  margin: 15px 0;
}

.tabs-8 .nav-tabs .nav-link {
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  color: var(--default-color);
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

.tabs-8 .nav-tabs .nav-link .d-flex {
  gap: 15px;
}

.tabs-8 .nav-tabs .nav-link i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.tabs-8 .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: 0.3s;
}

.tabs-8 .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs-8 .nav-tabs .nav-link:hover i {
  color: var(--accent-color);
}

.tabs-8 .nav-tabs .nav-link.active {
  color: var(--accent-color);
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.tabs-8 .nav-tabs .nav-link.active i {
  color: var(--accent-color);
}

.tabs-8 .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
}

@media (max-width: 991px) {
  .tabs-8 .nav-tabs {
    border-right: none;
    border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 30px;
    padding: 0;
  }

  .tabs-8 .nav-tabs .nav-item {
    margin: 8px 0;
  }

  .tabs-8 .nav-tabs .nav-link {
    padding: 10px 15px;
  }

  .tabs-8 .nav-tabs .nav-link.active::after {
    right: 0;
    bottom: -3px;
    top: auto;
    height: 3px;
    width: 100%;
  }
}

.tabs-8 .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.tabs-8 .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.tabs-8 .tab-content p.fst-italic {
  font-style: italic;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
  position: relative;
}

.tabs-8 .tab-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.tabs-8 .tab-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-8 .tab-content ul li i {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 18px;
  color: var(--accent-color);
}

.tabs-8 .tab-content img {
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tabs-8 .tab-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }

  .tabs-8 .tab-content img {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Events 5 Section
--------------------------------------------------------------*/
.events-5 .details h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.events-5 .details .social {
  margin-bottom: 15px;
}

.events-5 .details .social a {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.events-5 .details .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.events-5 .details .social a i {
  font-size: 16px;
  line-height: 0;
}

.events-5 .details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Events 7 Section
--------------------------------------------------------------*/
.events-7 .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events-7 .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events-7 .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events-7 .card-body {
  z-index: 10;
  background: var(--background-color);
  border-top: 4px solid var(--background-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events-7 .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events-7 .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events-7 .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.events-7 .card:hover .card-body {
  border-color: var(--accent-color);
}

.events-7 .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact 5 Section
--------------------------------------------------------------*/
.contact-5 .container {
  max-width: 1280px;
}

.contact-5 .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-5 .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact-5 .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-5 .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact-5 .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact-5 .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact-5 .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact-5 .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-5 .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact-5 .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-5 .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-5 .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact-5 .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact-5 .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact-5 .social-links-panel {
  margin-top: 35px;
}

.contact-5 .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact-5 .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact-5 .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-5 .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact-5 .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-5 .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-5 .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact-5 .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

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

.contact-5 .form-container .form-floating {
  margin-bottom: 20px;
}

.contact-5 .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact-5 .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact-5 .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact-5 .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact-5 .form-container .form-floating label::after {
  background-color: transparent;
}

.contact-5 .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-5 .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact-5 .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact-5 .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact-5 .contact-info-panel {
    padding: 30px 25px;
  }

  .contact-5 .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact-5 .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Call To Action 4 Section
--------------------------------------------------------------*/
.call-to-action-4 .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.call-to-action-4 .image-wrapper img {
  transition: transform 0.5s ease;
}

.call-to-action-4 .image-wrapper img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .call-to-action-4 .image-wrapper {
    margin-bottom: 30px;
  }
}

.call-to-action-4 .content-wrapper {
  padding: 20px;
}

.call-to-action-4 .content-wrapper h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .call-to-action-4 .content-wrapper h2 {
    font-size: 2rem;
  }
}

.call-to-action-4 .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.call-to-action-4 .features {
  margin-bottom: 35px;
}

.call-to-action-4 .features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.call-to-action-4 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 10px;
}

.call-to-action-4 .features .feature-item span {
  font-size: 1.05rem;
}

.call-to-action-4 .cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action-4 .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.call-to-action-4 .cta-actions .primary-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-4 .cta-actions .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.call-to-action-4 .cta-actions .secondary-btn {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-4 .cta-actions .secondary-btn i {
  font-size: 2rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.call-to-action-4 .cta-actions .secondary-btn:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Tabs 10 Section
--------------------------------------------------------------*/
.tabs-10 .nav-tabs {
  border: none;
  border-right: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  padding: 0;
}

.tabs-10 .nav-tabs .nav-item {
  margin: 15px 0;
}

.tabs-10 .nav-tabs .nav-link {
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  color: var(--default-color);
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

.tabs-10 .nav-tabs .nav-link .d-flex {
  gap: 15px;
}

.tabs-10 .nav-tabs .nav-link i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.tabs-10 .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: 0.3s;
}

.tabs-10 .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs-10 .nav-tabs .nav-link:hover i {
  color: var(--accent-color);
}

.tabs-10 .nav-tabs .nav-link.active {
  color: var(--accent-color);
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.tabs-10 .nav-tabs .nav-link.active i {
  color: var(--accent-color);
}

.tabs-10 .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
}

@media (max-width: 991px) {
  .tabs-10 .nav-tabs {
    border-right: none;
    border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 30px;
    padding: 0;
  }

  .tabs-10 .nav-tabs .nav-item {
    margin: 8px 0;
  }

  .tabs-10 .nav-tabs .nav-link {
    padding: 10px 15px;
  }

  .tabs-10 .nav-tabs .nav-link.active::after {
    right: 0;
    bottom: -3px;
    top: auto;
    height: 3px;
    width: 100%;
  }
}

.tabs-10 .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.tabs-10 .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.tabs-10 .tab-content p.fst-italic {
  font-style: italic;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
  position: relative;
}

.tabs-10 .tab-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.tabs-10 .tab-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-10 .tab-content ul li i {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 18px;
  color: var(--accent-color);
}

.tabs-10 .tab-content img {
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tabs-10 .tab-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }

  .tabs-10 .tab-content img {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Faq 7 Section
--------------------------------------------------------------*/
.faq-7 .faq-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-7 .faq-item:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-7 .faq-item .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
}

.faq-7 .faq-item .faq-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  flex: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.faq-7 .faq-item .faq-header .faq-toggle {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-7 .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq-7 .faq-item .faq-content p {
  padding: 0 25px 20px;
  margin: 0;
  line-height: 1.6;
  color: var(--default-color);
  font-size: 15px;
}

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

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

.faq-7 .faq-item.faq-active .faq-content {
  max-height: 300px;
  overflow: auto;
}

.faq-7 .faq-contact-card {
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  color: var(--contrast-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-7 .faq-contact-card .card-icon {
  margin-bottom: 20px;
}

.faq-7 .faq-contact-card .card-icon i {
  font-size: 48px;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.faq-7 .faq-contact-card .card-content h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-7 .faq-contact-card .card-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.faq-7 .faq-contact-card .contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: auto;
}

.faq-7 .faq-contact-card .contact-options .contact-option {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 8px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.faq-7 .faq-contact-card .contact-options .contact-option:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
}

.faq-7 .faq-contact-card .contact-options .contact-option i {
  font-size: 20px;
  margin-right: 12px;
}

.faq-7 .faq-contact-card .contact-options .contact-option span {
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 991px) {
  .faq-7 .row {
    flex-direction: column-reverse;
  }

  .faq-7 .faq-contact-card {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .faq-7 .faq-item .faq-header {
    padding: 15px 20px;
  }

  .faq-7 .faq-item .faq-header h3 {
    font-size: 16px;
  }

  .faq-7 .faq-item .faq-content p {
    padding: 0 20px 15px;
    font-size: 14px;
  }

  .faq-7 .faq-contact-card {
    padding: 30px 20px;
  }

  .faq-7 .faq-contact-card .card-icon i {
    font-size: 40px;
  }

  .faq-7 .faq-contact-card .card-content h3 {
    font-size: 24px;
  }

  .faq-7 .faq-contact-card .card-content p {
    font-size: 15px;
  }

  .faq-7 .faq-contact-card .contact-options .contact-option {
    padding: 12px 15px;
  }

  .faq-7 .faq-contact-card .contact-options .contact-option i {
    font-size: 18px;
  }

  .faq-7 .faq-contact-card .contact-options .contact-option span {
    font-size: 15px;
  }
}

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

.faq-8 .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

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

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

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

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

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

.faq-8 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

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

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

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

.faq-8 .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

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

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

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

/*--------------------------------------------------------------
# Pricing 4 Section
--------------------------------------------------------------*/
.pricing-4 .pricing-card {
  height: 100%;
  padding: 32px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.pricing-4 .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.pricing-4 .pricing-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.pricing-4 .pricing-card.featured .featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-4 .pricing-card.featured .featured-label i {
  margin-right: 4px;
}

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

.pricing-4 .pricing-card.featured .btn-pricing:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.pricing-4 .pricing-header {
  text-align: left;
  margin-bottom: 24px;
}

.pricing-4 .pricing-header h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.pricing-4 .pricing-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin: 0;
}

.pricing-4 .pricing-price {
  margin-bottom: 24px;
}

.pricing-4 .pricing-price .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
}

.pricing-4 .pricing-price .price sup {
  font-size: 20px;
  font-weight: 600;
  top: -0.5em;
}

.pricing-4 .pricing-price .price i {
  font-size: 32px;
  color: var(--heading-color);
}

.pricing-4 .pricing-price .price span {
  font-size: 14px;
  font-weight: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 8px;
}

.pricing-4 .pricing-cta {
  margin-bottom: 32px;
}

.pricing-4 .pricing-cta .btn-pricing {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

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

.pricing-4 .pricing-features h4 {
  font-size: 15px;
  margin-bottom: 16px;
}

.pricing-4 .pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-4 .pricing-features ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 12px;
}

.pricing-4 .pricing-features ul li i {
  color: var(--accent-color);
  font-size: 16px;
  margin-top: 2px;
}

.pricing-4 .pricing-features ul li .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

@media (max-width: 991px) {
  .pricing-4 .pricing-card {
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------------------
# Features 12 Section
--------------------------------------------------------------*/
.features-12 h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features-12 .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1;
}

.features-12 .icon-list span {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-12 .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features-12 .phone-wrap {
    position: relative;
  }
}

.features-12 .phone-wrap img {
  width: 340px;
}

@media (max-width: 992px) {
  .features-12 .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features-12 .phone-wrap img {
    width: 100%;
  }
}

.features-12 .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.features-12 .details h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-12 .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features-12 .details .btn-get-started {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-family: var(--heading-font);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
}

.features-12 .details .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Tabs 11 Section
--------------------------------------------------------------*/
.tabs-11 .nav-tabs {
  border: none;
  border-right: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  padding: 0;
}

.tabs-11 .nav-tabs .nav-item {
  margin: 15px 0;
}

.tabs-11 .nav-tabs .nav-link {
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  color: var(--default-color);
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

.tabs-11 .nav-tabs .nav-link .d-flex {
  gap: 15px;
}

.tabs-11 .nav-tabs .nav-link i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.tabs-11 .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: 0.3s;
}

.tabs-11 .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs-11 .nav-tabs .nav-link:hover i {
  color: var(--accent-color);
}

.tabs-11 .nav-tabs .nav-link.active {
  color: var(--accent-color);
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.tabs-11 .nav-tabs .nav-link.active i {
  color: var(--accent-color);
}

.tabs-11 .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
}

@media (max-width: 991px) {
  .tabs-11 .nav-tabs {
    border-right: none;
    border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 30px;
    padding: 0;
  }

  .tabs-11 .nav-tabs .nav-item {
    margin: 8px 0;
  }

  .tabs-11 .nav-tabs .nav-link {
    padding: 10px 15px;
  }

  .tabs-11 .nav-tabs .nav-link.active::after {
    right: 0;
    bottom: -3px;
    top: auto;
    height: 3px;
    width: 100%;
  }
}

.tabs-11 .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.tabs-11 .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.tabs-11 .tab-content p.fst-italic {
  font-style: italic;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
  position: relative;
}

.tabs-11 .tab-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.tabs-11 .tab-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-11 .tab-content ul li i {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 18px;
  color: var(--accent-color);
}

.tabs-11 .tab-content img {
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tabs-11 .tab-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }

  .tabs-11 .tab-content img {
    margin-bottom: 30px;
  }
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Team 6 Section
--------------------------------------------------------------*/
.team-6 .row {
  align-items: center;
}

@media (max-width: 991px) {
  .team-6 .team-intro {
    margin-bottom: 40px;
  }
}

.team-6 .team-intro .team-intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.team-6 .team-intro .team-intro-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.team-6 .team-intro .team-intro-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.team-6 .team-intro .team-intro-content p {
  margin-bottom: 30px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team-6 .team-intro .team-navigation {
  display: flex;
  gap: 10px;
}

.team-6 .team-intro .team-navigation button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-6 .team-intro .team-navigation button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.team-6 .member-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-6 .member-card:hover {
  transform: translateY(-10px);
}

.team-6 .member-card:hover .member-image:before {
  opacity: 0.7;
}

.team-6 .member-card .member-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.team-6 .member-card .member-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team-6 .member-card .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-6 .member-card .member-image:hover img {
  transform: scale(1.05);
}

.team-6 .member-card .member-info {
  padding: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-6 .member-card .member-info h3 {
  color: var(--default-color);
	font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-6 .member-card .member-info span {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

/*------------------------------*/
.team-6 .member-card .member-info h3:hover {
  color: var(--accent-color);
}
/*------------------------------*/
.team-6 .member-card .member-social {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.team-6 .member-card .member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team-6 .member-card .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team-6 .member-card .member-bio p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.team-6 .team-carousel-wrap {
  overflow-x: hidden;
  padding: 30px 20px;
}

.team-6 .team-carousel {
  overflow: visible;
}

.team-6 .team-carousel .swiper-slide {
  height: auto;
}

/*--------------------------------------------------------------
# Tabs 12 Section
--------------------------------------------------------------*/
.tabs-12 .nav-tabs {
  border: none;
  border-right: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  padding: 0;
}

.tabs-12 .nav-tabs .nav-item {
  margin: 15px 0;
}

.tabs-12 .nav-tabs .nav-link {
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  color: var(--default-color);
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

.tabs-12 .nav-tabs .nav-link .d-flex {
  gap: 15px;
}

.tabs-12 .nav-tabs .nav-link i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.tabs-12 .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: 0.3s;
}

.tabs-12 .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs-12 .nav-tabs .nav-link:hover i {
  color: var(--accent-color);
}

.tabs-12 .nav-tabs .nav-link.active {
  color: var(--accent-color);
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.tabs-12 .nav-tabs .nav-link.active i {
  color: var(--accent-color);
}

.tabs-12 .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
}

@media (max-width: 991px) {
  .tabs-12 .nav-tabs {
    border-right: none;
    border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 30px;
    padding: 0;
  }

  .tabs-12 .nav-tabs .nav-item {
    margin: 8px 0;
  }

  .tabs-12 .nav-tabs .nav-link {
    padding: 10px 15px;
  }

  .tabs-12 .nav-tabs .nav-link.active::after {
    right: 0;
    bottom: -3px;
    top: auto;
    height: 3px;
    width: 100%;
  }
}

.tabs-12 .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.tabs-12 .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.tabs-12 .tab-content p.fst-italic {
  font-style: italic;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
  position: relative;
}

.tabs-12 .tab-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.tabs-12 .tab-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-12 .tab-content ul li i {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 18px;
  color: var(--accent-color);
}

.tabs-12 .tab-content img {
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tabs-12 .tab-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }

  .tabs-12 .tab-content img {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Features 13 Section
--------------------------------------------------------------*/
.features-13 .features-card {
  margin-bottom: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-13 .features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-13 .features-card:last-child {
  margin-bottom: 0;
}

.features-13 .feature-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.features-13 .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.features-13 .feature-image .overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-13 .feature-image .overlay-icon i {
  font-size: 24px;
}

.features-13 .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}

.features-13 .feature-content .content-inner {
  padding: 3rem;
}

@media (max-width: 992px) {
  .features-13 .feature-content .content-inner {
    padding: 2rem;
  }
}

.features-13 .feature-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.features-13 h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .features-13 h3 {
    font-size: 24px;
  }
}

.features-13 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.features-13 .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.features-13 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-13 .feature-list li:last-child {
  margin-bottom: 0;
}

.features-13 .feature-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.features-13 .feature-action {
  margin-top: 1.5rem;
}

.features-13 .btn-explore {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.features-13 .btn-explore i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.features-13 .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.features-13 .btn-explore:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {

  .features-13 .feature-image,
  .features-13 .feature-content {
    height: auto;
  }

  .features-13 .feature-content .content-inner {
    padding: 2rem;
  }

  .features-13 h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Tabs 13 Section
--------------------------------------------------------------*/
.tabs-13 .nav-tabs {
  border: none;
  border-right: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  padding: 0;
}

.tabs-13 .nav-tabs .nav-item {
  margin: 15px 0;
}

.tabs-13 .nav-tabs .nav-link {
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  color: var(--default-color);
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

.tabs-13 .nav-tabs .nav-link .d-flex {
  gap: 15px;
}

.tabs-13 .nav-tabs .nav-link i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.tabs-13 .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: 0.3s;
}

.tabs-13 .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs-13 .nav-tabs .nav-link:hover i {
  color: var(--accent-color);
}

.tabs-13 .nav-tabs .nav-link.active {
  color: var(--accent-color);
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.tabs-13 .nav-tabs .nav-link.active i {
  color: var(--accent-color);
}

.tabs-13 .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
}

@media (max-width: 991px) {
  .tabs-13 .nav-tabs {
    border-right: none;
    border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 30px;
    padding: 0;
  }

  .tabs-13 .nav-tabs .nav-item {
    margin: 8px 0;
  }

  .tabs-13 .nav-tabs .nav-link {
    padding: 10px 15px;
  }

  .tabs-13 .nav-tabs .nav-link.active::after {
    right: 0;
    bottom: -3px;
    top: auto;
    height: 3px;
    width: 100%;
  }
}

.tabs-13 .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.tabs-13 .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.tabs-13 .tab-content p.fst-italic {
  font-style: italic;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
  position: relative;
}

.tabs-13 .tab-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.tabs-13 .tab-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-13 .tab-content ul li i {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 18px;
  color: var(--accent-color);
}

.tabs-13 .tab-content img {
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tabs-13 .tab-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }

  .tabs-13 .tab-content img {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Hero 5 Section
--------------------------------------------------------------*/
.hero-5 {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%) 0%, color-mix(in srgb, var(--background-color), var(--accent-color) 10%) 100%);
  overflow: hidden;
}

.hero-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 1;
}

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

.hero-5 .hero-content {
  padding-right: 2.5rem;
}

@media (max-width: 991px) {
  .hero-5 .hero-content {
    padding-right: 0;
    margin-bottom: 4rem;
    text-align: center;
  }
}

.hero-5 .hero-content .subtitle {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.hero-5 .hero-content .subtitle span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding-bottom: 10px;
  position: relative;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.hero-5 .hero-content .subtitle span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

@media (max-width: 991px) {
  .hero-5 .hero-content .subtitle span::after {
    right: 0;
    margin: 0 auto;
  }
}

.hero-5 .hero-content .title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  color: var(--heading-color);
}

.hero-5 .hero-content .title .highlight {
  position: relative;
  display: inline-block;
  color: var(--accent-color);
}

.hero-5 .hero-content .title .highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: -1;
}

@media (max-width: 1200px) {
  .hero-5 .hero-content .title {
    font-size: 3.8rem;
  }
}

@media (max-width: 991px) {
  .hero-5 .hero-content .title {
    font-size: 3.2rem;
  }
}

@media (max-width: 767px) {
  .hero-5 .hero-content .title {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .hero-5 .hero-content .title {
    font-size: 2.4rem;
  }
}

.hero-5 .hero-content .description {
  margin-bottom: 2.5rem;
}

.hero-5 .hero-content .description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-5 .hero-content .hero-buttons {
  display: flex;
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .hero-5 .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-5 .hero-content .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero-5 .hero-content .hero-buttons .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-5 .hero-content .hero-buttons .primary-btn i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

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

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

.hero-5 .hero-content .hero-buttons .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  background-color: transparent;
  color: var(--default-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-5 .hero-content .hero-buttons .secondary-btn:hover {
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.hero-5 .hero-visual {
  position: relative;
}

.hero-5 .hero-visual .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-5 .hero-visual .image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-5 .hero-visual .image-wrapper .main-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-5 .hero-visual .image-wrapper .floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-5 .hero-visual .image-wrapper .floating-element i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero-5 .hero-visual .image-wrapper .floating-element.top-left {
  top: -20px;
  left: -20px;
  animation-delay: 0.5s;
}

.hero-5 .hero-visual .image-wrapper .floating-element.bottom-right {
  bottom: -20px;
  right: -20px;
  animation-delay: 1.5s;
}

.hero-5 .hero-visual .image-wrapper .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-width: 140px;
}

.hero-5 .hero-visual .image-wrapper .experience-badge .years {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.hero-5 .hero-visual .image-wrapper .experience-badge .text {
  font-size: 0.85rem;
  color: var(--default-color);
  font-weight: 500;
}

.hero-5 .hero-visual .client-counter {
  position: absolute;
  top: 30px;
  right: -30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 160px;
}

@media (max-width: 991px) {
  .hero-5 .hero-visual .client-counter {
    right: 0;
  }
}

@media (max-width: 767px) {
  .hero-5 .hero-visual .client-counter {
    right: 20px;
  }
}

.hero-5 .hero-visual .client-counter .counter-number span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
}

.hero-5 .hero-visual .client-counter .counter-text span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

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

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

/*--------------------------------------------------------------
# Tabs 14 Section
--------------------------------------------------------------*/
.tabs-14 .nav-tabs {
  border: none;
  border-right: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  padding: 0;
}

.tabs-14 .nav-tabs .nav-item {
  margin: 15px 0;
}

.tabs-14 .nav-tabs .nav-link {
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  color: var(--default-color);
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

.tabs-14 .nav-tabs .nav-link .d-flex {
  gap: 15px;
}

.tabs-14 .nav-tabs .nav-link i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.tabs-14 .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: 0.3s;
}

.tabs-14 .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs-14 .nav-tabs .nav-link:hover i {
  color: var(--accent-color);
}

.tabs-14 .nav-tabs .nav-link.active {
  color: var(--accent-color);
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.tabs-14 .nav-tabs .nav-link.active i {
  color: var(--accent-color);
}

.tabs-14 .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
}

@media (max-width: 991px) {
  .tabs-14 .nav-tabs {
    border-right: none;
    border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 30px;
    padding: 0;
  }

  .tabs-14 .nav-tabs .nav-item {
    margin: 8px 0;
  }

  .tabs-14 .nav-tabs .nav-link {
    padding: 10px 15px;
  }

  .tabs-14 .nav-tabs .nav-link.active::after {
    right: 0;
    bottom: -3px;
    top: auto;
    height: 3px;
    width: 100%;
  }
}

.tabs-14 .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.tabs-14 .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.tabs-14 .tab-content p.fst-italic {
  font-style: italic;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
  position: relative;
}

.tabs-14 .tab-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.tabs-14 .tab-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-14 .tab-content ul li i {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 18px;
  color: var(--accent-color);
}

.tabs-14 .tab-content img {
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tabs-14 .tab-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }

  .tabs-14 .tab-content img {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Events 9 Section
--------------------------------------------------------------*/
.events-9 .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events-9 .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events-9 .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events-9 .card-body {
  z-index: 10;
  background: var(--background-color);
  border-top: 4px solid var(--background-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events-9 .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events-9 .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events-9 .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.events-9 .card:hover .card-body {
  border-color: var(--accent-color);
}

.events-9 .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Cards 13 Section
--------------------------------------------------------------*/
.cards-13 .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%;
}

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

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

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

.cards-13 .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.cards-13 .card a:hover {
  color: var(--accent-color);
}

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

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

/*--------------------------------------------------------------
# Cards 12 Section
--------------------------------------------------------------*/
.cards-12 .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.cards-12 .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.cards-12 .card h4 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

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

/*--------------------------------------------------------------
# Hero 6 Section
--------------------------------------------------------------*/
.hero-6 {
  padding: 0;
}

.hero-6 .hero-container {
  padding: 0;
}

.hero-6 .hero-container .content-col {
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-6 .hero-container .content-col {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero-6 .hero-container .content-col {
    padding: 2.5rem 1.5rem;
  }
}

.hero-6 .hero-container .content-col .content-wrapper {
  max-width: 570px;
}

.hero-6 .hero-container .content-col .status-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-6 .hero-container .content-col h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .hero-6 .hero-container .content-col h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-6 .hero-container .content-col h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-6 .hero-container .content-col h2 {
    font-size: 2.2rem;
  }
}

.hero-6 .hero-container .content-col p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-6 .hero-container .content-col p {
    font-size: 1rem;
  }
}

.hero-6 .hero-container .content-col .opening-hours {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 500;
}

.hero-6 .hero-container .content-col .opening-hours i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.hero-6 .hero-container .content-col .opening-hours span {
  font-size: 0.95rem;
}

.hero-6 .hero-container .content-col .btn-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .hero-6 .hero-container .content-col .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-6 .hero-container .content-col .btn-group .btn {
    width: 100%;
    text-align: center;
  }
}

.hero-6 .hero-container .content-col .btn-group .btn {
  padding: 1rem 2rem;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-6 .hero-container .content-col .btn-group .btn.btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: transparent;
}

.hero-6 .hero-container .content-col .btn-group .btn.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-6 .hero-container .content-col .btn-group .btn.btn-menu {
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.hero-6 .hero-container .content-col .btn-group .btn.btn-menu:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-6 .hero-container .content-col .social-links {
  display: flex;
  gap: 1rem;
}

.hero-6 .hero-container .content-col .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.hero-6 .hero-container .content-col .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero-6 .hero-container .content-col .social-links a i {
  font-size: 1.2rem;
}

.hero-6 .hero-container .hero-swiper {
  position: relative;
}

.hero-6 .hero-container .hero-swiper .swiper-slide {
  position: relative;
}

.hero-6 .hero-container .hero-swiper .swiper-slide .img-container {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 90px);
}

.hero-6 .hero-container .hero-swiper .swiper-slide .img-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

.hero-6 .hero-container .hero-swiper .swiper-button-next,
.hero-6 .hero-container .hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, #000, transparent 70%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.hero-6 .hero-container .hero-swiper .swiper-button-next:after,
.hero-6 .hero-container .hero-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-6 .hero-container .hero-swiper .swiper-button-next:hover,
.hero-6 .hero-container .hero-swiper .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-6 .hero-container .hero-swiper .swiper-button-next {
  right: 20px;
}

.hero-6 .hero-container .hero-swiper .swiper-button-prev {
  left: 20px;
}

@media (max-width: 992px) {
  .hero-6 .hero-container .content-col {
    order: 2;
  }

  .hero-6 .hero-container .swiper-col {
    order: 1;
  }

  .hero-6 .hero-container .hero-swiper .swiper-slide .img-container {
    height: calc(70vh - 80px);
  }

  .hero-6 .hero-container .hero-swiper .swiper-button-next,
  .hero-6 .hero-container .hero-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .hero-6 .hero-container .hero-swiper .swiper-button-next:after,
  .hero-6 .hero-container .hero-swiper .swiper-button-prev:after {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Services 6 Section
--------------------------------------------------------------*/
.services-6 .img {
  border-radius: 8px;
  overflow: hidden;
}

.services-6 .img img {
  transition: 0.6s;
}

.services-6 .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services-6 .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services-6 .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-6 .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services-6 .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Clients 5 Section
--------------------------------------------------------------*/
.clients-5 {
  overflow-x: hidden;
  padding: 40px 0;
  /* Responsive adjustments */
}

.clients-5 .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.clients-5 .clients-slider:not(:last-child) {
  margin-bottom: 20px;
}

.clients-5 .clients-track {
  display: flex;
  width: fit-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.clients-5 .clients-track.track-1 {
  animation-name: scroll-left;
}

.clients-5 .clients-track.track-2 {
  animation-name: scroll-right;
}

.clients-5 .clients-track:hover {
  animation-play-state: paused;
}

.clients-5 .clients-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients-5 .clients-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

.clients-5 .clients-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clients-5 .clients-slide:hover::before {
  left: 100%;
}

.clients-5 .clients-slide:hover img {
  filter: none;
  opacity: 1;
}

.clients-5 .clients-slide img {
  max-width: 80%;
  max-height: 60%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2080px);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-2080px);
  }

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

@media (max-width: 991px) {
  .clients-5 .clients-slide {
    width: 180px;
    height: 90px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1760px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1760px);
    }

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

@media (max-width: 767px) {
  .clients-5 .clients-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1440px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1440px);
    }

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

/*--------------------------------------------------------------
# Faq 9 Section
--------------------------------------------------------------*/
.faq-9 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

.faq-9 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

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

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

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

.faq-9 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Features 15 Section
--------------------------------------------------------------*/
.features-15 .features-image {
  position: relative;
  min-height: 400px;
}

.features-15 .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features-15 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-15 .icon-box {
  margin-top: 30px;
}

.features-15 .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.features-15 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.features-15 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients 7 Section
--------------------------------------------------------------*/
.clients-7 .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients-7 .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients-7 .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .clients-7 .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients-7 .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Clients 8 Section
--------------------------------------------------------------*/
.clients-8 {
  padding: 30px 0;
}

.clients-8 .clients-wrapper {
  position: relative;
  padding: 60px 0;
}

.clients-8 .clients-wrapper::before,
.clients-8 .clients-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.clients-8 .clients-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--background-color), transparent);
}

.clients-8 .clients-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--background-color), transparent);
}

.clients-8 .clients-track {
  display: flex;
  gap: 30px;
  padding: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.clients-8 .clients-track::-webkit-scrollbar {
  display: none;
}

.clients-8 .client-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients-8 .client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients-8 .client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 15%, transparent);
  background-color: color-mix(in srgb, var(--surface-color) 98%, var(--accent-color));
}

.clients-8 .client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .clients-8 .client-logo {
    width: 160px;
    height: 120px;
  }

  .clients-8 .client-logo img {
    max-height: 70px;
  }
}

@media (max-width: 767px) {
  .clients-8 .client-logo {
    width: 140px;
    height: 100px;
    padding: 15px;
  }

  .clients-8 .client-logo img {
    max-height: 60px;
  }

  .clients-8 .clients-track {
    gap: 20px;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Heroundefined Section
--------------------------------------------------------------*/
.heroundefined {
  padding: 0;
}

.heroundefined .hero-container {
  padding: 0;
}

.heroundefined .hero-container .content-col {
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .heroundefined .hero-container .content-col {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .heroundefined .hero-container .content-col {
    padding: 2.5rem 1.5rem;
  }
}

.heroundefined .hero-container .content-col .content-wrapper {
  max-width: 570px;
}

.heroundefined .hero-container .content-col .status-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.heroundefined .hero-container .content-col h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .heroundefined .hero-container .content-col h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .heroundefined .hero-container .content-col h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .heroundefined .hero-container .content-col h2 {
    font-size: 2.2rem;
  }
}

.heroundefined .hero-container .content-col p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .heroundefined .hero-container .content-col p {
    font-size: 1rem;
  }
}

.heroundefined .hero-container .content-col .opening-hours {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 500;
}

.heroundefined .hero-container .content-col .opening-hours i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.heroundefined .hero-container .content-col .opening-hours span {
  font-size: 0.95rem;
}

.heroundefined .hero-container .content-col .location {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 500;
}

.heroundefined .hero-container .content-col .location i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.heroundefined .hero-container .content-col .location span {
  font-size: 0.95rem;
}

.heroundefined .hero-container .content-col .calendar {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 500;
}

.heroundefined .hero-container .content-col .calendar i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.heroundefined .hero-container .content-col .calendar span {
  font-size: 0.95rem;
}

.heroundefined .hero-container .content-col .btn-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .heroundefined .hero-container .content-col .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .heroundefined .hero-container .content-col .btn-group .btn {
    width: 100%;
    text-align: center;
  }
}

.heroundefined .hero-container .content-col .btn-group .btn {
  padding: 1rem 2rem;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroundefined .hero-container .content-col .btn-group .btn.btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: transparent;
}

.heroundefined .hero-container .content-col .btn-group .btn.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.heroundefined .hero-container .content-col .btn-group .btn.btn-menu {
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.heroundefined .hero-container .content-col .btn-group .btn.btn-menu:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.heroundefined .hero-container .content-col .social-links {
  display: flex;
  gap: 1rem;
}

.heroundefined .hero-container .content-col .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.heroundefined .hero-container .content-col .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.heroundefined .hero-container .content-col .social-links a i {
  font-size: 1.2rem;
}

.heroundefined .hero-container .hero-swiper {
  position: relative;
}

.heroundefined .hero-container .hero-swiper .swiper-slide {
  position: relative;
}

.heroundefined .hero-container .hero-swiper .swiper-slide .img-container {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 90px);
}

.heroundefined .hero-container .hero-swiper .swiper-slide .img-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

.heroundefined .hero-container .hero-swiper .swiper-button-next,
.heroundefined .hero-container .hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, #000, transparent 70%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.heroundefined .hero-container .hero-swiper .swiper-button-next:after,
.heroundefined .hero-container .hero-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.heroundefined .hero-container .hero-swiper .swiper-button-next:hover,
.heroundefined .hero-container .hero-swiper .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.heroundefined .hero-container .hero-swiper .swiper-button-next {
  right: 20px;
}

.heroundefined .hero-container .hero-swiper .swiper-button-prev {
  left: 20px;
}

@media (max-width: 992px) {
  .heroundefined .hero-container .content-col {
    order: 2;
  }

  .heroundefined .hero-container .swiper-col {
    order: 1;
  }

  .heroundefined .hero-container .hero-swiper .swiper-slide .img-container {
    height: calc(70vh - 80px);
  }

  .heroundefined .hero-container .hero-swiper .swiper-button-next,
  .heroundefined .hero-container .hero-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .heroundefined .hero-container .hero-swiper .swiper-button-next:after,
  .heroundefined .hero-container .hero-swiper .swiper-button-prev:after {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Slider 5 Section
--------------------------------------------------------------*/
.slider-5 {
  overflow: visible;
  margin-bottom: 200px;
}

.slider-5 .section-title {
  text-align: left;
}

.slider-5 .section-title h2 {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
  text-transform: uppercase;
  font-size: 20px;
}

.slider-5 .section-title p {
  color: var(--contrast-color);
}

.slider-5 .services-carousel-wrap {
  position: relative;
  margin-bottom: -200px;
}

.slider-5 .swiper-wrapper {
  height: auto;
}

.slider-5 .service-item {
  position: relative;
  overflow: hidden;
}

.slider-5 .service-item:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.slider-5 .service-item img {
  transition: 0.5s all ease;
  transform: scale(1);
}

.slider-5 .service-item .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.slider-5 .service-item .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.slider-5 .service-item .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.slider-5 .service-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.slider-5 .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.slider-5 .service-item:hover img {
  transform: scale(1.2);
}

.slider-5 .navigation-prev,
.slider-5 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: var(--contrast-color);
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.slider-5 .navigation-prev i,
.slider-5 .navigation-next i {
  font-size: 2rem;
}

.slider-5 .navigation-prev:hover,
.slider-5 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.slider-5 .navigation-prev {
  left: 10px;
}

.slider-5 .navigation-next {
  right: 10px;
}

.slider-5 .swiper {
  padding-bottom: 50px;
}

.slider-5 .swiper-pagination {
  bottom: 0px;
}

.slider-5 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.slider-5 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Faqundefined Section
--------------------------------------------------------------*/
.faqundefined .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

.faqundefined .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

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

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

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

.faqundefined .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Promo Cards Section
--------------------------------------------------------------*/
.promo-cards {
  --default-color: #666;
  --heading-color: #333;
}

.promo-cards .promo-card {
  position: relative;
  height: 100%;
  min-height: 400px;
  padding: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.promo-cards .promo-card:hover {
  transform: translateY(-5px);
}

.promo-cards .promo-card .promo-content {
  position: relative;
  z-index: 2;
  max-width: 80%;
}

.promo-cards .promo-card .small-text {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.promo-cards .promo-card .promo-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.promo-cards .promo-card .promo-description {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.promo-cards .promo-card .btn-shop {
  display: inline-block;
  position: relative;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--heading-color);
  transition: all 0.3s ease;
}

.promo-cards .promo-card .btn-shop:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.promo-cards .promo-card .promo-image {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 50%;
  max-height: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
}

.promo-cards .promo-card .promo-image img {
  max-height: 100%;
  object-fit: contain;
}

.promo-cards .promo-card.card-1 {
  background-color: #f5f2ee;
  color: var(--default-color);
}

.promo-cards .promo-card.card-1 .promo-title {
  color: var(--heading-color);
}

.promo-cards .promo-card.card-2 {
  background-color: #f0f5f0;
  color: var(--default-color);
}

.promo-cards .promo-card.card-2 .promo-title {
  color: var(--heading-color);
}

.promo-cards .promo-card.card-3 {
  background-color: #faf4ea;
  color: var(--default-color);
}

.promo-cards .promo-card.card-3 .promo-title {
  color: var(--heading-color);
}

.promo-cards .promo-card.card-4 {
  background-color: #eef5fa;
  color: var(--default-color);
}

.promo-cards .promo-card.card-4 .promo-title {
  color: var(--heading-color);
}

@media (max-width: 991.98px) {
  .promo-cards .promo-card {
    min-height: 350px;
  }

  .promo-cards .promo-card .promo-content {
    max-width: 100%;
  }

  .promo-cards .promo-card .promo-image {
    max-width: 40%;
    max-height: 70%;
    opacity: 0.9;
  }
}

@media (max-width: 767.98px) {
  .promo-cards .promo-card {
    min-height: 300px;
    padding: 1.5rem;
  }

  .promo-cards .promo-card .promo-title {
    font-size: 1.5rem;
  }

  .promo-cards .promo-card .promo-image {
    max-width: 45%;
    max-height: 65%;
  }
}

/*--------------------------------------------------------------
# Featuresundefined Section
--------------------------------------------------------------*/
.featuresundefined .features-image {
  position: relative;
  min-height: 400px;
}

.featuresundefined .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.featuresundefined h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.featuresundefined .icon-box {
  margin-top: 30px;
}

.featuresundefined .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.featuresundefined .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.featuresundefined .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clientsundefined 3 Section
--------------------------------------------------------------*/
.clientsundefined-3 {
  padding: 30px 0;
}

.clientsundefined-3 .clients-wrapper {
  position: relative;
  padding: 60px 0;
}

.clientsundefined-3 .clients-wrapper::before,
.clientsundefined-3 .clients-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.clientsundefined-3 .clients-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--background-color), transparent);
}

.clientsundefined-3 .clients-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--background-color), transparent);
}

.clientsundefined-3 .clients-track {
  display: flex;
  gap: 30px;
  padding: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.clientsundefined-3 .clients-track::-webkit-scrollbar {
  display: none;
}

.clientsundefined-3 .client-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clientsundefined-3 .client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clientsundefined-3 .client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 15%, transparent);
  background-color: color-mix(in srgb, var(--surface-color) 98%, var(--accent-color));
}

.clientsundefined-3 .client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .clientsundefined-3 .client-logo {
    width: 160px;
    height: 120px;
  }

  .clientsundefined-3 .client-logo img {
    max-height: 70px;
  }
}

@media (max-width: 767px) {
  .clientsundefined-3 .client-logo {
    width: 140px;
    height: 100px;
    padding: 15px;
  }

  .clientsundefined-3 .client-logo img {
    max-height: 60px;
  }

  .clientsundefined-3 .clients-track {
    gap: 20px;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Services 7 Section
--------------------------------------------------------------*/
.services-7 {
  position: relative;
}

.services-7 .services-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services-7 .services-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .services-7 .services-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .services-7 .services-content h2 {
    font-size: 28px;
  }
}

.services-7 .services-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.services-7 .services-content .btn-consultation {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-7 .services-content .btn-consultation span {
  margin-right: 8px;
}

.services-7 .services-content .btn-consultation i {
  transition: transform 0.3s ease;
}

.services-7 .services-content .btn-consultation:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services-7 .services-content .btn-consultation:hover i {
  transform: translateX(5px);
}

.services-7 .services-image {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: flex-end;
}

.services-7 .services-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  object-fit: cover;
}

.services-7 .services-image .shape-circle {
  position: absolute;
  right: -30px;
  top: -30px;
  height: 180px;
  width: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  z-index: 1;
}

.services-7 .services-image .shape-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 1;
  animation: float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
  .services-7 .services-image {
    margin-top: 30px;
    height: 300px;
    justify-content: center;
  }
}

.services-7 .services-slider {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

.services-7 .services-slider .swiper-wrapper {
  height: auto !important;
}

.services-7 .service-card {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services-7 .service-card .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.services-7 .service-card .icon-box i {
  font-size: 30px;
  color: var(--contrast-color);
  transition: all 0.4s;
}

.services-7 .service-card .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transform: rotate(-45deg);
  position: absolute;
  right: -50px;
  top: -50px;
  transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services-7 .service-card .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-7 .service-card .content h4 a {
  color: var(--heading-color);
  transition: all 0.4s;
}

.services-7 .service-card .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.services-7 .service-card .content .service-number {
  position: relative;
  padding-left: 76px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s;
}

.services-7 .service-card .content .service-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 70px;
  background-color: var(--accent-color);
  transition: all 0.4s;
}

.services-7 .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services-7 .service-card:hover .icon-box {
  background-color: var(--contrast-color);
}

.services-7 .service-card:hover .icon-box i {
  color: var(--accent-color);
}

.services-7 .service-card:hover .arrow-link {
  top: 16px;
  right: 16px;
  background-color: var(--contrast-color);
}

.services-7 .service-card:hover .content h4 a {
  color: var(--contrast-color);
}

.services-7 .service-card:hover .content p {
  color: var(--contrast-color);
}

.services-7 .service-card:hover .content .service-number {
  color: var(--contrast-color);
  padding-left: 0;
}

.services-7 .service-card:hover .content .service-number::after {
  background-color: var(--contrast-color);
  left: 30px;
}

.services-7 .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.services-7 .swiper-navigation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  transition: all 0.4s;
  margin-right: 10px;
}

.services-7 .swiper-navigation button:last-child {
  margin-right: 0;
}

.services-7 .swiper-navigation button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes float {

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

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

/*--------------------------------------------------------------
# Events 10 Section
--------------------------------------------------------------*/
.events-10 .section-title {
  margin-bottom: 3rem;
}

.events-10 .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.events-10 .section-title p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events-10 .event-filters .form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.events-10 .event-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.events-10 .event-card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.events-10 .event-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.events-10 .event-card .event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  min-width: 100px;
}

.events-10 .event-card .event-date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.events-10 .event-card .event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.5rem 0;
}

.events-10 .event-card .event-date .year {
  font-size: 0.9rem;
}

.events-10 .event-card .event-content {
  padding: 1.5rem;
  flex: 1;
}

.events-10 .event-card .event-content h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  font-weight: 600;
}

.events-10 .event-card .event-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.events-10 .event-card .event-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.events-10 .event-card .event-tag.academic {
  background-color: #e3f2fd;
  color: #0d47a1;
}

.events-10 .event-card .event-tag.sports {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.events-10 .event-card .event-tag.arts {
  background-color: #ffebee;
  color: #c62828;
}

.events-10 .event-card .event-tag.community {
  background-color: #fff3e0;
  color: #e65100;
}

.events-10 .event-card .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.events-10 .event-card .event-meta .meta-item {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.events-10 .event-card .event-meta .meta-item i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events-10 .event-card .event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.events-10 .event-card .event-actions .btn-learn-more {
  padding: 0.5rem 1.25rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
}

.events-10 .event-card .event-actions .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.events-10 .event-card .event-actions .btn-calendar {
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.events-10 .event-card .event-actions .btn-calendar i {
  margin-right: 0.3rem;
}

.events-10 .event-card .event-actions .btn-calendar:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.events-10 .btn-view-all {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.events-10 .btn-view-all:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .events-10 .event-card {
    flex-direction: column;
  }

  .events-10 .event-card .event-date {
    flex-direction: row;
    padding: 1rem;
    gap: 0.5rem;
    min-width: auto;
  }

  .events-10 .event-card .event-date .month,
  .events-10 .event-card .event-date .day,
  .events-10 .event-card .event-date .year {
    margin: 0;
  }

  .events-10 .event-card .event-date .day {
    font-size: 1.5rem;
    margin: 0 0.3rem;
  }

  .events-10 .event-actions {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 .image-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
}

.about-4 .image-wrapper .main-image {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-4 .content-wrapper {
  padding: 20px;
}

.about-4 .content-wrapper .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  display: inline-block;
}

.about-4 .content-wrapper h2 {
  color: var(--heading-color);
  line-height: 1.2;
}

.about-4 .content-wrapper p {
  color: var(--default-color);
  font-size: 18px;
  line-height: 1.6;
}

.about-4 .content-wrapper .feature-list li {
  color: var(--default-color);
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.about-4 .content-wrapper .feature-list li i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 20px;
}

.about-4 .content-wrapper .custom-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-4 .content-wrapper .custom-btn .text {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about-4 .content-wrapper .custom-btn .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.about-4 .content-wrapper .custom-btn .arrow-icon i {
  font-size: 18px;
  transform: rotate(-45deg);
}

.about-4 .content-wrapper .custom-btn:hover .text,
.about-4 .content-wrapper .custom-btn:hover .arrow-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about-4 .content-wrapper .custom-btn:hover .arrow-icon {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .about-4 .image-wrapper {
    height: 400px;
    margin-bottom: 20px;
  }

  .about-4 .content-wrapper {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .about-4 .image-wrapper {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# Service Details 2 Section
--------------------------------------------------------------*/
.service-details-2 .swiper-wrapper {
  height: auto !important;
}

.service-details-2 .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details-2 .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.service-details-2 .service-sidebar .service-overview .overview-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details-2 .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details-2 .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details-2 .service-sidebar .service-overview .overview-content {
  padding: 30px;
}

.service-details-2 .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details-2 .service-sidebar .service-overview .overview-content p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details-2 .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.service-details-2 .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details-2 .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details-2 .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.service-details-2 .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.service-details-2 .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
}

.service-details-2 .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details-2 .service-sidebar .key-benefits ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.service-details-2 .service-sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details-2 .service-sidebar .contact-card .contact-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details-2 .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}

.service-details-2 .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details-2 .service-sidebar .contact-card .contact-info {
  padding: 30px;
}

.service-details-2 .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-details-2 .service-sidebar .contact-card .contact-info .info-row:last-child {
  margin-bottom: 0;
}

.service-details-2 .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
}

.service-details-2 .service-sidebar .contact-card .contact-info .info-row div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details-2 .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details-2 .service-content .image-gallery {
  margin-bottom: 40px;
}

.service-details-2 .service-content .image-gallery .service-details-slider {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details-2 .service-content .image-gallery .service-details-slider .swiper-pagination {
  bottom: 20px;
}

.service-details-2 .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-details-2 .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

.service-details-2 .service-content .image-gallery .service-details-slider .swiper-button-next,
.service-details-2 .service-content .image-gallery .service-details-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.service-details-2 .service-content .image-gallery .service-details-slider .swiper-button-next::after,
.service-details-2 .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.service-details-2 .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
.service-details-2 .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: scale(1.1);
}

.service-details-2 .service-content .section-header {
  margin-bottom: 25px;
}

.service-details-2 .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details-2 .service-content .section-header .divider {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
}

.service-details-2 .service-content .details-content {
  margin-bottom: 40px;
}

.service-details-2 .service-content .details-content p {
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.service-details-2 .service-content .details-content p:last-child {
  margin-bottom: 0;
}

.service-details-2 .service-content .service-features {
  margin-bottom: 40px;
}

.service-details-2 .service-content .service-features .feature-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-details-2 .service-content .service-features .feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  z-index: -1;
  transition: 0.4s;
}

.service-details-2 .service-content .service-features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-details-2 .service-content .service-features .feature-card:hover:before {
  height: 100%;
}

.service-details-2 .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.service-details-2 .service-content .service-features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 26px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-details-2 .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details-2 .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details-2 .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details-2 .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details-2 .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details-2 .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}

.service-details-2 .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details-2 .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}

.service-details-2 .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details-2 .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .service-details-2 .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .service-details-2 .service-content .service-features .feature-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Tabs 15 Section
--------------------------------------------------------------*/
.tabs-15 {
  overflow: hidden;
  padding-top: 0;
}

.tabs-15 .nav-tabs {
  border: 0;
}

.tabs-15 .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs-15 .nav-link:hover {
  color: var(--accent-color);
}

.tabs-15 .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.tabs-15 .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs-15 .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs-15 .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-15 .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs-15 .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs-15 .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Portfolio 2 Section
--------------------------------------------------------------*/
.portfolio-2 .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio-2 .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio-2 .portfolio-filters li:hover,
.portfolio-2 .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio-2 .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio-2 .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio-2 .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio-2 .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio-2 .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio-2 .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio-2 .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio-2 .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio-2 .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio-2 .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio-2 .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register .registration-form-wrapper {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.register .registration-form-wrapper .section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.register .registration-form-wrapper .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register .registration-form-wrapper label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.register .registration-form-wrapper .form-control {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: var(--default-color);
}

.register .registration-form-wrapper .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.register .registration-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 0.9rem;
}

.register .registration-form-wrapper .password-input {
  position: relative;
}

.register .registration-form-wrapper .password-input .toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.register .registration-form-wrapper .password-input .toggle-password:hover {
  color: var(--heading-color);
}

.register .registration-form-wrapper .password-requirements {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
}

.register .registration-form-wrapper .form-check .form-check-input {
  float: none;
  margin-left: 0;
  margin-right: 0.5rem;
  cursor: pointer;
}

.register .registration-form-wrapper .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register .registration-form-wrapper .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register .registration-form-wrapper .form-check .form-check-label {
  color: var(--default-color);
  font-weight: normal;
  cursor: pointer;
}

.register .registration-form-wrapper .form-check .form-check-label a {
  text-decoration: underline;
}

.register .registration-form-wrapper .form-check .form-check-label a:hover {
  text-decoration: none;
}

.register .registration-form-wrapper .btn-primary {
  padding: 0.75rem 2rem;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: all 0.3s ease;
}

.register .registration-form-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.register .registration-form-wrapper .btn-primary:active {
  transform: translateY(0);
}

.register .registration-form-wrapper .loading,
.register .registration-form-wrapper .error-message,
.register .registration-form-wrapper .sent-message {
  margin: 1rem 0;
}

@media (max-width: 767.98px) {
  .register .register-form {
    padding: 1.5rem;
  }

  .register .register-form .section-header h2 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# 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: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  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 input[type=text],
.get-a-quote .php-email-form input[type=email],
.get-a-quote .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-a-quote .php-email-form input[type=text]:focus,
.get-a-quote .php-email-form input[type=email]:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

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

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

.get-a-quote .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Property Single Section
--------------------------------------------------------------*/
.property-single .portfolio-details-slider img {
  width: 100%;
}

.property-single .swiper-wrapper {
  height: auto;
}

.property-single .swiper-button-prev,
.property-single .swiper-button-next {
  width: 48px;
  height: 48px;
}

.property-single .swiper-button-prev:after,
.property-single .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.property-single .swiper-button-prev:hover:after,
.property-single .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .property-single .swiper-button-prev,
  .property-single .swiper-button-next {
    display: none;
  }
}

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

.property-single .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.property-single .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.property-single .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.property-single .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.property-single .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.property-single .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.property-single .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.property-single .portfolio-description p {
  padding: 0;
}

.property-single .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.property-single .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.property-single .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.property-single .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

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

.property-single .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

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

.property-single .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

.property-single .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-single .nav-pills li+li {
  margin-left: 40px;
}

.property-single .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.property-single .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .property-single .nav-link {
    font-size: 16px;
  }
}

.property-single .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.property-single .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery 5 Section
--------------------------------------------------------------*/
.gallery-5 .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery-5 .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery-5 .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About 6 Section
--------------------------------------------------------------*/
.about-6 .section-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.about-6 .section-intro .subtitle {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-6 .section-intro .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-6 .section-intro .title {
    font-size: 3rem;
  }
}

.about-6 .section-intro .desc {
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-6 .highlight-cards {
  margin-top: 5rem;
}

.about-6 .highlight-cards .highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 350px;
}

.about-6 .highlight-cards .highlight-card.elevated {
  transform: translateY(2rem);
}

@media (max-width: 768px) {
  .about-6 .highlight-cards .highlight-card.elevated {
    transform: translateY(0);
  }
}

.about-6 .highlight-cards .highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-6 .highlight-cards .highlight-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.about-6 .highlight-cards .highlight-card .card-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  transition: transform 0.3s ease;
}

.about-6 .highlight-cards .highlight-card .card-content .card-title {
  color: var(--contrast-color);
  font-size: 1.25rem;
  font-weight: 600;
}

.about-6 .highlight-cards .highlight-card:hover img {
  transform: scale(1.1);
}

.about-6 .highlight-cards .highlight-card:hover .card-content {
  transform: translateY(-5px);
}

.about-6 .values-section {
  margin-top: 6rem;
}

.about-6 .values-section .values-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-6 .values-section .values-image img {
  width: 100%;
  transition: transform 0.7s ease;
}

.about-6 .values-section .values-image:hover img {
  transform: scale(1.05);
}

.about-6 .values-section .values-content {
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .about-6 .values-section .values-content {
    padding: 0 0 0 2rem;
  }
}

.about-6 .values-section .values-content .values-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-6 .values-section .values-content .values-title {
    font-size: 2.25rem;
  }
}

.about-6 .values-section .values-content .values-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-6 .values-section .values-content .values-list .value-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.about-6 .values-section .values-content .values-list .value-item .value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.about-6 .values-section .values-content .values-list .value-item .value-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-6 .values-section .values-content .values-list .value-item .value-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline;
}

.about-6 .values-section .values-content .values-list .value-item .value-text p {
  display: inline;
  margin-left: 0.5rem;
}

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

.portfolio-details-2 .swiper-wrapper {
  height: auto;
}

.portfolio-details-2 .swiper-button-prev,
.portfolio-details-2 .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details-2 .swiper-button-prev:after,
.portfolio-details-2 .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details-2 .swiper-button-prev:hover:after,
.portfolio-details-2 .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details-2 .swiper-button-prev,
  .portfolio-details-2 .swiper-button-next {
    display: none;
  }
}

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

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

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

.portfolio-details-2 .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details-2 .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details-2 .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details-2 .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details-2 .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details-2 .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.portfolio-details-2 .portfolio-description p {
  padding: 0;
}

.portfolio-details-2 .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details-2 .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details-2 .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details-2 .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

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

.portfolio-details-2 .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

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

.portfolio-details-2 .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Cards 14 Section
--------------------------------------------------------------*/
.cards-14 .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 500px;
}

.cards-14 .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
  z-index: 2;
}

.cards-14 .card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cards-14 .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

.cards-14 .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
}

.cards-14 .card .card-body h3 a {
  color: var(--contrast-color);
}

.cards-14 .card .card-body .card-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.cards-14 .card .card-body .card-content p {
  font-size: 15px;
  padding-top: 10px;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--contrast-color);
}

.cards-14 .card:hover .card-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 .small-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about-5 .about-title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-5 .about-title {
    font-size: 1.6rem;
  }
}

.about-5 .about-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .about-5 .description-wrapper {
    border-left: 1px solid var(--accent-color);
    padding-left: 30px;
  }
}

.about-5 .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-5 .content-card .card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.about-5 .content-card .card-image img {
  transition: transform 0.5s ease;
}

.about-5 .content-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-5 .content-card .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-5 .content-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
  flex: 1;
}

.about-5 .content-card .card-content .read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-5 .content-card .card-content .read-more:hover {
  gap: 0.75rem;
}

.about-5 .content-card .card-content .read-more:hover i {
  transform: translateX(5px);
}

.about-5 .content-card .card-content .read-more i {
  transition: transform 0.3s ease;
}

.about-5 .content-card:hover .card-image img {
  transform: scale(1.05);
}


/*--------------------------------------------------------------
# Form Section
--------------------------------------------------------------*/
.purchase-form {
  max-width: 1000px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: -60px auto 3rem;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Call To Action 5 Section
--------------------------------------------------------------*/
.call-to-action-5 .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.call-to-action-5 .image-wrapper img {
  transition: transform 0.5s ease;
}

.call-to-action-5 .image-wrapper img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .call-to-action-5 .image-wrapper {
    margin-bottom: 30px;
  }
}

.call-to-action-5 .content-wrapper {
  padding: 20px;
}

.call-to-action-5 .content-wrapper h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .call-to-action-5 .content-wrapper h2 {
    font-size: 2rem;
  }
}

.call-to-action-5 .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.call-to-action-5 .features {
  margin-bottom: 35px;
}

.call-to-action-5 .features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.call-to-action-5 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 10px;
}

.call-to-action-5 .features .feature-item span {
  font-size: 1.05rem;
}

.call-to-action-5 .cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action-5 .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.call-to-action-5 .cta-actions .primary-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-5 .cta-actions .primary-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}


.call-to-action-5 .cta-actions .primary-btn2 {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-5 .cta-actions .primary-btn2:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.call-to-action-5 .cta-actions .secondary-btn {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-5 .cta-actions .secondary-btn i {
  font-size: 2rem;
  margin-right: 8px;
  color: var(--accent-color);
}

.call-to-action-5 .cta-actions .secondary-btn:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Cards 15 Section
--------------------------------------------------------------*/
.cards-15 .container-fluid {
  padding: 0;
}

.cards-15 .cards-slider {
  overflow: hidden;
}

.cards-15 .swiper-wrapper {
  height: auto !important;
  transition-timing-function: linear !important;
}

.cards-15 .card-item {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.cards-15 .card-item:hover .card-bg {
  transform: scale(1.1);
}

.cards-15 .card-item:hover .card-content {
  background: rgba(0, 0, 0, 0.7);
}

.cards-15 .card-item .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}

.cards-15 .card-item .card-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease-in-out;
}

.cards-15 .card-item:hover .card-bg::before {
  background: rgba(0, 0, 0, 0.2);
}

.cards-15 .card-item .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cards-15 .card-item .icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 24px;
}

.cards-15 .card-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 1199px) {
  .cards-15 .card-item {
    height: 350px;
  }

  .cards-15 .card-item .card-content {
    padding: 25px;
  }

  .cards-15 .card-item .icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .cards-15 .card-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .cards-15 .card-item {
    height: 300px;
  }

  .cards-15 .card-item .card-content {
    padding: 20px;
  }

  .cards-15 .card-item .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .cards-15 .card-item h3 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Call To Action 6 Section
--------------------------------------------------------------*/
.call-to-action-6 .container {
  padding: 80px 80px 0 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .call-to-action-6 .container {
    padding: 60px 60px 0 60px;
  }
}

@media (max-width: 575px) {
  .call-to-action-6 .container {
    padding: 25px 15px 0 15px;
    border-radius: 0;
  }
}

.call-to-action-6 .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.call-to-action-6 .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.call-to-action-6 .cta-form .form-control {
  height: 50px;
  border-radius: 25px 0 0 25px;
  border: 1px solid var(--accent-color);
  padding-left: 20px;
}

.call-to-action-6 .cta-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.call-to-action-6 .cta-form .btn {
  height: 50px;
  border-radius: 0 25px 25px 0;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-6 .cta-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
  .call-to-action-6 .cta-form .btn {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .call-to-action-6 .cta-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .call-to-action-6 .cta-image {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Cards 17 Section
--------------------------------------------------------------*/
.cards-17 .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cards-17 .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cards-17 .card-item:hover .card-img img {
  transform: scale(1.1);
}

.cards-17 .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cards-17 .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cards-17 .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cards-17 .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cards-17 .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards-17 .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cards-17 .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cards-17 .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards-17 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards-17 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cards-17 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.cards-17 .card-item .card-content {
  padding: 2rem;
}

.cards-17 .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards-17 .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cards-17 .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cardsundefined Section
--------------------------------------------------------------*/
.cardsundefined .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cardsundefined .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.cardsundefined .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cardsundefined .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cardsundefined .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cardsundefined .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cardsundefined .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cardsundefined .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cardsundefined .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cardsundefined .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cardsundefined .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cardsundefined .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cardsundefined .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.cardsundefined .card-item .card-content {
  padding: 2rem;
}

.cardsundefined .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cardsundefined .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cardsundefined .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Tabsundefined Section
--------------------------------------------------------------*/
.tabsundefined .nav-tabs {
  border: none;
  border-right: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  padding: 0;
}

.tabsundefined .nav-tabs .nav-item {
  margin: 15px 0;
}

.tabsundefined .nav-tabs .nav-link {
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  color: var(--default-color);
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

.tabsundefined .nav-tabs .nav-link .d-flex {
  gap: 15px;
}

.tabsundefined .nav-tabs .nav-link i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.tabsundefined .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: 0.3s;
}

.tabsundefined .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabsundefined .nav-tabs .nav-link:hover i {
  color: var(--accent-color);
}

.tabsundefined .nav-tabs .nav-link.active {
  color: var(--accent-color);
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.tabsundefined .nav-tabs .nav-link.active i {
  color: var(--accent-color);
}

.tabsundefined .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  width: 3px;
  background: var(--accent-color);
}

@media (max-width: 991px) {
  .tabsundefined .nav-tabs {
    border-right: none;
    border-bottom: 3px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 30px;
    padding: 0;
  }

  .tabsundefined .nav-tabs .nav-item {
    margin: 8px 0;
  }

  .tabsundefined .nav-tabs .nav-link {
    padding: 10px 15px;
  }

  .tabsundefined .nav-tabs .nav-link.active::after {
    right: 0;
    bottom: -3px;
    top: auto;
    height: 3px;
    width: 100%;
  }
}

.tabsundefined .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.tabsundefined .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.tabsundefined .tab-content p.fst-italic {
  font-style: italic;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
  position: relative;
}

.tabsundefined .tab-content ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.tabsundefined .tab-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabsundefined .tab-content ul li i {
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 18px;
  color: var(--accent-color);
}

.tabsundefined .tab-content img {
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tabsundefined .tab-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }

  .tabsundefined .tab-content img {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Call To Action 7 Section
--------------------------------------------------------------*/
.call-to-action-7 {
  position: relative;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
}

.call-to-action-7 .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action-7 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action-7 p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action-7 .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action-7 .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action-7 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action-7 .features .feature-item span {
  font-weight: 500;
}

.call-to-action-7 .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.call-to-action-7 .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action-7 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action-7 .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action-7 .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action-7 .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action-7 .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action-7 .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action-7 .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-7 .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action-7 .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action-7 .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action-7 .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action-7 .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action-7 .decoration .circle-1,
.call-to-action-7 .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action-7 .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action-7 .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action-7 {
    padding: 2rem;
  }

  .call-to-action-7 .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action-7 .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

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

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

/*--------------------------------------------------------------
# Cards 18 Section
--------------------------------------------------------------*/
.cards-18 .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cards-18 .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cards-18 .card-item:hover .card-img img {
  transform: scale(1.1);
}

.cards-18 .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cards-18 .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cards-18 .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cards-18 .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cards-18 .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards-18 .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cards-18 .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cards-18 .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards-18 .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards-18 .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cards-18 .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.cards-18 .card-item .card-content {
  padding: 2rem;
}

.cards-18 .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards-18 .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cards-18 .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cards 19 Section
--------------------------------------------------------------*/
.cards-19 .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.cards-19 .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.cards-19 .why-box p {
  margin-bottom: 30px;
}

.cards-19 .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.cards-19 .why-box .more-btn i {
  font-size: 14px;
}

.cards-19 .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.cards-19 .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cards-19 .icon-box i {
  color: var(--accent-color);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.cards-19 .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.cards-19 .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

/*--------------------------------------------------------------
# Speakers 2 Section
--------------------------------------------------------------*/
.speakers-2 {
  --default-color: #ffffff;
}

.speakers-2 .member {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.speakers-2 .member .member-info {
  position: absolute;
  padding: 15px 0;
  inset: auto 0 -44px 0;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.4s;
}

.speakers-2 .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 16px;
}

.speakers-2 .member .member-info-content h4 a {
  color: var(--contrast-color);
}

.speakers-2 .member .member-info-content h4 a:hover {
  color: var(--accent-color);
}

.speakers-2 .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.speakers-2 .member .social {
  text-align: center;
  padding-top: 10px;
}

.speakers-2 .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0 4px;
  display: inline-block;
}

.speakers-2 .member .social a:hover {
  color: var(--default-color);
}

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

.speakers-2 .member:hover .member-info {
  bottom: 0;
}

/*--------------------------------------------------------------
# Schedule 2 Section
--------------------------------------------------------------*/
.schedule-2 {
  --background-color: color-mix(in srgb, var(--alt-background-color), transparent 95%);
}

.schedule-2 .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

.schedule-2 .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

.schedule-2 .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: var(--heading-color);
  color: var(--contrast-color);
  padding: 10px 100px;
}

@media (max-width: 991px) {
  .schedule-2 .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 767px) {
  .schedule-2 .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 480px) {
  .schedule-2 .nav-tabs a {
    padding: 8px 30px;
  }
}

.schedule-2 .nav-tabs a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.schedule-2 .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
  .schedule-2 .sub-heading {
    width: 75%;
  }
}

.schedule-2 .tab-pane {
  transition: ease-in-out 0.2s;
}

.schedule-2 .schedule-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

.schedule-2 .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}

.schedule-2 .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}

.schedule-2 .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

.schedule-2 .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.schedule-2 .schedule-item h4 span {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: normal;
  font-size: 16px;
}

.schedule-2 .schedule-item p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Venue 2 Section
--------------------------------------------------------------*/
.venue-2 .container-fluid {
  margin-bottom: 3px;
}

.venue-2 .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.venue-2 .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.venue-2 .venue-info:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.venue-2 .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
}

@media (max-width: 574px) {
  .venue-2 .venue-info h3 {
    font-size: 24px;
  }
}

.venue-2 .venue-info p {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.venue-2 .venue-gallery-container {
  padding-right: 12px;
}

.venue-2 .venue-gallery {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.venue-2 .venue-gallery img {
  transition: all ease-in-out 0.4s;
}

.venue-2 .venue-gallery:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Gallery 6 Section
--------------------------------------------------------------*/
.gallery-6 .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery-6 .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery-6 .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Hotels 2 Section
--------------------------------------------------------------*/
.hotels-2 .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;
}

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

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

.hotels-2 .card h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}

.hotels-2 .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.hotels-2 .card a:hover {
  color: var(--accent-color);
}

.hotels-2 .card .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}

.hotels-2 .card .stars i {
  color: #ffc107;
}

.hotels-2 .card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
  font-size: 15px;
}

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

/*--------------------------------------------------------------
# Contact 6 Section
--------------------------------------------------------------*/
.contact-6 .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact-6 .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact-6 .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

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

.contact-6 .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact-6 .php-email-form {
    padding: 20px;
  }
}

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

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

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

.contact-6 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-6 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}