@charset "UTF-8";

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #364d59;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #52565e;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #16902e;
  /* 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: rgba(255, 255, 255, 0.55);
  /* The default color of the main navmenu links */
  --nav-hover-color: #16902e;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #16902e;
  /* 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: #f4f7f6;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.95);
  --heading-color: #3c3c3c;
  --nav-color: #3c3c3c;
  --nav-hover-color: #3c3c3c;
}

/*--------------------------------------------------------------
# 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: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--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;
    font-weight: 400;
    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 {
  color: var(--default-color);
  background-color: var(--background-color);
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  position: relative;
}

.footer .container {
  position: relative;
}

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

.footer .footer-top {
  padding-top: 50px;
}

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

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

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

.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: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  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 .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

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

.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

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

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

.page-title h1 {
  font-size: 56px;
  font-weight: 500;
  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: 500;
}

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

/*--------------------------------------------------------------
# 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: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  background-color: #0a0a0a;
}

.hero .cinema-slider {
  position: relative;
}

.hero .swiper {
  overflow: hidden;
}

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

.hero .cinema-frame {
  position: relative;
  height: 85vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
}

.hero .cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero .swiper-slide-active .cinema-frame img {
  transform: scale(1.08);
}

.hero .frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .frame-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero .content-inner {
  max-width: 600px;
}

.hero .accent-line {
  width: 56px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 28px;
  transition: width 0.6s ease;
}

.hero .swiper-slide-active .accent-line {
  width: 80px;
}

.hero .tag-label {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.7s ease 0.2s;
}

.hero .swiper-slide-active .tag-label {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner h3 {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.35s;
}

.hero .swiper-slide-active .content-inner h3 {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: color-mix(in srgb, #ffffff 72%, transparent);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.5s;
}

.hero .swiper-slide-active .content-inner p {
  opacity: 1;
  transform: translateY(0);
}

.hero .refined-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid color-mix(in srgb, #ffffff 40%, transparent);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.hero .refined-btn i {
  font-size: 14px;
  transition: transform 0.5s ease;
}

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

.hero .refined-btn:hover i {
  transform: translateX(5px);
}

.hero .swiper-slide-active .refined-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.65s;
}

.hero .swiper-slide-active .refined-btn:hover {
  transition: all 0.5s ease;
}

.hero .slider-controls {
  position: absolute;
  bottom: 48px;
  right: 8%;
  z-index: 3;
}

.hero .controls-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero .swiper-pagination {
  position: static;
  width: auto;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, #ffffff 60%, transparent);
}

.hero .swiper-pagination .swiper-pagination-current {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.hero .nav-arrows {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid color-mix(in srgb, #ffffff 25%, transparent);
  border-radius: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 16px;
  font-weight: 300;
  color: color-mix(in srgb, #ffffff 70%, transparent);
  transition: color 0.5s ease;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: color-mix(in srgb, #ffffff 10%, transparent);
  border-color: color-mix(in srgb, #ffffff 50%, transparent);
}

.hero .swiper-button-prev:hover::after,
.hero .swiper-button-next:hover::after {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .hero .content-inner h3 {
    font-size: 42px;
  }

  .hero .content-inner {
    max-width: 520px;
  }
}

@media (max-width: 992px) {
  .hero .cinema-frame {
    height: 70vh;
    min-height: 480px;
  }

  .hero .content-inner h3 {
    font-size: 36px;
  }

  .hero .content-inner p {
    font-size: 16px;
  }

  .hero .frame-content {
    padding: 0 6%;
  }

  .hero .slider-controls {
    right: 6%;
    bottom: 36px;
  }
}

@media (max-width: 768px) {
  .hero .cinema-frame {
    height: 80vh;
    min-height: 520px;
  }

  .hero .frame-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.85) 100%);
  }

  .hero .frame-content {
    align-items: flex-end;
    padding: 0 24px 120px;
  }

  .hero .content-inner {
    max-width: 100%;
  }

  .hero .content-inner h3 {
    font-size: 30px;
  }

  .hero .content-inner p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero .refined-btn {
    padding: 14px 32px;
    font-size: 12px;
  }

  .hero .slider-controls {
    bottom: 24px;
    right: 24px;
  }

  .hero .controls-inner {
    gap: 20px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 44px;
    height: 44px;
  }

  .hero .swiper-button-prev::after,
  .hero .swiper-button-next::after {
    font-size: 14px;
  }

  .hero .swiper-pagination .swiper-pagination-current {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .hero .cinema-frame {
    height: 75vh;
    min-height: 460px;
  }

  .hero .content-inner h3 {
    font-size: 26px;
  }

  .hero .accent-line {
    width: 40px;
    margin-bottom: 20px;
  }

  .hero .swiper-slide-active .accent-line {
    width: 56px;
  }

  .hero .tag-label {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .hero .frame-content {
    padding: 0 20px 100px;
  }

  .hero .slider-controls {
    right: 20px;
    bottom: 20px;
  }

  .hero .controls-inner {
    gap: 16px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .features-stack .feature-row {
  margin-bottom: 4rem;
}

.features-2 .features-stack .feature-row:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .features-2 .features-stack .feature-row {
    margin-bottom: 3rem;
  }
}

.features-2 .features-stack .media-wrapper {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-2 .features-stack .media-wrapper::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.features-2 .features-stack .media-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.features-2 .features-stack .media-wrapper:hover img {
  transform: scale(1.05);
}

.features-2 .features-stack .icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 20%), color-mix(in srgb, var(--accent-color), transparent 40%));
  color: var(--contrast-color);
  border-radius: 18px;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.features-2 .features-stack .icon-box i {
  transition: transform 0.3s ease;
}

.features-2 .features-stack .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features-2 .features-stack .icon-box:hover i {
  transform: scale(1.1);
}

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

.features-2 .features-stack p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.features-2 .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2.25rem;
  background-color: var(--surface-color);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

.features-2 .action-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.features-2 .action-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .features-2 .features-stack .icon-box {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .features-2 .features-stack h3 {
    font-size: 1.3rem;
  }

  .features-2 .features-stack p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .features-2 .features-stack .feature-row {
    margin-bottom: 2.5rem;
  }

  .features-2 .features-stack .icon-box {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }

  .features-2 .features-stack h3 {
    font-size: 1.2rem;
  }

  .features-2 .features-stack .action-btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

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

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

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.features .feature-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
  z-index: 1;
}

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

.features .feature-card:hover .feature-overlay {
  opacity: 1;
}

.features .feature-card:hover .feature-number {
  color: var(--contrast-color);
}

.features .feature-card:hover .feature-icon i {
  color: var(--contrast-color);
  transform: scale(1.1);
}

.features .feature-card:hover h4 {
  color: var(--contrast-color);
}

.features .feature-card:hover p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.features .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 20px;
}

.features .feature-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 900;
  color: color-mix(in srgb, var(--default-color), transparent 95%);
  font-family: var(--heading-font);
  transition: all 0.3s ease;
  line-height: 1;
}

.features .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.3s ease;
}

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

.features h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.features p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .features .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features .feature-card {
    padding: 30px 25px;
  }

  .features .feature-number {
    font-size: 36px;
    top: 15px;
    right: 20px;
  }

  .features .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .features .feature-icon i {
    font-size: 28px;
  }

  .features h4 {
    font-size: 20px;
  }

  .features p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .features .features-grid {
    grid-template-columns: 1fr;
  }

  .features .feature-card {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .events-list {
  margin-bottom: 2rem;
}

.events .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 .events-list .event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.events .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 .events-list .event-item .event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.events .events-list .event-item .event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.events .events-list .event-item .event-content {
  padding: 1.5rem;
  flex: 1;
}

.events .events-list .event-item .event-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  font-weight: 600;
}

.events .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 .events-list .event-item .event-content .event-meta i {
  margin-right: 0.25rem;
}

.events .events-list .event-item .event-content .event-meta p {
  margin: 0;
}

.events .events-list .event-item .event-content p {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.events .events-list .event-item .event-content .btn-event {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--accent-color);
}

.events .events-list .event-item .event-content .btn-event i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.events .events-list .event-item .event-content .btn-event:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events .events-list .event-item .event-content .btn-event:hover i {
  transform: translateX(5px);
}

@media (max-width: 576px) {
  .events .events-list .event-item {
    flex-direction: column;
  }

  .events .events-list .event-item .event-date {
    width: 100%;
    flex-direction: row;
    padding: 0.75rem;
  }

  .events .events-list .event-item .event-date .day {
    margin-right: 0.5rem;
  }

  .events .events-list .event-item .event-content .event-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.events .pagination-wrapper {
  margin-top: 2rem;
}

.events .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 .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 .pagination-wrapper .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.events .pagination-wrapper .pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.events .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 .sidebar .sidebar-item .sidebar-title {
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
}

.events .sidebar .sidebar-item .sidebar-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 60px;
  background: var(--accent-color);
}

.events .sidebar .sidebar-item.featured-event .featured-event-content img {
  border-radius: 6px;
  margin-bottom: 1rem;
}

.events .sidebar .sidebar-item.featured-event .featured-event-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.events .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 .sidebar .sidebar-item.featured-event .featured-event-content p i {
  color: var(--accent-color);
  margin-right: 0.25rem;
}

.events .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 .sidebar .sidebar-item.featured-event .featured-event-content .btn-register:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.events .sidebar .sidebar-item .categories ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.events .sidebar .sidebar-item .categories ul li {
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.events .sidebar .sidebar-item .categories ul li:last-child {
  border-bottom: none;
}

.events .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 .sidebar .sidebar-item .categories ul li a:hover {
  color: var(--accent-color);
}

.events .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 .sidebar .sidebar-item .categories ul li a:hover span {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.events .sidebar .event-calendar .calendar-header {
  margin-bottom: 0.75rem;
  text-align: center;
}

.events .sidebar .event-calendar .calendar-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.events .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 .sidebar .event-calendar .calendar-body .weekdays div {
  padding: 0.25rem;
}

.events .sidebar .event-calendar .calendar-body .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.events .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 .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 .sidebar .event-calendar .calendar-body .days .day.has-event {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
}

.events .sidebar .event-calendar .calendar-body .days .day.has-event:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events .sidebar .event-calendar .calendar-body .days .day.other-month {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  cursor: default;
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about-2 .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about-2 .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about-2 .our-story {
    padding-right: 35%;
  }
}

.about-2 .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about-2 .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-2 .our-story p:last-child {
  margin-bottom: 0;
}

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

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

.about-2 ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about-2 .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about-2 .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about-2 .watch-video:hover a {
  color: var(--accent-color);
}

.about-2 .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about-2 .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

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

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

.about-me .profile-image-wrapper .profile-image {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about-me .profile-image-wrapper .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-me .profile-image-wrapper .profile-image {
    width: 200px;
    height: 200px;
  }
}

.about-me .profile-image-wrapper .signature-section {
  text-align: center;
}

.about-me .profile-image-wrapper .signature-section .signature {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  opacity: 0.8;
}

.about-me .profile-image-wrapper .signature-section .quote {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0;
  max-width: 250px;
  margin: 0 auto;
}

.about-me .about-content .intro {
  margin-bottom: 40px;
}

.about-me .about-content .intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about-me .about-content .intro h2 {
    font-size: 2rem;
    text-align: center;
  }
}

.about-me .about-content .intro p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  .about-me .about-content .intro p {
    text-align: center;
  }
}

.about-me .about-content .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.about-me .about-content .skills-grid .skill-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.about-me .about-content .skills-grid .skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about-me .about-content .skills-grid .skill-item .skill-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 24px;
}

.about-me .about-content .skills-grid .skill-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.about-me .about-content .skills-grid .skill-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about-me .about-content .journey-timeline {
  margin-bottom: 40px;
}

.about-me .about-content .journey-timeline .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-left: 3px solid var(--accent-color);
  background: color-mix(in srgb, var(--surface-color), transparent 30%);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.about-me .about-content .journey-timeline .timeline-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.about-me .about-content .journey-timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.about-me .about-content .journey-timeline .timeline-item .year {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 18px;
  min-width: 80px;
  margin-right: 20px;
}

.about-me .about-content .journey-timeline .timeline-item .description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .about-me .about-content .journey-timeline .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-me .about-content .journey-timeline .timeline-item .year {
    margin-right: 0;
    margin-bottom: 8px;
  }
}

.about-me .about-content .cta-section .fun-fact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding: 15px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about-me .about-content .cta-section .fun-fact .emoji {
  font-size: 20px;
  margin-right: 10px;
}

.about-me .about-content .cta-section .fun-fact .text {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-me .about-content .cta-section .fun-fact {
    justify-content: center;
    text-align: center;
  }
}

.about-me .about-content .cta-section .action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 576px) {
  .about-me .about-content .cta-section .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.about-me .about-content .cta-section .action-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.about-me .about-content .cta-section .action-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.about-me .about-content .cta-section .action-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.about-me .about-content .cta-section .action-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.about-me .about-content .cta-section .action-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .about-me .profile-image-wrapper {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Faculty Staff Section
--------------------------------------------------------------*/
.faculty-staff .faculty-search-bar .search-input-wrapper {
  position: relative;
  max-width: 100%;
}

.faculty-staff .faculty-search-bar .search-input-wrapper .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 1.1rem;
  z-index: 2;
}

.faculty-staff .faculty-search-bar .search-input-wrapper .search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.faculty-staff .faculty-search-bar .search-input-wrapper .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-weight: 300;
}

.faculty-staff .faculty-search-bar .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faculty-staff .featured-faculty {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 94%);
}

.faculty-staff .featured-faculty .featured-image img {
  border-radius: 16px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.faculty-staff .featured-faculty .featured-content {
  padding-left: 2rem;
}

.faculty-staff .featured-faculty .featured-content .faculty-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.faculty-staff .featured-faculty .featured-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.faculty-staff .featured-faculty .featured-content .title {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.faculty-staff .featured-faculty .featured-content .biography {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  font-weight: 300;
}

.faculty-staff .featured-faculty .featured-content .expertise-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.faculty-staff .featured-faculty .featured-content .expertise-areas span {
  padding: 0.5rem 1.2rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 300;
}

.faculty-staff .featured-faculty .featured-content .contact-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.faculty-staff .featured-faculty .featured-content .contact-actions .contact-btn {
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.faculty-staff .featured-faculty .featured-content .contact-actions .contact-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.faculty-staff .featured-faculty .featured-content .contact-actions .social-links {
  display: flex;
  gap: 1rem;
}

.faculty-staff .featured-faculty .featured-content .contact-actions .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faculty-staff .featured-faculty .featured-content .contact-actions .social-links a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.faculty-staff .faculty-profile {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.faculty-staff .faculty-profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.faculty-staff .faculty-profile .profile-image {
  overflow: hidden;
}

.faculty-staff .faculty-profile .profile-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.faculty-staff .faculty-profile .profile-content {
  padding: 2rem;
}

.faculty-staff .faculty-profile .profile-content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.faculty-staff .faculty-profile .profile-content .position {
  color: var(--accent-color);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.faculty-staff .faculty-profile .profile-content .department-info {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.faculty-staff .faculty-profile .profile-content .research-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faculty-staff .faculty-profile .profile-content .research-focus span {
  padding: 0.3rem 0.8rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 300;
}

.faculty-staff .faculty-profile .profile-actions {
  padding: 0 2rem 2rem;
}

.faculty-staff .faculty-profile .profile-actions .view-profile {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.faculty-staff .faculty-profile .profile-actions .view-profile::after {
  content: "→";
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.faculty-staff .faculty-profile .profile-actions .view-profile:hover::after {
  margin-left: 1rem;
}

.faculty-staff .load-more-section .load-more-btn {
  padding: 1rem 3rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.faculty-staff .load-more-section .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .faculty-staff .featured-faculty {
    padding: 2rem;
  }

  .faculty-staff .featured-faculty .featured-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .faculty-staff .featured-faculty .featured-content h2 {
    font-size: 2rem;
  }

  .faculty-staff .featured-faculty .featured-content .contact-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .faculty-staff .filter-tabs {
    flex-wrap: wrap;
    gap: 1rem !important;
    justify-content: center;
  }

  .faculty-staff .featured-faculty {
    padding: 1.5rem;
  }

  .faculty-staff .featured-faculty .featured-content h2 {
    font-size: 1.8rem;
  }

  .faculty-staff .featured-faculty .featured-content .expertise-areas {
    gap: 0.5rem;
  }

  .faculty-staff .featured-faculty .featured-content .expertise-areas span {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

/*--------------------------------------------------------------
# Faculty Staff 2 Section
--------------------------------------------------------------*/
.faculty-staff-2 .faculty-search-bar .search-input-wrapper {
  position: relative;
  max-width: 100%;
}

.faculty-staff-2 .faculty-search-bar .search-input-wrapper .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 1.1rem;
  z-index: 2;
}

.faculty-staff-2 .faculty-search-bar .search-input-wrapper .search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.faculty-staff-2 .faculty-search-bar .search-input-wrapper .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-weight: 300;
}

.faculty-staff-2 .faculty-search-bar .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faculty-staff-2 .featured-faculty {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 94%);
}

.faculty-staff-2 .featured-faculty .featured-image img {
  border-radius: 16px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.faculty-staff-2 .featured-faculty .featured-content {
  padding-left: 2rem;
}

.faculty-staff-2 .featured-faculty .featured-content .faculty-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.faculty-staff-2 .featured-faculty .featured-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.faculty-staff-2 .featured-faculty .featured-content .title {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.faculty-staff-2 .featured-faculty .featured-content .biography {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  font-weight: 300;
}

.faculty-staff-2 .featured-faculty .featured-content .expertise-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.faculty-staff-2 .featured-faculty .featured-content .expertise-areas span {
  padding: 0.5rem 1.2rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 300;
}

.faculty-staff-2 .featured-faculty .featured-content .contact-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.faculty-staff-2 .featured-faculty .featured-content .contact-actions .contact-btn {
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.faculty-staff-2 .featured-faculty .featured-content .contact-actions .contact-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.faculty-staff-2 .featured-faculty .featured-content .contact-actions .social-links {
  display: flex;
  gap: 1rem;
}

.faculty-staff-2 .featured-faculty .featured-content .contact-actions .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faculty-staff-2 .featured-faculty .featured-content .contact-actions .social-links a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.faculty-staff-2 .faculty-profile {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.faculty-staff-2 .faculty-profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.faculty-staff-2 .faculty-profile .profile-image {
  overflow: hidden;
}

.faculty-staff-2 .faculty-profile .profile-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.faculty-staff-2 .faculty-profile .profile-content {
  padding: 2rem;
}

.faculty-staff-2 .faculty-profile .profile-content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.faculty-staff-2 .faculty-profile .profile-content .position {
  color: var(--accent-color);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.faculty-staff-2 .faculty-profile .profile-content .department-info {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.faculty-staff-2 .faculty-profile .profile-content .research-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faculty-staff-2 .faculty-profile .profile-content .research-focus span {
  padding: 0.3rem 0.8rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 300;
}

.faculty-staff-2 .faculty-profile .profile-actions {
  padding: 0 2rem 2rem;
}

.faculty-staff-2 .faculty-profile .profile-actions .view-profile {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.faculty-staff-2 .faculty-profile .profile-actions .view-profile::after {
  content: "→";
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.faculty-staff-2 .faculty-profile .profile-actions .view-profile:hover::after {
  margin-left: 1rem;
}

.faculty-staff-2 .load-more-section .load-more-btn {
  padding: 1rem 3rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.faculty-staff-2 .load-more-section .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .faculty-staff-2 .featured-faculty {
    padding: 2rem;
  }

  .faculty-staff-2 .featured-faculty .featured-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .faculty-staff-2 .featured-faculty .featured-content h2 {
    font-size: 2rem;
  }

  .faculty-staff-2 .featured-faculty .featured-content .contact-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .faculty-staff-2 .filter-tabs {
    flex-wrap: wrap;
    gap: 1rem !important;
    justify-content: center;
  }

  .faculty-staff-2 .featured-faculty {
    padding: 1.5rem;
  }

  .faculty-staff-2 .featured-faculty .featured-content h2 {
    font-size: 1.8rem;
  }

  .faculty-staff-2 .featured-faculty .featured-content .expertise-areas {
    gap: 0.5rem;
  }

  .faculty-staff-2 .featured-faculty .featured-content .expertise-areas span {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  position: relative;
  margin-bottom: 20px;
  padding: 25px 50px 25px 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  border-left: 4px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 2px 15px color-mix(in srgb, var(--default-color), transparent 92%);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.faq .faq-item:hover {
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq .faq-item .faq-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--heading-font);
  transition: all 0.3s ease;
}

.faq .faq-item h3 {
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0;
  flex: 1;
}

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

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

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 30px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq .faq-item.faq-active,
.faq .faq-item.active {
  border-left-color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-num,
.faq .faq-item.active .faq-num {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.faq .faq-item.faq-active .faq-content,
.faq .faq-item.active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

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

.faq .help-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 25%));
  border-radius: 12px;
  padding: 40px;
  color: var(--contrast-color);
}

.faq .help-banner i {
  font-size: 48px;
  color: var(--contrast-color);
  opacity: 0.85;
}

.faq .help-banner h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.faq .help-banner p {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 24px;
}

.faq .help-banner .btn-help {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.faq .help-banner .btn-help:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .faq .faq-item {
    padding: 20px 45px 20px 20px;
  }

  .faq .faq-item .faq-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 12px;
  }

  .faq .faq-item h3 {
    font-size: 15px;
    line-height: 22px;
  }

  .faq .faq-item .faq-content {
    padding-left: 49px;
  }

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

  .faq .help-banner {
    padding: 30px 20px;
    text-align: center;
  }

  .faq .help-banner h4 {
    font-size: 20px;
    margin-top: 15px;
  }

  .faq .help-banner p {
    margin-bottom: 15px;
  }

  .faq .help-banner .btn-help {
    margin-top: 5px;
  }
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-item {
  position: relative;
  margin-bottom: 20px;
  padding: 25px 50px 25px 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  border-left: 4px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 2px 15px color-mix(in srgb, var(--default-color), transparent 92%);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.faq-2 .faq-item:hover {
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq-2 .faq-item .faq-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-2 .faq-item .faq-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--heading-font);
  transition: all 0.3s ease;
}

.faq-2 .faq-item h3 {
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0;
  flex: 1;
}

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

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

.faq-2 .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 30px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-2 .faq-item.faq-active,
.faq-2 .faq-item.active {
  border-left-color: var(--accent-color);
}

.faq-2 .faq-item.faq-active .faq-num,
.faq-2 .faq-item.active .faq-num {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.faq-2 .faq-item.faq-active .faq-content,
.faq-2 .faq-item.active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq-2 .faq-item.faq-active .faq-toggle,
.faq-2 .faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq-2 .help-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 25%));
  border-radius: 12px;
  padding: 40px;
  color: var(--contrast-color);
}

.faq-2 .help-banner i {
  font-size: 48px;
  color: var(--contrast-color);
  opacity: 0.85;
}

.faq-2 .help-banner h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.faq-2 .help-banner p {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 24px;
}

.faq-2 .help-banner .btn-help {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.faq-2 .help-banner .btn-help:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .faq-2 .faq-item {
    padding: 20px 45px 20px 20px;
  }

  .faq-2 .faq-item .faq-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 12px;
  }

  .faq-2 .faq-item h3 {
    font-size: 15px;
    line-height: 22px;
  }

  .faq-2 .faq-item .faq-content {
    padding-left: 49px;
  }

  .faq-2 .faq-item .faq-toggle {
    right: 18px;
    top: 24px;
  }

  .faq-2 .help-banner {
    padding: 30px 20px;
    text-align: center;
  }

  .faq-2 .help-banner h4 {
    font-size: 20px;
    margin-top: 15px;
  }

  .faq-2 .help-banner p {
    margin-bottom: 15px;
  }

  .faq-2 .help-banner .btn-help {
    margin-top: 5px;
  }
}

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 .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-3 .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-3 .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-3 .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-3 .feature-icon i {
  font-size: 1.75rem;
}

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

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

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

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

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

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

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

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

.features-3 .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-3 .testimonial-image {
  height: 100%;
}

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

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

.features-3 .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-3 .testimonial-content p {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .section-headline {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.stats .section-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.stats .stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-color);
}

.stats .stat-item {
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.stats .stat-item:nth-child(1) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(2) {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(3) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  transform: translateY(-2px);
}

.stats .stat-item .stat-content {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats .stat-item .stat-number {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.stats .stat-item .stat-number .purecounter {
  font-size: inherit;
  color: inherit;
}

.stats .stat-item .stat-divider {
  width: 40px;
  height: 1px;
  background: var(--accent-color);
  margin: 0 auto 1.5rem auto;
  opacity: 0.6;
}

.stats .stat-item .stat-label {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.stats .stat-item .stat-description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  max-width: 200px;
}

.stats .achievement-badge {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.stats .achievement-badge:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-3px);
}

.stats .achievement-badge .badge-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.stats .achievement-badge .badge-title {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.stats .achievement-badge .badge-text {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .stats .section-headline {
    font-size: 2.25rem;
  }

  .stats .stats-container {
    gap: 0;
  }

  .stats .stat-item {
    padding: 2.5rem 2rem;
  }

  .stats .stat-item .stat-number {
    font-size: 3rem;
  }

  .stats .stat-item .stat-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .stats .section-headline {
    font-size: 1.875rem;
  }

  .stats .section-description {
    font-size: 1rem;
  }

  .stats .stats-container {
    grid-template-columns: 1fr;
  }

  .stats .stat-item {
    padding: 2rem 1.5rem;
  }

  .stats .stat-item:nth-child(1) {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(2) {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .stats .stat-item .stat-number {
    font-size: 2.75rem;
  }

  .stats .stat-item .stat-description {
    max-width: 300px;
  }

  .stats .achievement-badge {
    padding: 2rem 1.5rem;
  }

  .stats .achievement-badge .badge-icon {
    font-size: 2rem;
  }

  .stats .achievement-badge .badge-title {
    font-size: 1.25rem;
  }

  .stats .achievement-badge .badge-text {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Comparison Table Section
--------------------------------------------------------------*/
.comparison-table {
  padding: 100px 0;
}

.comparison-table .comparison-wrapper {
  position: relative;
}

.comparison-table .table-container {
  border-radius: 24px;
  background: var(--surface-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.comparison-table .comparison-grid {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table .comparison-grid thead tr {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.comparison-table .comparison-grid th,
.comparison-table .comparison-grid td {
  padding: 24px 28px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.comparison-table .comparison-grid th:first-child,
.comparison-table .comparison-grid td:first-child {
  text-align: left;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.comparison-table .comparison-grid .feature-header {
  min-width: 240px;
  padding: 32px 28px;
}

.comparison-table .comparison-grid .feature-header .header-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.comparison-table .comparison-grid .plan-header {
  min-width: 200px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.comparison-table .comparison-grid .plan-header.highlighted {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.comparison-table .comparison-grid .plan-header.highlighted .badge-popular {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent-color);
  color: var(--contrast-color);
  margin-bottom: 16px;
}

.comparison-table .comparison-grid .plan-header.highlighted .badge-popular i {
  font-size: 10px;
}

.comparison-table .comparison-grid .plan-header .badge-popular {
  display: none;
}

.comparison-table .comparison-grid .plan-header .plan-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.comparison-table .comparison-grid .plan-header .plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.comparison-table .comparison-grid .plan-header .btn-select {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.comparison-table .comparison-grid .plan-header .btn-select:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.05);
}

.comparison-table .comparison-grid .plan-header .btn-select.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.comparison-table .comparison-grid .plan-header .btn-select.primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.comparison-table .comparison-grid tbody tr {
  transition: all 0.3s ease;
}

.comparison-table .comparison-grid tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.comparison-table .comparison-grid tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .comparison-grid .feature-cell {
  background: var(--surface-color);
}

.comparison-table .comparison-grid .feature-cell .feature-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.comparison-table .comparison-grid .feature-cell .feature-content i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.comparison-table .comparison-grid .feature-cell .feature-content span {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.comparison-table .comparison-grid .value-cell {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  background: var(--surface-color);
}

.comparison-table .comparison-grid .value-cell.highlight {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.comparison-table .comparison-grid .value-cell .status-yes i {
  font-size: 22px;
  color: #22c55e;
}

.comparison-table .comparison-grid .value-cell .status-no i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

@media (max-width: 992px) {
  .comparison-table {
    padding: 80px 0;
  }

  .comparison-table .table-container {
    border-radius: 16px;
    overflow-x: auto;
  }

  .comparison-table .comparison-grid .feature-header {
    min-width: 200px;
  }

  .comparison-table .comparison-grid .plan-header {
    min-width: 160px;
    padding: 24px 16px;
  }

  .comparison-table .comparison-grid .plan-header .plan-name {
    font-size: 1.125rem;
  }

  .comparison-table .comparison-grid .plan-header .btn-select {
    padding: 10px 20px;
    font-size: 13px;
  }

  .comparison-table .comparison-grid th,
  .comparison-table .comparison-grid td {
    padding: 18px 16px;
  }

  .comparison-table .comparison-grid .feature-cell .feature-content i {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .comparison-table .comparison-grid .feature-cell .feature-content span {
    font-size: 14px;
  }

  .comparison-table .comparison-grid .value-cell {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .comparison-table {
    padding: 48px 0;
  }

  .comparison-table .table-container {
    border-radius: 12px;
  }

  .comparison-table .comparison-grid .feature-header {
    min-width: 150px;
    padding: 20px 14px;
  }

  .comparison-table .comparison-grid .feature-header .header-label {
    font-size: 11px;
  }

  .comparison-table .comparison-grid .plan-header {
    min-width: 130px;
    padding: 20px 12px;
  }

  .comparison-table .comparison-grid .plan-header.highlighted .badge-popular {
    padding: 6px 10px;
    font-size: 10px;
    margin-bottom: 12px;
  }

  .comparison-table .comparison-grid .plan-header .plan-name {
    font-size: 1rem;
  }

  .comparison-table .comparison-grid .plan-header .btn-select {
    padding: 8px 16px;
    font-size: 12px;
  }

  .comparison-table .comparison-grid th,
  .comparison-table .comparison-grid td {
    padding: 14px 12px;
  }

  .comparison-table .comparison-grid .feature-cell .feature-content {
    gap: 10px;
  }

  .comparison-table .comparison-grid .feature-cell .feature-content i {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
  }

  .comparison-table .comparison-grid .feature-cell .feature-content span {
    font-size: 13px;
  }

  .comparison-table .comparison-grid .value-cell {
    font-size: 13px;
  }

  .comparison-table .comparison-grid .value-cell .status-yes i,
  .comparison-table .comparison-grid .value-cell .status-no i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

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

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

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

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

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

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

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

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

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

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

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

.projects-2 .portfolio-filters li:hover,
.projects-2 .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.projects-2 .portfolio-filters li:first-child {
  margin-left: 0;
}

.projects-2 .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects-2 .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects-2 .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects-2 .portfolio-content img {
  transition: 0.3s;
}

.projects-2 .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects-2 .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.projects-2 .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects-2 .portfolio-content .portfolio-info .preview-link,
.projects-2 .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects-2 .portfolio-content .portfolio-info .preview-link:hover,
.projects-2 .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.projects-2 .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects-2 .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects-2 .portfolio-content:hover img {
  transform: scale(1.1);
}

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

.project-details .swiper-wrapper {
  height: auto;
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .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;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

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

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

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

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.project-details .portfolio-description p {
  padding: 0;
}

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

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

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# 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;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.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 p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  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);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Get A Quote Section
--------------------------------------------------------------*/
.get-a-quote .content {
  padding: 30px 0;
  width: 100%;
}

.get-a-quote .content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-a-quote .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.get-a-quote .content p {
  font-size: 14px;
}

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

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

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .top-nav-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background-color: var(--surface-color);
  border-radius: 60px;
  box-shadow: 0 2px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.privacy .top-nav-bar .nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.privacy .top-nav-bar .nav-brand i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.privacy .top-nav-bar .nav-brand span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  white-space: nowrap;
}

.privacy .top-nav-bar .nav-scroll-wrapper {
  flex: 1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.privacy .top-nav-bar .nav-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.privacy .top-nav-bar .nav-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.privacy .top-nav-bar .nav-items li a {
  display: block;
  padding: 8px 16px;
  border-radius: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.privacy .top-nav-bar .nav-items li a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.privacy .top-nav-bar .date-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  flex-shrink: 0;
  white-space: nowrap;
}

.privacy .top-nav-bar .date-badge i {
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .privacy .top-nav-bar {
    border-radius: 16px;
    padding: 16px 20px;
    gap: 12px;
  }

  .privacy .top-nav-bar .nav-brand {
    width: 100%;
  }

  .privacy .top-nav-bar .date-badge {
    width: 100%;
    justify-content: center;
    padding-top: 8px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.privacy .notice-banner {
  margin-bottom: 48px;
}

.privacy .notice-banner .banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 96%));
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.privacy .notice-banner .banner-content .banner-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.privacy .notice-banner .banner-content .banner-icon-wrap i {
  font-size: 1.4rem;
  color: var(--contrast-color);
}

.privacy .notice-banner .banner-content .banner-text h5 {
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 6px;
  font-weight: 700;
}

.privacy .notice-banner .banner-content .banner-text p {
  margin: 0;
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 576px) {
  .privacy .notice-banner .banner-content {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}

.privacy .timeline-wrapper {
  position: relative;
  padding-left: 60px;
}

.privacy .timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 60%), var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 60%));
  border-radius: 3px;
}

@media (max-width: 768px) {
  .privacy .timeline-wrapper {
    padding-left: 44px;
  }

  .privacy .timeline-wrapper::before {
    left: 16px;
  }
}

.privacy .timeline-block {
  position: relative;
  margin-bottom: 40px;
}

.privacy .timeline-block:last-child {
  margin-bottom: 0;
}

.privacy .timeline-block .timeline-marker {
  position: absolute;
  left: -60px;
  top: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.privacy .timeline-block .timeline-marker span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .privacy .timeline-block .timeline-marker {
    left: -44px;
    width: 38px;
    height: 38px;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .privacy .timeline-block .timeline-marker span {
    font-size: 0.78rem;
  }
}

.privacy .timeline-block .timeline-content-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.privacy .timeline-block .timeline-content-card:hover {
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .timeline-block .timeline-content-card h3 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 14px;
  font-weight: 700;
}

.privacy .timeline-block .timeline-content-card h4 {
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.privacy .timeline-block .timeline-content-card p {
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .timeline-block .timeline-content-card p:last-child {
  margin-bottom: 0;
}

.privacy .timeline-block .timeline-content-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy .timeline-block .timeline-content-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .timeline-block .timeline-content-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
}

.privacy .timeline-block .timeline-content-card ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .privacy .timeline-block .timeline-content-card {
    padding: 24px 20px;
  }

  .privacy .timeline-block .timeline-content-card h3 {
    font-size: 1.3rem;
  }
}

.privacy .collection-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.privacy .collection-tabs .tab-panel {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  transition: all 0.3s ease;
}

.privacy .collection-tabs .tab-panel:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .collection-tabs .tab-panel .tab-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
}

.privacy .collection-tabs .tab-panel .tab-header i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.privacy .collection-tabs .tab-panel .tab-header h4 {
  margin: 0;
  font-size: 1rem;
}

.privacy .collection-tabs .tab-panel .tab-body {
  padding: 16px 20px;
}

@media (max-width: 576px) {
  .privacy .collection-tabs {
    grid-template-columns: 1fr;
  }
}

.privacy .purpose-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.privacy .purpose-tiles .purpose-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.privacy .purpose-tiles .purpose-tile:hover {
  border-color: var(--accent-color);
  transform: translateX(6px);
}

.privacy .purpose-tiles .purpose-tile .tile-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 10px;
}

.privacy .purpose-tiles .purpose-tile .tile-icon i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.privacy .purpose-tiles .purpose-tile .tile-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.privacy .purpose-tiles .purpose-tile .tile-text span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width: 768px) {
  .privacy .purpose-tiles {
    grid-template-columns: 1fr;
  }
}

.privacy .disclosure-item {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  padding: 24px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 14px;
}

.privacy .disclosure-item .disclosure-badge {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 12px;
}

.privacy .disclosure-item .disclosure-badge i {
  font-size: 1.3rem;
  color: var(--contrast-color);
}

.privacy .disclosure-item .disclosure-body {
  flex: 1;
}

.privacy .disclosure-item .disclosure-body h4 {
  margin-bottom: 8px;
}

.privacy .disclosure-item .disclosure-body p {
  margin-bottom: 12px;
}

.privacy .disclosure-item .disclosure-body ul {
  margin-top: 10px;
}

@media (max-width: 576px) {
  .privacy .disclosure-item {
    flex-direction: column;
    gap: 14px;
  }
}

.privacy .shield-card {
  text-align: center;
  padding: 28px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  transition: all 0.3s ease;
  height: 100%;
}

.privacy .shield-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .shield-card .shield-icon-wrap {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 18px;
}

.privacy .shield-card .shield-icon-wrap i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.privacy .shield-card h5 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.privacy .shield-card p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.privacy .rights-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.privacy .rights-row .rights-card {
  text-align: center;
  padding: 24px 16px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.privacy .rights-row .rights-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .rights-row .rights-card .rights-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  margin-bottom: 14px;
}

.privacy .rights-row .rights-card .rights-icon i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.privacy .rights-row .rights-card strong {
  display: block;
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.privacy .rights-row .rights-card span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width: 992px) {
  .privacy .rights-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .privacy .rights-row {
    grid-template-columns: 1fr;
  }
}

.privacy .reach-card {
  text-align: center;
  padding: 28px 20px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  transition: all 0.3s ease;
  height: 100%;
}

.privacy .reach-card:hover {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.privacy .reach-card i {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 14px;
  display: block;
}

.privacy .reach-card h6 {
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.privacy .reach-card span {
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media print {
  .privacy .top-nav-bar {
    display: none;
  }

  .privacy .timeline-wrapper {
    padding-left: 0;
  }

  .privacy .timeline-wrapper::before {
    display: none;
  }

  .privacy .timeline-block .timeline-marker {
    display: none;
  }

  .privacy .timeline-block .timeline-content-card {
    border: 1pt solid #ccc;
    box-shadow: none;
    page-break-inside: avoid;
  }

  .privacy .collection-tabs,
  .privacy .purpose-tiles,
  .privacy .rights-row {
    display: block;
  }

  .privacy .tab-panel,
  .privacy .purpose-tile,
  .privacy .rights-card,
  .privacy .shield-card {
    margin-bottom: 10pt;
    box-shadow: none;
    border: 1pt solid #ccc;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 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;
}

/*--------------------------------------------------------------
# Search Widget Widget
--------------------------------------------------------------*/
.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Categories Widget Widget
--------------------------------------------------------------*/
.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

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

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Recent Posts Widget Widget
--------------------------------------------------------------*/
.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%);
}

/*--------------------------------------------------------------
# Tags Widget Widget
--------------------------------------------------------------*/
.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}