@charset "UTF-8";

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3b82f6; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #3b82f6; /* 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: #3b82f6; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

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

.my-light-accent {
  --background-color: #ebf2fd;
  --surface-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);
  }
}

li {
  list-style: none;
}

li i {
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  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: 32px;
  margin-right: 8px;
}

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

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  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 20%);
  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;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 140px;
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.hero .visual-block {
  position: relative;
  padding: 20px;
}

.hero .visual-block .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero .visual-block .image-wrapper img {
  border-radius: 18px;
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.hero .visual-block .image-wrapper:hover img {
  transform: scale(1.03);
}

.hero .visual-block .accent-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 576px) {
  .hero .visual-block .accent-badge {
    padding: 0.75rem 1rem;
  }
}

.hero .visual-block .accent-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .visual-block .accent-badge .badge-icon i {
  font-size: 1.25rem;
  color: var(--contrast-color);
}

.hero .visual-block .accent-badge .badge-info {
  display: flex;
  flex-direction: column;
}

.hero .visual-block .accent-badge .badge-info .badge-title {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

.hero .visual-block .accent-badge .badge-info .badge-value {
  font-size: 1.375rem;
  font-weight: 700;
}

.hero .intro-content {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .hero .intro-content {
    padding-left: 0;
  }
}

.hero .intro-content .tagline {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero .intro-content h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

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

.hero .intro-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 540px;
}

.hero .action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero .action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero .action-buttons .btn-launch {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .action-buttons .btn-launch:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.hero .action-buttons .btn-outline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--accent-color);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .action-buttons .btn-outline i {
  font-size: 1.25rem;
}

.hero .action-buttons .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.hero .metrics-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero .metrics-row {
    flex-direction: column;
  }
}

.hero .metrics-row .metric-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  background: var(--surface-color);
  transition: all 0.3s ease;
}

.hero .metrics-row .metric-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

.hero .metrics-row .metric-card>i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .metrics-row .metric-card .metric-info {
  display: flex;
  flex-direction: column;
}

.hero .metrics-row .metric-card .metric-info strong {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.hero .metrics-row .metric-card .metric-info span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .media-block {
  position: relative;
}

.about .media-block .primary-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 4px 6px color-mix(in srgb, var(--default-color), transparent 93%);
}

@media (max-width: 768px) {
  .about .media-block .primary-photo {
    height: 320px;
  }
}

.about .media-block .award-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 4px 6px color-mix(in srgb, var(--default-color), transparent 93%);
}

.about .media-block .award-badge>i {
  font-size: 20px;
  color: var(--accent-color);
}

.about .media-block .award-badge .award-info {
  display: flex;
  flex-direction: column;
}

.about .media-block .award-badge .award-info .award-count {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.about .media-block .award-badge .award-info .award-text {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.about .media-block .thumbnail-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.about .media-block .thumbnail-row img {
  flex: 1;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: box-shadow 0.2s ease;
}

.about .media-block .thumbnail-row img:hover {
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .media-block .thumbnail-row {
    flex-direction: column;
  }

  .about .media-block .thumbnail-row img {
    height: 140px;
  }
}

.about .info-block {
  padding-left: 16px;
}

@media (max-width: 992px) {
  .about .info-block {
    padding-left: 0;
  }
}

.about .info-block .topic-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.about .info-block .topic-badge i {
  font-size: 13px;
}

.about .info-block h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .about .info-block h2 {
    font-size: 1.75rem;
  }
}

.about .info-block p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 32px;
  max-width: 560px;
}

.about .info-block .metrics-row {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 576px) {
  .about .info-block .metrics-row {
    flex-direction: column;
    gap: 12px;
  }
}

.about .info-block .metrics-row .metric-card {
  flex: 1;
  padding: 20px 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
  text-align: center;
  transition: all 0.2s ease;
}

.about .info-block .metrics-row .metric-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .info-block .metrics-row .metric-card .metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 6px;
}

.about .info-block .metrics-row .metric-card .metric-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about .info-block .highlights-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 8px 0;
  margin-bottom: 32px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
}

.about .info-block .highlights-card .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--default-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .info-block .highlights-card .highlight-item:last-child {
  border-bottom: none;
}

.about .info-block .highlights-card .highlight-item i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 6px;
}

.about .info-block .action-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .about .info-block .action-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.about .info-block .action-group .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.about .info-block .action-group .btn-main:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
}

.about .info-block .action-group .btn-main:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .info-block .action-group .btn-main i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.about .info-block .action-group .btn-main:hover i {
  transform: translateX(2px);
}

.about .info-block .action-group .helpline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about .info-block .action-group .helpline>i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 18px;
}

.about .info-block .action-group .helpline .helpline-text {
  display: flex;
  flex-direction: column;
}

.about .info-block .action-group .helpline .helpline-text span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 500;
}

.about .info-block .action-group .helpline .helpline-text a {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about .info-block .action-group .helpline .helpline-text a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-top: 60px;
  position: relative;
  padding-bottom: 60px;
}

.services .intro-block {
  padding-bottom: 24px;
}

.services .intro-block .label-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.services .intro-block h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.services .intro-block p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .intro-block .btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s, background-color 0.3s;
}

.services .intro-block .btn-outline-cta:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.services .item-card {
  padding: 48px 36px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 0;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.services .item-card .step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.services .item-card .icon-wrap {
  margin-bottom: 28px;
}

.services .item-card .icon-wrap i {
  font-size: 28px;
  color: var(--accent-color);
}

.services .item-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.services .item-card h4 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.services .item-card p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 24px;
  flex-grow: 1;
}

.services .item-card .read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  transition: gap 0.3s;
}

.services .item-card .read-link:hover {
  gap: 10px;
}

.services .item-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.services .item-card:hover h4 a {
  color: var(--accent-color);
}

.services .slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.services .slider-controls .divider-line {
  width: 48px;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .slider-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  background: transparent;
  color: var(--default-color);
  font-size: 18px;
  transition: border-color 0.3s, color 0.3s;
}

.services .slider-controls button:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding-top: 40px;
  overflow-x: hidden;
  padding-bottom: 40px;
  /* Responsive adjustments */
}

.clients .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.clients .clients-slider:not(:last-child) {
  margin-bottom: 20px;
}

.clients .clients-track {
  display: flex;
  width: fit-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.clients .clients-track.track-1 {
  animation-name: scroll-left;
}

.clients .clients-track.track-2 {
  animation-name: scroll-right;
}

.clients .clients-track:hover {
  animation-play-state: paused;
}

.clients .clients-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients .clients-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

.clients .clients-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clients .clients-slide:hover::before {
  left: 100%;
}

.clients .clients-slide:hover img {
  filter: none;
  opacity: 1;
}

.clients .clients-slide img {
  max-width: 80%;
  max-height: 60%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2080px);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-2080px);
  }

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

@media (max-width: 991px) {
  .clients .clients-slide {
    width: 180px;
    height: 90px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1760px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1760px);
    }

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

@media (max-width: 767px) {
  .clients .clients-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1440px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1440px);
    }

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 60px;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding-bottom: 60px;
}

.call-to-action .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.call-to-action .cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--background-color), transparent 80%);
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .call-to-action .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .call-to-action .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.call-to-action .cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.call-to-action .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action .cta-features .feature-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.call-to-action .cta-features .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 576px) {
  .call-to-action .cta-features {
    flex-direction: column;
    gap: 1rem;
  }

  .call-to-action .cta-features .feature-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    min-height: 400px;
    padding: 80px 0;
  }

  .call-to-action .cta-content h2 {
    margin-bottom: 1rem;
  }

  .call-to-action .cta-content p {
    margin-bottom: 2rem;
  }

  .call-to-action .cta-buttons {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--background-color);
  padding-bottom: 80px;
}

.hero-2 .hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-2 .hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-2 .hero-bg-shapes .shape-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 12%, transparent), transparent 70%);
  top: -120px;
  right: -80px;
}

.hero-2 .hero-bg-shapes .shape-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 8%, transparent), transparent 70%);
  bottom: 0;
  left: -80px;
}

.hero-2 .hero-bg-shapes .shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, color-mix(in srgb, #f59e0b 10%, transparent), transparent 70%);
  top: 40%;
  left: 45%;
}

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

.hero-2 .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color) 10%, var(--background-color));
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-2 .badge-tag i {
  font-size: 12px;
  color: #f59e0b;
}

.hero-2 .hero-headline {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--heading-color);
  margin-bottom: 24px;
}

.hero-2 .hero-headline .headline-accent {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, #f59e0b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-2 .hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-2 .hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-2 .btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #f59e0b));
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color) 35%, transparent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-2 .btn-primary-hero i {
  font-size: 16px;
}

.hero-2 .btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color) 45%, transparent);
  color: #ffffff;
}

.hero-2 .btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--accent-color);
  padding: 13px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid color-mix(in srgb, var(--accent-color) 50%, transparent);
  transition: all 0.3s ease;
}

.hero-2 .btn-secondary-hero i {
  font-size: 16px;
}

.hero-2 .btn-secondary-hero:hover {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.hero-2 .hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-2 .trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-2 .trust-item .trust-stars {
  display: flex;
  gap: 3px;
}

.hero-2 .trust-item .trust-stars i {
  font-size: 13px;
  color: #f59e0b;
}

.hero-2 .trust-item .trust-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.hero-2 .trust-item .trust-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  font-weight: 500;
}

.hero-2 .trust-divider {
  width: 1px;
  height: 36px;
  background: color-mix(in srgb, var(--default-color) 15%, transparent);
  flex-shrink: 0;
}

.hero-2 .hero-visual {
  position: relative;
  padding: 16px 16px 16px 16px;
}

.hero-2 .hero-visual .img-main-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-2 .hero-visual .img-main-wrapper .img-main {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
}

@media (max-width: 992px) {
  .hero-2 .hero-visual .img-main-wrapper .img-main {
    height: 360px;
  }
}

.hero-2 .hero-visual .img-main-wrapper .img-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, color-mix(in srgb, var(--heading-color) 40%, transparent) 100%);
  border-radius: 24px;
  pointer-events: none;
}

.hero-2 .hero-visual .floating-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  min-width: 180px;
  z-index: 10;
}

.hero-2 .hero-visual .floating-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color) 12%, var(--background-color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-2 .hero-visual .floating-card .card-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.hero-2 .hero-visual .floating-card .card-icon.card-icon-green {
  background: color-mix(in srgb, #22c55e 12%, var(--background-color));
}

.hero-2 .hero-visual .floating-card .card-icon.card-icon-green i {
  color: #22c55e;
}

.hero-2 .hero-visual .floating-card .card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-2 .hero-visual .floating-card .card-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.hero-2 .hero-visual .floating-card .card-text span {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color) 55%, transparent);
}

.hero-2 .hero-visual .card-chef {
  top: -10px;
  left: -20px;
}

@media (max-width: 576px) {
  .hero-2 .hero-visual .card-chef {
    left: 8px;
    top: 8px;
  }
}

.hero-2 .hero-visual .card-reservation {
  bottom: 48px;
  right: -10px;
}

@media (max-width: 576px) {
  .hero-2 .hero-visual .card-reservation {
    right: 8px;
    bottom: 124px;
  }
}

.hero-2 .hero-visual .floating-badge {
  position: absolute;
  bottom: -16px;
  left: 28px;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 10px 16px 10px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  z-index: 10;
}

@media (max-width: 576px) {
  .hero-2 .hero-visual .floating-badge {
    bottom: -10px;
    left: 12px;
  }
}

.hero-2 .hero-visual .floating-badge .badge-food-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-2 .hero-visual .floating-badge .badge-food-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-2 .hero-visual .floating-badge .badge-food-text .badge-food-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-color);
}

.hero-2 .hero-visual .floating-badge .badge-food-text .badge-food-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .hero-2 {
    padding: 80px 0 64px;
  }

  .hero-2 .hero-description {
    max-width: 100%;
  }

  .hero-2 .hero-visual {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .hero-2 {
    padding: 64px 0 48px;
  }

  .hero-2 .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-2 .btn-primary-hero,
  .hero-2 .btn-secondary-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-2 .hero-trust-bar {
    gap: 16px;
  }

  .hero-2 .trust-divider {
    height: 28px;
  }
}

@media (max-width: 576px) {
  .hero-2 .hero-visual {
    padding: 8px;
  }
}

/*--------------------------------------------------------------
# Featured Programs Section
--------------------------------------------------------------*/
.featured-programs .featured-program {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 4px 25px 0 color-mix(in srgb, var(--default-color), transparent 92%);
  transition: box-shadow 0.3s ease;
}

.featured-programs .featured-program:hover {
  box-shadow: 0 10px 40px 0 color-mix(in srgb, var(--default-color), transparent 86%);
}

.featured-programs .featured-program:hover .featured-img img {
  transform: scale(1.06);
}

.featured-programs .featured-img {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

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

.featured-programs .featured-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.featured-programs .featured-tag i {
  margin-right: 5px;
  font-size: 0.72rem;
}

.featured-programs .featured-content {
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.featured-programs .featured-content .category-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.featured-programs .featured-content h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.3;
}

.featured-programs .featured-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.featured-programs .stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.featured-programs .stat-chip {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.featured-programs .stat-chip i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 0.95rem;
}

.featured-programs .explore-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.featured-programs .explore-link i {
  margin-left: 8px;
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.featured-programs .explore-link:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.featured-programs .explore-link:hover i {
  transform: translateX(4px);
}

.featured-programs .program-card {
  background-color: var(--surface-color);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-programs .program-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-8px);
  box-shadow: 0 12px 35px 0 color-mix(in srgb, var(--default-color), transparent 88%);
}

.featured-programs .program-card:hover .card-thumb img {
  transform: scale(1.08);
}

.featured-programs .program-card:hover .card-link {
  color: var(--accent-color);
}

.featured-programs .program-card:hover .card-link i {
  transform: translateX(4px);
}

.featured-programs .card-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.featured-programs .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-programs .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, color-mix(in srgb, #000, transparent 30%), transparent);
  display: flex;
  justify-content: flex-end;
}

.featured-programs .duration-badge {
  background-color: var(--contrast-color);
  color: var(--default-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.featured-programs .card-body-content {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-programs .card-body-content .degree-type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.featured-programs .card-body-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1.35;
}

.featured-programs .card-body-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.featured-programs .card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  margin-top: auto;
}

.featured-programs .card-link i {
  margin-left: 6px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .featured-programs .featured-img {
    min-height: 260px;
  }

  .featured-programs .featured-content {
    padding: 30px 25px;
  }

  .featured-programs .featured-content h3 {
    font-size: 1.4rem;
  }

  .featured-programs .stats-row {
    gap: 8px;
  }

  .featured-programs .stat-chip {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .featured-programs .featured-program {
    border-left: none;
    border-top: 5px solid var(--accent-color);
  }

  .featured-programs .featured-img {
    min-height: 220px;
  }

  .featured-programs .featured-content {
    padding: 24px 20px;
  }

  .featured-programs .featured-content h3 {
    font-size: 1.3rem;
  }

  .featured-programs .featured-content p {
    font-size: 0.9rem;
  }

  .featured-programs .card-thumb {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .featured-programs .featured-img {
    min-height: 200px;
  }

  .featured-programs .stats-row {
    flex-direction: column;
    gap: 8px;
  }

  .featured-programs .stat-chip {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 80px 0;
  background-color: var(--surface-color);
}

.why-us .content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.why-us .content>p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.why-us .features-list .feature-item {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .features-list .feature-item:last-child {
  border-bottom: none;
}

.why-us .features-list .feature-item .icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .features-list .feature-item .icon-wrapper i {
  font-size: 1.3rem;
  color: var(--contrast-color);
}

.why-us .features-list .feature-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.why-us .features-list .feature-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .cta-buttons .btn {
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.why-us .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.why-us .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.why-us .cta-buttons .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.why-us .cta-buttons .btn.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.why-us .stats-section .stat-card {
  background-color: var(--background-color);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.why-us .stats-section .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.why-us .stats-section .stat-card .stat-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.why-us .stats-section .stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  display: block;
}

.why-us .stats-section .stat-card .stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.8rem;
}

.why-us .stats-section .stat-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.why-us .testimonial-preview .testimonial-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  padding: 2rem;
  border-radius: 15px;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.why-us .testimonial-preview .testimonial-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.why-us .testimonial-preview .testimonial-card .quote-icon i {
  font-size: 2rem;
  opacity: 0.7;
}

.why-us .testimonial-preview .testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.why-us .testimonial-preview .testimonial-card .testimonial-author .author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.why-us .testimonial-preview .testimonial-card .testimonial-author h6 {
  margin: 0;
  font-weight: 600;
  color: var(--contrast-color);
}

.why-us .testimonial-preview .testimonial-card .testimonial-author span {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .why-us {
    padding: 60px 0;
  }

  .why-us .content h3 {
    font-size: 1.8rem;
  }

  .why-us .content .features-list .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .why-us .content .features-list .feature-item .icon-wrapper {
    margin-bottom: 1rem;
  }

  .why-us .content .features-list .feature-item h5 {
    margin-bottom: 0.8rem;
  }

  .why-us .content .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .why-us .content .cta-buttons .btn {
    width: 100%;
  }

  .why-us .stats-section {
    margin-top: 3rem;
  }

  .why-us .stats-section .stat-card {
    padding: 1.5rem;
  }

  .why-us .stats-section .stat-card .stat-number {
    font-size: 2rem;
  }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

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

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

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

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

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

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

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

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

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

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

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

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}


/*--------------------------------------------------------------
# Featured Programs 3 Section
--------------------------------------------------------------*/
.featured-programs-3 .featured-row {
  margin-bottom: 60px;
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .featured-programs-3 .featured-row {
    padding: 24px;
    margin-bottom: 40px;
  }
}

.featured-programs-3 .featured-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.featured-programs-3 .featured-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.featured-programs-3 .featured-image:hover img {
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .featured-programs-3 .featured-image img {
    height: 240px;
  }
}

.featured-programs-3 .featured-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-programs-3 .featured-tag i {
  font-size: 0.7rem;
}

.featured-programs-3 .featured-content {
  padding-right: 20px;
}

@media (max-width: 992px) {
  .featured-programs-3 .featured-content {
    padding-right: 0;
    margin-top: 10px;
  }
}

.featured-programs-3 .featured-content .featured-label {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.featured-programs-3 .featured-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .featured-programs-3 .featured-content h3 {
    font-size: 1.4rem;
  }
}

.featured-programs-3 .featured-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.featured-programs-3 .featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.featured-programs-3 .featured-meta .meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.featured-programs-3 .featured-meta .meta-badge i {
  color: var(--accent-color);
  font-size: 0.85rem;
}

.featured-programs-3 .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-color);
  padding: 10px 0;
  border-bottom: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

.featured-programs-3 .explore-link i {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.featured-programs-3 .explore-link:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.featured-programs-3 .explore-link:hover i {
  transform: translateX(4px);
}

.featured-programs-3 .program-card {
  background-color: var(--surface-color);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-programs-3 .program-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 12px 35px 0 color-mix(in srgb, var(--default-color), transparent 88%);
  transform: translateY(-6px);
}

.featured-programs-3 .program-card:hover .card-thumb img {
  transform: scale(1.08);
}

.featured-programs-3 .program-card:hover .card-link i {
  transform: translateX(4px);
}

.featured-programs-3 .card-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.featured-programs-3 .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-programs-3 .card-thumb .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, color-mix(in srgb, #000, transparent 30%), transparent);
  display: flex;
  justify-content: flex-end;
}

.featured-programs-3 .card-thumb .overlay-duration {
  background-color: color-mix(in srgb, #000, transparent 40%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

@media (max-width: 576px) {
  .featured-programs-3 .card-thumb {
    height: 160px;
  }
}

.featured-programs-3 .card-body {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-programs-3 .card-body .degree-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.featured-programs-3 .card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1.35;
}

.featured-programs-3 .card-body p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.featured-programs-3 .card-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
  margin-top: auto;
}

.featured-programs-3 .card-body .card-link i {
  font-size: 0.78rem;
  transition: transform 0.3s ease;
}

.featured-programs-3 .card-body .card-link:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}


/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 {
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.features-2::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 8%, transparent), transparent 70%);
  pointer-events: none;
}

.features-2 .intro-row {
  margin-bottom: 64px;
}

.features-2 .intro-content {
  padding-right: 24px;
}

.features-2 .intro-content .label-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.features-2 .intro-content .label-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  position: relative;
}

.features-2 .intro-content .label-badge .dot::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.features-2 .intro-content .label-badge span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
}

.features-2 .intro-content .main-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.features-2 .intro-content .description {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color) 85%, transparent);
  margin-bottom: 0;
}

.features-2 .features-wrapper {
  position: relative;
}

.features-2 .feature-box {
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.features-2 .feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent-color);
  transition: height 0.4s ease;
}

.features-2 .feature-box .featured-mark {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--accent-color);
  color: var(--contrast-color);
  z-index: 2;
}

.features-2 .feature-box .icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent-color);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 20%, transparent), color-mix(in srgb, var(--accent-color) 5%, transparent));
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.4s ease;
}

.features-2 .feature-box .icon-wrapper::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features-2 .feature-box .content h4 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--heading-color);
}

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

.features-2 .feature-box:hover {
  border-color: var(--accent-color);
  transform: translateX(8px);
  box-shadow: -8px 12px 32px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.features-2 .feature-box:hover::before {
  height: 100%;
}

.features-2 .feature-box:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.features-2 .feature-box:hover .icon-wrapper::after {
  opacity: 1;
}

.features-2 .feature-box.highlight {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 85%, var(--default-color)));
  border-color: var(--accent-color);
  transform: scale(1.03);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.features-2 .feature-box.highlight::before {
  background: var(--contrast-color);
}

.features-2 .feature-box.highlight .icon-wrapper {
  background: color-mix(in srgb, var(--contrast-color) 25%, transparent);
  color: var(--contrast-color);
}

.features-2 .feature-box.highlight .icon-wrapper::after {
  border-color: color-mix(in srgb, var(--contrast-color) 40%, transparent);
}

.features-2 .feature-box.highlight .content h4 {
  color: var(--contrast-color);
}

.features-2 .feature-box.highlight .content p {
  color: color-mix(in srgb, var(--contrast-color) 90%, transparent);
}

.features-2 .feature-box.highlight:hover {
  transform: scale(1.06) translateX(8px);
  box-shadow: -8px 20px 56px color-mix(in srgb, var(--accent-color) 35%, transparent);
}

.features-2 .trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 40px;
  border-radius: 100px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 8%, var(--surface-color)), var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color) 15%, transparent);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color) 6%, transparent);
  max-width: fit-content;
  margin: 0 auto;
}

.features-2 .trust-badge .stars-wrapper {
  display: flex;
  gap: 4px;
  color: #ffc107;
  font-size: 20px;
}

.features-2 .trust-badge .divider {
  width: 2px;
  height: 24px;
  background: color-mix(in srgb, var(--default-color) 15%, transparent);
}

.features-2 .trust-badge .trust-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
}

.features-2 .trust-badge .trust-text strong {
  font-weight: 700;
  color: var(--accent-color);
}

.features-2 .trust-badge .verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
}

.features-2 .trust-badge .verified-badge i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .features-2 .intro-content {
    padding-right: 0;
    margin-bottom: 48px;
  }

  .features-2 .intro-content .main-title {
    font-size: 36px;
  }

  .features-2 .intro-row {
    margin-bottom: 48px;
  }

  .features-2 .feature-box.highlight {
    transform: scale(1);
  }

  .features-2 .feature-box.highlight:hover {
    transform: scale(1.02) translateX(8px);
  }
}

@media (max-width: 768px) {
  .features-2 {
    padding: 96px 0;
  }

  .features-2::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }

  .features-2 .intro-content .main-title {
    font-size: 32px;
  }

  .features-2 .intro-content .description {
    font-size: 16px;
  }

  .features-2 .trust-badge {
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px;
    border-radius: 24px;
  }

  .features-2 .trust-badge .divider {
    width: 40px;
    height: 2px;
  }

  .features-2 .trust-badge .trust-text {
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps {
  background: linear-gradient(170deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color) 6%, var(--background-color)) 100%);
  position: relative;
  overflow: hidden;
}

.steps::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  pointer-events: none;
}

.steps::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 4%, transparent);
  pointer-events: none;
}

.steps .intro-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--heading-color);
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .steps .intro-content h2 {
    font-size: 2rem;
  }
}

.steps .intro-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  max-width: 560px;
}

.steps .action-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .steps .action-buttons {
    justify-content: flex-start;
    margin-top: 24px;
  }
}

.steps .action-buttons .btn-bold-primary {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 75%, black));
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color) 35%, transparent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps .action-buttons .btn-bold-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color) 45%, transparent);
}

.steps .action-buttons .btn-bold-outline {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps .action-buttons .btn-bold-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color) 35%, transparent);
}

.steps .process-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color) 8%, transparent);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  overflow: hidden;
}

.steps .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 48px color-mix(in srgb, var(--default-color) 14%, transparent);
}

.steps .process-card:hover .card-accent-bar {
  height: 6px;
}

.steps .process-card:hover .card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 75%, black));
  color: var(--contrast-color);
}

.steps .process-card:hover .card-number {
  opacity: 0.12;
}

.steps .process-card .card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 70%, black));
  transition: height 0.3s ease;
}

.steps .process-card .card-number {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  opacity: 0.08;
  line-height: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.steps .process-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color) 12%, var(--surface-color));
  color: var(--accent-color);
  font-size: 28px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.steps .process-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.steps .process-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  margin-bottom: 0;
}

.steps .process-card ul {
  text-align: left;
  font-size: 0.8rem;
}

.steps .connector-line {
  position: relative;
  margin-top: 32px;
  height: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
}

.steps .connector-line .line-track {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color) 15%, transparent), var(--accent-color), color-mix(in srgb, var(--accent-color) 15%, transparent));
}


/*--------------------------------------------------------------
# Services 6 Section
--------------------------------------------------------------*/
.services-6 {
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
}

.services-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/abstract-bg-3.webp") center/cover;
  opacity: 0.03;
  z-index: 1;
}

.services-6 .container {
  position: relative;
  z-index: 2;
}

.services-6 .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: 0 10px 40px color-mix(in srgb, var(--heading-color), transparent 90%);
}

.services-6 .service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services-6 .service-card:hover .service-bg {
  opacity: 1;
  transform: scale(1.2) rotate(15deg);
}

.services-6 .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
}

.services-6 .service-card:hover .btn-cta {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 30%));
  transform: translateX(5px);
}

.services-6 .service-card.featured {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  border: 2px solid var(--accent-color);
  transform: scale(1.02);
}

.services-6 .service-card.featured .service-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  width: 80px;
  height: 80px;
}

.services-6 .service-card.featured .service-icon i {
  font-size: 40px;
}

.services-6 .service-card.featured .service-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.services-6 .service-card.featured .service-meta {
  margin: 25px 0;
}

.services-6 .service-card.compact {
  padding: 30px 25px;
}

.services-6 .service-card.compact .service-icon {
  width: 60px;
  height: 60px;
}

.services-6 .service-card.compact .service-icon i {
  font-size: 28px;
}

.services-6 .service-card .service-bg {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.services-6 .service-card .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-6 .service-card .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.services-6 .service-card .service-content {
  position: relative;
  z-index: 2;
}

.services-6 .service-card .service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.services-6 .service-card .service-content h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-6 .service-card .service-content h3 a:hover {
  color: var(--accent-color);
}

.services-6 .service-card .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.services-6 .service-card .service-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 25px;
  flex-wrap: wrap;
}

.services-6 .service-card .service-meta .badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-6 .service-card .service-meta .badge.popular {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.services-6 .service-card .service-meta .price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
}

.services-6 .service-card .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), var(--accent-color));
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services-6 .service-card .btn-cta:hover {
  color: var(--contrast-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services-6 .service-card .btn-cta i {
  transition: all 0.3s ease;
}

.services-6 .stats-highlight {
  background: var(--accent-color);
  border-radius: 25px;
  padding: 50px 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.services-6 .stats-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 1;
}

.services-6 .stats-highlight .row {
  position: relative;
  z-index: 2;
}

.services-6 .stats-highlight .stat-item {
  text-align: center;
  color: var(--contrast-color);
}

.services-6 .stats-highlight .stat-item .stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--contrast-color);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--contrast-color), color-mix(in srgb, var(--accent-color), var(--contrast-color) 70%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .services-6 .stats-highlight .stat-item .stat-number {
    font-size: 36px;
  }
}

.services-6 .stats-highlight .stat-item .stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .services-6 .stats-highlight .stat-item .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services-6 .service-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .services-6 .service-card.featured {
    transform: none;
    margin-bottom: 30px;
  }

  .services-6 .service-card.featured .service-content h3 {
    font-size: 24px;
  }

  .services-6 .service-card .service-icon {
    width: 60px;
    height: 60px;
  }

  .services-6 .service-card .service-icon i {
    font-size: 28px;
  }

  .services-6 .service-card .service-content h3 {
    font-size: 20px;
  }

  .services-6 .stats-highlight {
    padding: 40px 20px;
    margin-top: 40px;
  }
}



/*--------------------------------------------------------------
# Why Us 5 Section
--------------------------------------------------------------*/
.why-us-5 .intro-row {
  margin-bottom: 70px;
}

@media (max-width: 992px) {
  .why-us-5 .intro-row {
    margin-bottom: 50px;
  }
}

.why-us-5 .intro-content {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .why-us-5 .intro-content {
    padding-right: 0;
    text-align: center;
  }
}

.why-us-5 .intro-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.why-us-5 .intro-content .eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

@media (max-width: 992px) {
  .why-us-5 .intro-content .eyebrow::before {
    display: none;
  }
}

.why-us-5 .intro-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
}

.why-us-5 .intro-content h2 em {
  font-style: italic;
  color: var(--accent-color);
  font-weight: 700;
}

@media (max-width: 768px) {
  .why-us-5 .intro-content h2 {
    font-size: 2rem;
  }
}

.why-us-5 .intro-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.why-us-5 .intro-content .learn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.why-us-5 .intro-content .learn-link i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.why-us-5 .intro-content .learn-link:hover {
  border-bottom-color: var(--accent-color);
  color: var(--accent-color);
}

.why-us-5 .intro-content .learn-link:hover i {
  transform: translateX(5px);
}

.why-us-5 .visual-panel {
  position: relative;
  padding: 20px 20px 55px 0;
}

.why-us-5 .visual-panel .corner-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  border-top: 3px solid var(--accent-color);
  border-right: 3px solid var(--accent-color);
  border-radius: 0 14px 0 0;
  z-index: 0;
}

.why-us-5 .visual-panel img {
  border-radius: 14px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 84%);
}

.why-us-5 .visual-panel .badge-metric {
  position: absolute;
  bottom: 20px;
  left: 550px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.why-us-5 .visual-panel .badge-metric .metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--heading-font);
}

.why-us-5 .visual-panel .badge-metric .metric-label {
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 4px;
  white-space: nowrap;
}

.why-us-5 .visual-panel .badge-years {
  position: absolute;
  top: 50px;
  left: 50px;
  background-color: var(--surface-color);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 4px solid var(--accent-color);
  z-index: 2;
}

.why-us-5 .visual-panel .badge-years .years-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.why-us-5 .visual-panel .badge-years .years-label {
  font-size: 0.65rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 4px;
  white-space: nowrap;
  font-weight: 600;
}

.why-us-5 .features-row {
  position: relative;
}

.why-us-5 .features-row::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(to right, transparent, color-mix(in srgb, var(--default-color), transparent 80%), transparent);
}

.why-us-5 .feat-card {
  background-color: var(--surface-color);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 93%);
  border-bottom: 3px solid transparent;
  height: 100%;
  transition: all 0.3s ease;
}

.why-us-5 .feat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom-color: var(--accent-color);
}

.why-us-5 .feat-card:hover .feat-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 14px;
}

.why-us-5 .feat-card:hover .feat-num {
  opacity: 0.06;
}

.why-us-5 .feat-card .feat-icon {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.why-us-5 .feat-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-us-5 .feat-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  margin: 0;
}

.why-us-5 .feat-card .feat-num {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-size: 4.2rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: var(--heading-color);
  opacity: 0.032;
  line-height: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
}


/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.services-2 .section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-2 .section-header .badge-wrapper {
  margin-bottom: 1rem;
}

.services-2 .section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.services-2 .section-header .section-badge i {
  font-size: 14px;
}

.services-2 .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .services-2 .section-header .section-title {
    font-size: 2rem;
  }
}

.services-2 .section-header .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 700px;
  margin: 0 auto;
}

.services-2 .services-container {
  margin-bottom: 60px;
}

.services-2 .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
}

.services-2 .services-container .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services-2 .services-container .service-item:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.services-2 .services-container .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services-2 .services-container .service-item .service-icon {
  flex: 0 0 90px;
  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: 2rem;
  transition: all 0.3s ease;
}

.services-2 .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.services-2 .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 90%);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.services-2 .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.services-2 .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 2;
}

.services-2 .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services-2 .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.services-2 .cta-wrapper .cta-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), color-mix(in srgb, var(--accent-color), transparent 5%));
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-2 .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/bg/dotted-world-1.webp");
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.services-2 .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.services-2 .cta-wrapper .cta-box .cta-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .services-2 .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
}

.services-2 .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.services-2 .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.services-2 .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.services-2 .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services-2 .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .services-2 .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-2 {
    padding: 60px 0;
  }

  .services-2 .services-container .service-item {
    flex-direction: column;
  }

  .services-2 .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }

  .services-2 .cta-wrapper .cta-box {
    padding: 30px 20px;
  }
}


/*--------------------------------------------------------------
# Steps 2 Section
--------------------------------------------------------------*/
.steps-2 .process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.steps-2 .process-step .step-number {
  font-size: 56px;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

.steps-2 .process-step .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.steps-2 .process-step .step-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.steps-2 .process-step h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.steps-2 .process-step p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

@media (min-width: 992px) {
  .steps-2 .process-step::after {
    content: "";
    position: absolute;
    top: 110px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 60%);
  }

  .steps-2 .col-lg-3:last-child .process-step::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .steps-2 .process-step {
    padding: 24px 16px;
  }

  .steps-2 .process-step .step-number {
    font-size: 44px;
  }

  .steps-2 .process-step .step-icon {
    width: 64px;
    height: 64px;
  }

  .steps-2 .process-step .step-icon i {
    font-size: 24px;
  }

  .steps-2 .process-step h3 {
    font-size: 20px;
  }
}


/*--------------------------------------------------------------
# Steps 3 Section
--------------------------------------------------------------*/
.steps-3 {
  position: relative;
  overflow: hidden;
}

.steps-3 .process-image {
  position: relative;
}

.steps-3 .process-image .rounded-custom {
  border-radius: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease;
}

.steps-3 .process-image .rounded-custom:hover {
  transform: translateY(-10px);
}

@media (max-width: 991px) {
  .steps-3 .process-image {
    margin-bottom: 2rem;
  }
}

.steps-3 .process-content .section-heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .steps-3 .process-content .section-heading {
    font-size: 2rem;
  }
}

.steps-3 .process-content .intro-text {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .steps-3 .process-content .intro-text {
    font-size: 1rem;
  }
}

.steps-3 .process-steps {
  margin-top: 2rem;
}

.steps-3 .process-steps .step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

@media (max-width: 576px) {
  .steps-3 .process-steps .step-item {
    gap: 1rem;
  }
}

.steps-3 .process-steps .step-item:last-child {
  margin-bottom: 0;
}

.steps-3 .process-steps .step-item .step-indicator {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .steps-3 .process-steps .step-item .step-indicator {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.steps-3 .process-steps .step-item:hover .step-indicator {
  transform: scale(1.1);
}

.steps-3 .process-steps .step-item .step-details h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

@media (max-width: 576px) {
  .steps-3 .process-steps .step-item .step-details h4 {
    font-size: 1.125rem;
  }
}

.steps-3 .process-steps .step-item .step-details p {
  color: var(--default-color);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .steps-3 .step-item {
    margin-bottom: 1.5rem;
  }
}


/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 .feature-block {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-3 .feature-block:last-child {
  border-bottom: none;
}

.features-3 .feature-block .image-wrapper {
  position: relative;
  display: inline-block;
}

.features-3 .feature-block .image-wrapper .img-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(50px);
}

.features-3 .feature-block .image-wrapper img {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.features-3 .feature-block .image-wrapper img:hover {
  transform: translateY(-10px) scale(1.02);
}

.features-3 .feature-block .content-wrapper .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease;
}

.features-3 .feature-block .content-wrapper .icon-box:hover {
  background: var(--accent-color);
}

.features-3 .feature-block .content-wrapper .icon-box:hover i {
  color: var(--contrast-color);
}

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

.features-3 .feature-block .content-wrapper h3 {
  color: var(--heading-color);
  font-size: 30px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .features-3 .feature-block .content-wrapper h3 {
    font-size: 24px;
  }
}

.features-3 .feature-block .content-wrapper .description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  line-height: 1.6;
}

.features-3 .feature-block .content-wrapper .feature-list {
  margin-top: 20px;
}

.features-3 .feature-block .content-wrapper .feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.features-3 .feature-block .content-wrapper .feature-list li:last-child {
  margin-bottom: 0;
}

.features-3 .feature-block .content-wrapper .feature-list li i {
  font-size: 18px;
  color: var(--contrast-color);
  margin-right: 15px;
  background: var(--accent-color);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-3 .feature-block .content-wrapper .feature-list li span {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 16px;
}


/*--------------------------------------------------------------
# Team 3 Section
--------------------------------------------------------------*/
.team-3 {
  padding: 100px 0;
}

.team-3 .intro-block .intro-label {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.team-3 .intro-block h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.team-3 .intro-block p {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 35px;
  max-width: 450px;
}

.team-3 .intro-block .stats-strip {
  display: flex;
  gap: 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 25px;
}

.team-3 .intro-block .stats-strip .stat {
  flex: 1;
  padding-right: 20px;
}

.team-3 .intro-block .stats-strip .stat:not(:last-child) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-right: 20px;
}

.team-3 .intro-block .stats-strip .stat .stat-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.team-3 .intro-block .stats-strip .stat .stat-desc {
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team-3 .member-card .member-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

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

.team-3 .member-card .member-img .member-hover {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.team-3 .member-card .member-img .member-hover .social-links {
  display: flex;
  gap: 8px;
}

.team-3 .member-card .member-img .member-hover .social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
  transition: all 0.3s ease-out;
  border-radius: 50%;
}

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

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

.team-3 .member-card .member-img:hover .member-hover {
  opacity: 1;
}

.team-3 .member-card .member-details {
  padding: 15px 0 5px;
}

.team-3 .member-card .member-details h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 2px;
  color: var(--heading-color);
  line-height: 1.2;
}

.team-3 .member-card .member-details span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

.team-3 .leadership-section .section-label {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 10px;
}

.team-3 .leadership-section .leadership-heading {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--heading-color);
  margin: 0;
}

.team-3 .leadership-section .slide-indicator {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  padding-bottom: 8px;
}

.team-3 .leadership-section .leaders-slider {
  padding-bottom: 50px;
}

.team-3 .leadership-section .leaders-slider .leader-tile {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background: var(--surface-color);
  transition: all 0.3s ease-out;
  height: 100%;
}

.team-3 .leadership-section .leaders-slider .leader-tile:hover {
  box-shadow: 0 30px 70px color-mix(in srgb, var(--default-color), transparent 90%);
}

.team-3 .leadership-section .leaders-slider .leader-tile:hover .leader-photo img {
  transform: scale(1.05);
}

.team-3 .leadership-section .leaders-slider .leader-tile .leader-photo {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.team-3 .leadership-section .leaders-slider .leader-tile .leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.team-3 .leadership-section .leaders-slider .leader-tile .leader-body {
  padding: 25px;
}

.team-3 .leadership-section .leaders-slider .leader-tile .leader-body h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--heading-color);
  line-height: 1.2;
}

.team-3 .leadership-section .leaders-slider .leader-tile .leader-body .role {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.team-3 .leadership-section .leaders-slider .leader-tile .leader-body p {
  font-size: 14px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 18px;
}

.team-3 .leadership-section .leaders-slider .leader-tile .leader-body .leader-links {
  display: flex;
  gap: 8px;
}

.team-3 .leadership-section .leaders-slider .leader-tile .leader-body .leader-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  font-size: 14px;
  transition: all 0.3s ease-out;
}

.team-3 .leadership-section .leaders-slider .leader-tile .leader-body .leader-links a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.team-3 .leadership-section .leaders-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: color-mix(in srgb, var(--default-color), transparent 75%);
  opacity: 1;
  transition: all 0.3s ease-out;
}

.team-3 .leadership-section .leaders-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  width: 24px;
}

.team-3 .careers-banner {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 50px;
}

.team-3 .careers-banner .banner-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--accent-color);
  font-size: 20px;
}

.team-3 .careers-banner h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.team-3 .careers-banner p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  max-width: 500px;
}

.team-3 .careers-banner .banner-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.team-3 .careers-banner .banner-actions .btn-accent {
  display: inline-flex;
  align-items: center;
  padding: 17px 25px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  transition: all 0.3s ease-out;
}

.team-3 .careers-banner .banner-actions .btn-accent:hover {
  transform: translateY(-4px);
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team-3 .careers-banner .banner-actions .btn-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease-out;
  position: relative;
}

.team-3 .careers-banner .banner-actions .btn-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--default-color);
  transition: width 0.3s ease-out;
}

.team-3 .careers-banner .banner-actions .btn-text:hover {
  color: var(--accent-color);
}

.team-3 .careers-banner .banner-actions .btn-text:hover::after {
  width: 100%;
  background: var(--accent-color);
}

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

@media (max-width: 992px) {
  .team-3 .intro-block {
    margin-bottom: 40px;
    text-align: center;
  }

  .team-3 .intro-block p {
    max-width: 100% !important;
  }

  .team-3 .intro-block .stats-strip {
    justify-content: center;
  }

  .team-3 .careers-banner {
    padding: 35px 25px;
    text-align: center;
  }

  .team-3 .careers-banner p {
    max-width: 100% !important;
  }

  .team-3 .careers-banner .banner-actions {
    justify-content: center;
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .team-3 .intro-block .stats-strip .stat .stat-value {
    font-size: 26px;
  }

  .team-3 .leadership-section .leadership-heading {
    font-size: 26px;
  }

  .team-3 .careers-banner h4 {
    font-size: 24px;
  }

  .team-3 .careers-banner .banner-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .team-3 .intro-block .stats-strip {
    flex-direction: column;
    gap: 15px;
  }

  .team-3 .intro-block .stats-strip .stat {
    padding-right: 0;
    padding-bottom: 15px;
  }

  .team-3 .intro-block .stats-strip .stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-right: 0;
  }
}



/*--------------------------------------------------------------
# Services 4 Section
--------------------------------------------------------------*/
.services-4 {
  padding-top: 60px;
  --panel-radius: 18px;
  padding-bottom: 60px;
}

.services-4 .intro-panel {
  height: 100%;
  padding: 34px;
  border-radius: var(--panel-radius);
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color) 12%, var(--surface-color)), var(--surface-color));
  border: 1px solid color-mix(in srgb, var(--accent-color) 24%, transparent);
}

.services-4 .intro-panel .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.services-4 .intro-panel h3 {
  font-size: 30px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.services-4 .intro-panel p {
  margin-bottom: 22px;
  color: color-mix(in srgb, var(--default-color) 84%, transparent);
  line-height: 1.7;
}

.services-4 .intro-panel .intro-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.services-4 .intro-panel .intro-link i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.services-4 .intro-panel .intro-link:hover i {
  transform: translateX(4px);
}

.services-4 .service-list-wrap {
  display: grid;
  gap: 16px;
}

.services-4 .service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.services-4 .service-item .service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 14%, transparent);
  transition: all 0.3s ease;
}

.services-4 .service-item .service-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.services-4 .service-item .service-content p {
  margin-bottom: 10px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color) 82%, transparent);
}

.services-4 .service-item .service-content .service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  position: relative;
}

.services-4 .service-item .service-content .service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.services-4 .service-item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color) 45%, transparent);
  box-shadow: 0 16px 28px color-mix(in srgb, var(--default-color) 12%, transparent);
}

.services-4 .service-item:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-4 .service-item:hover .service-link::after {
  width: 100%;
}

@media (max-width: 992px) {
  .services-4 .intro-panel {
    padding: 28px;
  }

  .services-4 .intro-panel h3 {
    font-size: 26px;
  }
}

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


/*--------------------------------------------------------------
# About Me 2 Section
--------------------------------------------------------------*/
.about-me-2 {
  padding: 80px 0;
  overflow: hidden;
}

.about-me-2 .author-image {
  position: relative;
  margin-bottom: 30px;
}

.about-me-2 .author-image img {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.about-me-2 .author-image .author-signature {
  position: absolute;
  bottom: -25px;
  right: 20px;
  /*background-color: var(--surface-color);*/
  background-color: #ebf2fd;
  padding: 15px;
  border-radius: 10px;
  border: solid 1px var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  width: 40%;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.about-me-2 .author-image .author-signature img {
  width: 100%;
  height: auto;
  box-shadow: none;
}

.about-me-2 .author-image .author-signature:hover {
  transform: rotate(0deg);
}

@media (max-width: 992px) {
  .about-me-2 .author-image {
    max-width: 450px;
    margin: 0 auto 30px;
  }
}

.about-me-2 .author-info h2 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about-me-2 .author-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .about-me-2 .author-info h3 {
    font-size: 30px;
  }
}

.about-me-2 .author-info .author-credentials {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  font-style: italic;
}

.about-me-2 .author-info .author-bio {
  margin-bottom: 30px;
}

.about-me-2 .author-info .author-bio p {
  color: var(--default-color);
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-me-2 .author-info .author-bio p:last-child {
  margin-bottom: 0;
}

.about-me-2 .author-info .author-awards {
  margin-bottom: 30px;
}

.about-me-2 .author-info .author-awards h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.about-me-2 .author-info .author-awards h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.about-me-2 .author-info .author-awards ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-me-2 .author-info .author-awards ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.about-me-2 .author-info .author-awards ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

.about-me-2 .author-info .author-awards ul li span {
  color: var(--default-color);
  line-height: 1.4;
}

.about-me-2 .author-info .author-social h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.about-me-2 .author-info .author-social h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.about-me-2 .author-info .author-social .social-links {
  display: flex;
  gap: 15px;
}

.about-me-2 .author-info .author-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.about-me-2 .author-info .author-social .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .about-me-2 .author-info {
    text-align: center;
  }

  .about-me-2 .author-info h2,
  .about-me-2 .author-info h3,
  .about-me-2 .author-info .author-credentials {
    text-align: center;
  }

  .about-me-2 .author-info .author-awards h4:after,
  .about-me-2 .author-info .author-social h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-me-2 .author-info .author-awards ul li {
    justify-content: center;
  }

  .about-me-2 .author-info .author-social .social-links {
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Services 9 Section
--------------------------------------------------------------*/
.services-9 .content-block {
  margin-right: 30px;
}

.services-9 .content-block .subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services-9 .content-block .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.services-9 .content-block .description {
  margin-bottom: 1.8rem;
  font-size: 1rem;
  line-height: 1.7;
}

.services-9 .content-block .button-wrapper {
  margin-top: 2rem;
}

.services-9 .content-block .button-wrapper .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.services-9 .content-block .button-wrapper .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .services-9 .content-block {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}

.services-9 .services-list .service-item {
  position: relative;
  padding: 2.5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-9 .services-list .service-item:first-child {
  padding-top: 0;
}

.services-9 .services-list .service-item:hover .service-icon {
  background-color: var(--accent-color);
}

.services-9 .services-list .service-item:hover .service-icon i {
  color: var(--contrast-color);
}

.services-9 .services-list .service-item:hover .service-content h4 a {
  color: var(--accent-color);
}

.services-9 .services-list .service-icon {
  height: 5rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.services-9 .services-list .service-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services-9 .services-list .service-content {
  position: relative;
  width: 100%;
}

.services-9 .services-list .service-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.services-9 .services-list .service-content h4 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.services-9 .services-list .service-content h4 a:hover {
  color: var(--accent-color);
}

.services-9 .services-list .service-content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .services-9 .services-list .service-item {
    padding: 2rem 0;
  }

  .services-9 .services-list .service-icon {
    height: 4rem;
    width: 4rem;
    margin-right: 1rem;
  }

  .services-9 .services-list .service-icon i {
    font-size: 2rem;
  }

  .services-9 .services-list .service-content h4 {
    font-size: 1.25rem;
  }

  .services-9 .services-list .service-content p {
    font-size: 0.9rem;
  }
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.gallery .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

.gallery .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

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

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

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

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

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery .swiper-button-next,
.gallery .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery .swiper-button-next:after,
.gallery .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery:hover .swiper-button-next,
.gallery:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery:hover .swiper-button-next:hover,
.gallery:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

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

@media (max-width: 767px) {
  .gallery .swiper-wrapper {
    padding: 15px 0;
  }

  .gallery .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}


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

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

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

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

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}


/*--------------------------------------------------------------
# Services 5 Section
--------------------------------------------------------------*/
.services-5 {
  padding: 100px 0;
}

.services-5 .svc-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-left: 3px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  padding: 36px 36px 36px 40px;
  height: 100%;
  overflow: hidden;
  transition: border-left-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.services-5 .svc-card:hover {
  border-left-color: var(--accent-color);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color), transparent 88%);
  transform: translateY(-4px);
}

.services-5 .svc-card:hover .svc-icon-wrap {
  background-color: var(--accent-color);
}

.services-5 .svc-card:hover .svc-icon-wrap i {
  color: var(--contrast-color);
}

.services-5 .svc-card:hover .svc-link {
  color: var(--accent-color);
  gap: 10px;
}

.services-5 .svc-card:hover .svc-link i {
  transform: translateX(4px);
}

.services-5 .svc-card:hover .svc-number {
  opacity: 0.06;
}

.services-5 .svc-number {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--default-color);
  opacity: 0.04;
  font-family: var(--heading-font);
  pointer-events: none;
  transition: opacity 0.3s ease;
  user-select: none;
}

.services-5 .svc-body {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.services-5 .svc-icon-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.services-5 .svc-icon-wrap i {
  font-size: 26px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.services-5 .svc-content {
  flex: 1;
  min-width: 0;
}

.services-5 .svc-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.services-5 .svc-content p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.services-5 .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}

.services-5 .svc-link i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .services-5 {
    padding: 70px 0;
  }

  .services-5 .svc-card {
    padding: 28px 28px 28px 32px;
  }

  .services-5 .svc-body {
    flex-direction: column;
    gap: 18px;
  }

  .services-5 .svc-icon-wrap {
    width: 52px;
    height: 52px;
  }

  .services-5 .svc-icon-wrap i {
    font-size: 22px;
  }

  .services-5 .svc-number {
    font-size: 56px;
  }

  .services-5 .svc-content h3 {
    font-size: 18px;
  }
}

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pricing .plan-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 28px;
  padding: 48px 36px 40px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
}

.pricing .plan-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 70%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

.pricing .plan-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 90px;
  height: 90px;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 92%));
  z-index: 0;
}

.pricing .plan-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 48px color-mix(in srgb, var(--default-color), transparent 88%);
}

.pricing .plan-card .plan-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.pricing .plan-card .plan-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff006e 30%));
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.pricing .plan-card .plan-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.pricing .plan-card .plan-cost {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.pricing .plan-card .plan-cost .symbol {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color);
  vertical-align: super;
}

.pricing .plan-card .plan-cost .value {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--heading-color);
  letter-spacing: -0.03em;
}

.pricing .plan-card .plan-cost .cycle {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .plan-card .plan-tagline {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 28px;
  padding: 0 10px;
}

.pricing .plan-card .plan-perks {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pricing .plan-card .plan-perks li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 88%);
}

.pricing .plan-card .plan-perks li:last-child {
  border-bottom: none;
}

.pricing .plan-card .plan-perks li i {
  font-size: 14px;
  margin-right: 10px;
  color: var(--accent-color);
}

.pricing .plan-card .plan-perks li.unavailable {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-card .plan-perks li.unavailable i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-card .plan-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  background: transparent;
  border: 3px solid var(--accent-color);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing .plan-card .plan-btn:hover {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff006e 30%));
  border-color: transparent;
  color: var(--contrast-color);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.pricing .plan-popular {
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent-color), transparent 92%), var(--surface-color) 40%, var(--surface-color));
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.pricing .plan-popular .popular-ribbon {
  position: absolute;
  top: 18px;
  right: -32px;
  z-index: 2;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff006e 30%));
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 40px;
  transform: rotate(35deg);
}

.pricing .plan-popular .plan-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff006e 30%));
  border-color: transparent;
  color: var(--contrast-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.pricing .plan-popular .plan-btn:hover {
  box-shadow: 0 14px 36px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.pricing .plan-starter .plan-icon {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  box-shadow: 0 8px 24px color-mix(in srgb, #f7971e, transparent 55%);
}

.pricing .plan-ultimate .plan-icon {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  box-shadow: 0 8px 24px color-mix(in srgb, #8e2de2, transparent 55%);
}

@media (max-width: 992px) {
  .pricing .plan-card {
    max-width: 420px;
    margin: 0 auto;
  }
}


/*--------------------------------------------------------------
# Pricing 2 Section
--------------------------------------------------------------*/
.pricing-2 .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing-2 .pricing-tem:hover {
    transform: scale(1.04);
  }
}

.pricing-2 h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing-2 .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing-2 .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing-2 .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing-2 .icon {
  padding: 20px 0;
}

.pricing-2 .icon i {
  font-size: 48px;
}

.pricing-2 ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing-2 ul li {
  padding-bottom: 10px;
}

.pricing-2 ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing-2 .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

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

.pricing-2 .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Why Us 3 Section
--------------------------------------------------------------*/
.why-us-3 .intro-row {
  margin-bottom: 70px;
}

@media (max-width: 992px) {
  .why-us-3 .intro-row {
    margin-bottom: 50px;
  }
}

.why-us-3 .intro-content {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .why-us-3 .intro-content {
    padding-right: 0;
    text-align: center;
  }
}

.why-us-3 .intro-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.why-us-3 .intro-content .eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

@media (max-width: 992px) {
  .why-us-3 .intro-content .eyebrow::before {
    display: none;
  }
}

.why-us-3 .intro-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
}

.why-us-3 .intro-content h2 em {
  font-style: italic;
  color: var(--accent-color);
  font-weight: 700;
}

@media (max-width: 768px) {
  .why-us-3 .intro-content h2 {
    font-size: 2rem;
  }
}

.why-us-3 .intro-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.why-us-3 .intro-content .learn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.why-us-3 .intro-content .learn-link i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.why-us-3 .intro-content .learn-link:hover {
  border-bottom-color: var(--accent-color);
  color: var(--accent-color);
}

.why-us-3 .intro-content .learn-link:hover i {
  transform: translateX(5px);
}

.why-us-3 .visual-panel {
  position: relative;
  padding: 20px 20px 55px 0;
}

.why-us-3 .visual-panel .corner-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  border-top: 3px solid var(--accent-color);
  border-right: 3px solid var(--accent-color);
  border-radius: 0 14px 0 0;
  z-index: 0;
}

.why-us-3 .visual-panel img {
  border-radius: 14px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 84%);
}

.why-us-3 .visual-panel .badge-metric {
  position: absolute;
  bottom: 20px;
  left: 550px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.why-us-3 .visual-panel .badge-metric .metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--heading-font);
}

.why-us-3 .visual-panel .badge-metric .metric-label {
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 4px;
  white-space: nowrap;
}

.why-us-3 .visual-panel .badge-years {
  position: absolute;
  top: 50px;
  left: 50px;
  background-color: var(--surface-color);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 4px solid var(--accent-color);
  z-index: 2;
}

.why-us-3 .visual-panel .badge-years .years-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.why-us-3 .visual-panel .badge-years .years-label {
  font-size: 0.65rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 4px;
  white-space: nowrap;
  font-weight: 600;
}

.why-us-3 .features-row {
  position: relative;
}

.why-us-3 .features-row::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(to right, transparent, color-mix(in srgb, var(--default-color), transparent 80%), transparent);
}

.why-us-3 .feat-card {
  background-color: var(--surface-color);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 93%);
  border-bottom: 3px solid transparent;
  height: 100%;
  transition: all 0.3s ease;
}

.why-us-3 .feat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom-color: var(--accent-color);
}

.why-us-3 .feat-card:hover .feat-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 14px;
}

.why-us-3 .feat-card:hover .feat-num {
  opacity: 0.06;
}

.why-us-3 .feat-card .feat-icon {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.why-us-3 .feat-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-us-3 .feat-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  margin: 0;
}

.why-us-3 .feat-card .feat-num {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-size: 4.2rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: var(--heading-color);
  opacity: 0.032;
  line-height: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
}


/*--------------------------------------------------------------
# Steps 4 Section
--------------------------------------------------------------*/
.steps-4 .process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.steps-4 .process-step .step-number {
  font-size: 56px;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

.steps-4 .process-step .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.steps-4 .process-step .step-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.steps-4 .process-step h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.steps-4 .process-step p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

@media (min-width: 992px) {
  .steps-4 .process-step::after {
    content: "";
    position: absolute;
    top: 110px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 60%);
  }

  .steps-4 .col-lg-3:last-child .process-step::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .steps-4 .process-step {
    padding: 24px 16px;
  }

  .steps-4 .process-step .step-number {
    font-size: 44px;
  }

  .steps-4 .process-step .step-icon {
    width: 64px;
    height: 64px;
  }

  .steps-4 .process-step .step-icon i {
    font-size: 24px;
  }

  .steps-4 .process-step h3 {
    font-size: 20px;
  }
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  height: 100%;
}

.team .team-card .card-inner {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.team .team-card .card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-card .card-inner:hover .avatar-container .avatar-ring {
  transform: scale(1.1);
  opacity: 1;
}

.team .team-card .card-inner:hover .avatar-container img {
  transform: scale(1.05);
}

.team .team-card .card-inner:hover .social-links a {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .team-card .avatar-container {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 25px;
}

.team .team-card .avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.team .team-card .avatar-container .avatar-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.team .team-card .member-info {
  margin-bottom: 15px;
}

.team .team-card .member-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
}

.team .team-card .member-info .position {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
}

.team .team-card .member-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.team .team-card .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team .team-card .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 10px;
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
}

.team .team-card .social-links a:hover {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--default-color);
  transform: translateY(-3px);
}

.team .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding: 0;
}

@media (max-width: 992px) {
  .team .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

.team .stats-row .stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.team .stats-row .stat-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.team .stats-row .stat-item:hover .stat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .stats-row .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.team .stats-row .stat-item .stat-data {
  display: flex;
  flex-direction: column;
}

.team .stats-row .stat-item .stat-data .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.team .stats-row .stat-item .stat-data .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 4px;
}

.team .join-team-banner {
  margin-top: 60px;
  background: linear-gradient(120deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 25%) 100%);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .team .join-team-banner {
    padding: 40px 30px;
  }
}

.team .join-team-banner .banner-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--contrast-color), transparent 90%) 0%, transparent 50%), radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--contrast-color), transparent 92%) 0%, transparent 40%);
  pointer-events: none;
}

.team .join-team-banner .banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-content {
    flex-direction: column;
    text-align: center;
  }
}

.team .join-team-banner .banner-text {
  flex: 1;
}

.team .join-team-banner .banner-text .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.team .join-team-banner .banner-text .badge-label i {
  font-size: 1rem;
}

.team .join-team-banner .banner-text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0 0 15px 0;
}

@media (max-width: 768px) {
  .team .join-team-banner .banner-text h3 {
    font-size: 1.75rem;
  }
}

.team .join-team-banner .banner-text p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 1.7;
  margin: 0;
  max-width: 550px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-text p {
    max-width: none;
  }
}

.team .join-team-banner .banner-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .team .join-team-banner .banner-actions {
    flex-direction: column;
    width: 100%;
  }
}

.team .join-team-banner .banner-actions .btn-primary-action,
.team .join-team-banner .banner-actions .btn-secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.team .join-team-banner .banner-actions .btn-primary-action i,
.team .join-team-banner .banner-actions .btn-secondary-action i {
  font-size: 1.1rem;
}

.team .join-team-banner .banner-actions .btn-primary-action {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.team .join-team-banner .banner-actions .btn-primary-action:hover {
  background: var(--surface-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, black, transparent 70%);
}

.team .join-team-banner .banner-actions .btn-secondary-action {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
  color: var(--contrast-color);
}

.team .join-team-banner .banner-actions .btn-secondary-action:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-color: var(--contrast-color);
  transform: translateY(-3px);
}
/*--------------------------------------------------------------
# Students Life Section
--------------------------------------------------------------*/
.students-life .section-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.students-life .section-header .label-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 10px;
  padding: 4px 14px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
}

.students-life .intro-block .intro-image-wrap {
  position: relative;
}

.students-life .intro-block .intro-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.students-life .intro-block .intro-image-wrap .experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.students-life .intro-block .intro-image-wrap .experience-badge .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1;
}

.students-life .intro-block .intro-image-wrap .experience-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.students-life .intro-block .intro-content {
  padding: 20px 0;
}

.students-life .intro-block .intro-content .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.students-life .intro-block .intro-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.students-life .intro-block .intro-content p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.students-life .intro-block .intro-content .intro-highlights {
  margin-bottom: 25px;
}

.students-life .intro-block .intro-content .intro-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.students-life .intro-block .intro-content .intro-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.students-life .intro-block .intro-content .intro-highlights .highlight-item span {
  font-size: 0.95rem;
}

.students-life .intro-block .intro-content .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.students-life .intro-block .intro-content .explore-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.students-life .intro-block .intro-content .explore-btn:hover {
  gap: 12px;
}

.students-life .intro-block .intro-content .explore-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .students-life .intro-block .intro-image-wrap {
    margin-bottom: 40px;
  }

  .students-life .intro-block .intro-image-wrap .experience-badge {
    left: auto;
    right: 20px;
    bottom: -15px;
  }
}

.students-life .clubs-section .club-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background-color: var(--surface-color);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.3s ease;
}

.students-life .clubs-section .club-card:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--default-color), transparent 86%);
}

.students-life .clubs-section .club-card .club-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.students-life .clubs-section .club-card .club-icon i {
  font-size: 26px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.students-life .clubs-section .club-card:hover .club-icon {
  background-color: var(--accent-color);
}

.students-life .clubs-section .club-card:hover .club-icon i {
  color: var(--contrast-color);
}

.students-life .clubs-section .club-card .club-content h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.students-life .clubs-section .club-card .club-content p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.students-life .clubs-section .club-card .club-content .club-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 12px;
  border-radius: 20px;
}

@media (max-width: 576px) {
  .students-life .clubs-section .club-card {
    flex-direction: column;
    gap: 14px;
  }
}

.students-life .sports-section .swiper-wrapper {
  height: auto !important;
}

.students-life .sports-section .sport-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.students-life .sports-section .sport-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.students-life .sports-section .sport-card .sport-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 10%) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--contrast-color);
}

.students-life .sports-section .sport-card .sport-overlay h5 {
  color: var(--contrast-color);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.students-life .sports-section .sport-card .sport-overlay p {
  font-size: 0.85rem;
  margin-bottom: 0;
  opacity: 0.85;
  line-height: 1.5;
}

.students-life .sports-section .sport-card:hover img {
  transform: scale(1.08);
}

.students-life .sports-section .swiper-slide {
  padding-bottom: 50px;
}

.students-life .sports-section .swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  opacity: 1;
  transition: all 0.3s ease;
}

.students-life .sports-section .swiper-pagination .swiper-pagination-bullet-active {
  width: 36px;
  background-color: var(--accent-color);
}

.students-life .facilities-section .facility-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.3s ease;
}

.students-life .facilities-section .facility-item:hover {
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 86%);
}

.students-life .facilities-section .facility-item img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.students-life .facilities-section .facility-item .facility-details {
  padding: 20px;
}

.students-life .facilities-section .facility-item .facility-details h5 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.students-life .facilities-section .facility-item .facility-details p {
  font-size: 0.88rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.students-life .resources-section .resource-card {
  position: relative;
  padding: 32px 28px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.students-life .resources-section .resource-card:hover {
  border-bottom-color: var(--accent-color);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 86%);
}

.students-life .resources-section .resource-card .resource-number {
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 5rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 93%);
  line-height: 1;
  pointer-events: none;
}

.students-life .resources-section .resource-card .resource-icon {
  width: 52px;
  height: 52px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.students-life .resources-section .resource-card .resource-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.students-life .resources-section .resource-card h5 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.students-life .resources-section .resource-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.students-life .resources-section .resource-card .resource-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--accent-color);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.students-life .resources-section .resource-card .resource-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.students-life .resources-section .resource-card .resource-link:hover i {
  transform: translateX(4px);
}

.students-life .moments-gallery .moment-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.students-life .moments-gallery .moment-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.students-life .moments-gallery .moment-item .moment-overlay i {
  color: var(--contrast-color);
  font-size: 1.6rem;
  transform: rotate(-45deg) scale(0.5);
  transition: all 0.4s ease;
}

.students-life .moments-gallery .moment-item:hover img {
  transform: scale(1.06);
}

.students-life .moments-gallery .moment-item:hover .moment-overlay {
  opacity: 1;
}

.students-life .moments-gallery .moment-item:hover .moment-overlay i {
  transform: rotate(0deg) scale(1);
}

.students-life .action-banner {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 25%) 100%);
  padding: 50px 40px;
  border-radius: 16px;
  color: var(--contrast-color);
}

.students-life .action-banner h3 {
  color: var(--contrast-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.students-life .action-banner p {
  opacity: 0.9;
  margin-bottom: 0;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.students-life .action-banner .action-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.students-life .action-banner .btn-action {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.students-life .action-banner .btn-action.primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

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

.students-life .action-banner .btn-action.secondary {
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.students-life .action-banner .btn-action.secondary:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .students-life .action-banner {
    padding: 35px 25px;
  }

  .students-life .action-banner h3 {
    font-size: 1.5rem;
  }

  .students-life .action-banner .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .students-life .action-banner .btn-action {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .students-life .section-header h3 {
    font-size: 1.5rem;
  }

  .students-life .intro-block .intro-content h3 {
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------------------
# Team 2 Section
--------------------------------------------------------------*/
.team-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.team-2 .team-card {
  height: 100%;
}

.team-2 .team-card .card-inner {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.team-2 .team-card .card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team-2 .team-card .card-inner:hover .avatar-container .avatar-ring {
  transform: scale(1.1);
  opacity: 1;
}

.team-2 .team-card .card-inner:hover .avatar-container img {
  transform: scale(1.05);
}

.team-2 .team-card .card-inner:hover .social-links a {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team-2 .team-card .avatar-container {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 25px;
}

.team-2 .team-card .avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.team-2 .team-card .avatar-container .avatar-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.team-2 .team-card .member-info {
  margin-bottom: 15px;
}

.team-2 .team-card .member-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
}

.team-2 .team-card .member-info .position {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
}

.team-2 .team-card .member-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.team-2 .team-card .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-2 .team-card .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--default-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.team-2 .team-card .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team-2 .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding: 0;
}

@media (max-width: 992px) {
  .team-2 .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

.team-2 .stats-row .stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.team-2 .stats-row .stat-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.team-2 .stats-row .stat-item:hover .stat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team-2 .stats-row .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.team-2 .stats-row .stat-item .stat-data {
  display: flex;
  flex-direction: column;
}

.team-2 .stats-row .stat-item .stat-data .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.team-2 .stats-row .stat-item .stat-data .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 4px;
}

.team-2 .join-team-banner {
  margin-top: 60px;
  background: linear-gradient(120deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 25%) 100%);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .team-2 .join-team-banner {
    padding: 40px 30px;
  }
}

.team-2 .join-team-banner .banner-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--contrast-color), transparent 90%) 0%, transparent 50%), radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--contrast-color), transparent 92%) 0%, transparent 40%);
  pointer-events: none;
}

.team-2 .join-team-banner .banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 992px) {
  .team-2 .join-team-banner .banner-content {
    flex-direction: column;
    text-align: center;
  }
}

.team-2 .join-team-banner .banner-text {
  flex: 1;
}

.team-2 .join-team-banner .banner-text .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.team-2 .join-team-banner .banner-text .badge-label i {
  font-size: 1rem;
}

.team-2 .join-team-banner .banner-text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0 0 15px 0;
}

@media (max-width: 768px) {
  .team-2 .join-team-banner .banner-text h3 {
    font-size: 1.75rem;
  }
}

.team-2 .join-team-banner .banner-text p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 1.7;
  margin: 0;
  max-width: 550px;
}

@media (max-width: 992px) {
  .team-2 .join-team-banner .banner-text p {
    max-width: none;
  }
}

.team-2 .join-team-banner .banner-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 992px) {
  .team-2 .join-team-banner .banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .team-2 .join-team-banner .banner-actions {
    flex-direction: column;
    width: 100%;
  }
}

.team-2 .join-team-banner .banner-actions .btn-primary-action,
.team-2 .join-team-banner .banner-actions .btn-secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.team-2 .join-team-banner .banner-actions .btn-primary-action i,
.team-2 .join-team-banner .banner-actions .btn-secondary-action i {
  font-size: 1.1rem;
}

.team-2 .join-team-banner .banner-actions .btn-primary-action {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.team-2 .join-team-banner .banner-actions .btn-primary-action:hover {
  background: var(--surface-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, black, transparent 70%);
}

.team-2 .join-team-banner .banner-actions .btn-secondary-action {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
  color: var(--contrast-color);
}

.team-2 .join-team-banner .banner-actions .btn-secondary-action:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-color: var(--contrast-color);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-strips-row .contact-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background-color: var(--surface-color);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 8px 8px 0;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px color-mix(in srgb, var(--default-color), transparent 94%);
}

.contact .contact-strips-row .contact-strip:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 22px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.contact .contact-strips-row .contact-strip .strip-icon-box {
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-strips-row .contact-strip .strip-icon-box i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact .contact-strips-row .contact-strip .strip-text {
  flex: 1;
}

.contact .contact-strips-row .contact-strip .strip-text .strip-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 5px;
}

.contact .contact-strips-row .contact-strip .strip-text .strip-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  line-height: 1.5;
}

.contact .inquiry-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 50px color-mix(in srgb, var(--default-color), transparent 87%);
}

.contact .inquiry-card .card-intro-panel {
  background-color: var(--accent-color);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
}

.contact .inquiry-card .card-intro-panel .intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 82%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 32px;
  width: fit-content;
}

.contact .inquiry-card .card-intro-panel .intro-badge i {
  font-size: 14px;
}

.contact .inquiry-card .card-intro-panel h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact .inquiry-card .card-intro-panel p {
  font-size: 14px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--contrast-color), transparent 18%);
  flex: 1;
  margin: 0;
}

.contact .inquiry-card .card-intro-panel .intro-divider {
  height: 1px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 72%);
  margin: 32px 0;
}

.contact .inquiry-card .card-intro-panel .intro-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact .inquiry-card .card-intro-panel .intro-note i {
  font-size: 15px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  flex-shrink: 0;
  margin-top: 1px;
}

.contact .inquiry-card .card-intro-panel .intro-note span {
  font-size: 13px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color), transparent 18%);
}

.contact .inquiry-card .card-form-panel {
  background-color: var(--surface-color);
  padding: 52px 48px;
}

.contact .inquiry-card .card-form-panel .field-wrap label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  margin-bottom: 10px;
}

.contact .inquiry-card .card-form-panel .field-wrap input[type=text],
.contact .inquiry-card .card-form-panel .field-wrap input[type=email],
.contact .inquiry-card .card-form-panel .field-wrap input[type=tel],
.contact .inquiry-card .card-form-panel .field-wrap textarea {
  width: 100%;
  background-color: var(--surface-color);
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  padding: 10px 0 12px;
  font-size: 15px;
  color: var(--default-color);
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact .inquiry-card .card-form-panel .field-wrap input[type=text]:focus,
.contact .inquiry-card .card-form-panel .field-wrap input[type=email]:focus,
.contact .inquiry-card .card-form-panel .field-wrap input[type=tel]:focus,
.contact .inquiry-card .card-form-panel .field-wrap textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
  box-shadow: none;
}

.contact .inquiry-card .card-form-panel .field-wrap input[type=text]::placeholder,
.contact .inquiry-card .card-form-panel .field-wrap input[type=email]::placeholder,
.contact .inquiry-card .card-form-panel .field-wrap input[type=tel]::placeholder,
.contact .inquiry-card .card-form-panel .field-wrap textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 65%);
}

.contact .inquiry-card .card-form-panel .field-wrap textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.contact .inquiry-card .card-form-panel .form-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.contact .inquiry-card .card-form-panel .btn-dispatch {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .inquiry-card .card-form-panel .btn-dispatch i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.contact .inquiry-card .card-form-panel .btn-dispatch:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.contact .inquiry-card .card-form-panel .btn-dispatch:hover i {
  transform: translateX(3px) translateY(-3px);
}

@media (max-width: 992px) {
  .contact .inquiry-card .card-intro-panel {
    padding: 40px 32px;
  }

  .contact .inquiry-card .card-intro-panel h3 {
    font-size: 22px;
  }

  .contact .inquiry-card .card-form-panel {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .contact .contact-strips-row .contact-strip:hover {
    transform: none;
  }

  .contact .inquiry-card .card-intro-panel {
    padding: 32px 24px;
  }

  .contact .inquiry-card .card-form-panel {
    padding: 32px 24px;
  }
}

.contact .hidden {
  display: none !important;
}

@media (max-width: 576px) {
  .contact .inquiry-card .card-intro-panel {
    padding: 28px 20px;
  }

  .contact .inquiry-card .card-intro-panel h3 {
    font-size: 20px;
  }

  .contact .inquiry-card .card-form-panel {
    padding: 28px 20px;
  }

  .contact .inquiry-card .card-form-panel .field-wrap input[type=text],
  .contact .inquiry-card .card-form-panel .field-wrap input[type=email],
  .contact .inquiry-card .card-form-panel .field-wrap textarea {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Services 15 Section
--------------------------------------------------------------*/
.services-15 .section-intro {
  margin-bottom: 48px;
}

.services-15 .section-intro .intro-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.services-15 .section-intro .intro-text {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.services-15 .section-intro .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.services-15 .section-intro .btn-view-all i {
  font-size: 18px;
  transition: transform 0.3s;
}

.services-15 .section-intro .btn-view-all:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services-15 .section-intro .btn-view-all:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services-15 .section-intro .intro-title {
    font-size: 28px;
  }

  .services-15 .section-intro .btn-view-all {
    margin-top: 16px;
  }
}

.services-15 .service-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.services-15 .service-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.services-15 .service-item:hover .icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.05);
}

.services-15 .service-item:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.services-15 .service-item:hover .service-cta i {
  transform: translateX(4px);
}

.services-15 .service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services-15 .icon-wrapper {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.services-15 .icon-wrapper i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s;
}

.services-15 .badge-popular {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-15 h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.services-15 p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 20px;
}

.services-15 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.services-15 .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 10px;
  line-height: 1.5;
}

.services-15 .feature-list li i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

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

.services-15 .service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s;
}

.services-15 .service-cta i {
  font-size: 16px;
  transition: transform 0.3s;
}

.services-15 .service-cta:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services-15 .cta-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 16px;
  padding: 48px;
  margin-top: 64px;
}

.services-15 .cta-banner .cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.services-15 .cta-banner h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

.services-15 .cta-banner .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 12px;
}

.services-15 .cta-banner .btn-primary i {
  font-size: 16px;
}

.services-15 .cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: var(--accent-color);
}

.services-15 .cta-banner .btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--contrast-color);
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  margin-left: 12px;
}

.services-15 .cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .services-15 .cta-banner {
    padding: 40px 32px;
  }

  .services-15 .cta-banner h3 {
    font-size: 24px;
  }

  .services-15 .cta-banner .btn-primary,
  .services-15 .cta-banner .btn-secondary {
    display: block;
    text-align: center;
    margin-left: 0;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .services-15 .service-item {
    padding: 28px;
    margin-bottom: 24px;
  }

  .services-15 .icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .services-15 .icon-wrapper i {
    font-size: 24px;
  }

  .services-15 h3 {
    font-size: 20px;
  }

  .services-15 p {
    font-size: 14px;
  }

  .services-15 .feature-list li {
    font-size: 13px;
  }

  .services-15 .feature-list li i {
    font-size: 14px;
  }

  .services-15 .cta-banner {
    padding: 32px 24px;
    margin-top: 48px;
  }

  .services-15 .cta-banner h3 {
    font-size: 22px;
  }

  .services-15 .cta-banner p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Consultation Form Section
--------------------------------------------------------------*/
.consultation-form .cta-wrapper {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.consultation-form .cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--accent-color), color-mix(in srgb, var(--accent-color), #fff 30%));
}

@media (max-width: 992px) {
  .consultation-form .cta-wrapper {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .consultation-form .cta-wrapper {
    padding: 30px 20px;
  }
}

.consultation-form .cta-content {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .consultation-form .cta-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.consultation-form .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .consultation-form .cta-content h2 {
    font-size: 2rem;
  }
}

.consultation-form .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--default-color);
}

.consultation-form .cta-content .cta-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.consultation-form .cta-content .cta-stats .stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .consultation-form .cta-content .cta-stats .stat-item .number {
    font-size: 2rem;
  }
}

.consultation-form .cta-content .cta-stats .stat-item .text {
  font-size: 0.9rem;
  color: var(--default-color);
}

.consultation-form .cta-form {
  background-color: color-mix(in srgb, var(--surface-color), #000 3%);
  border-radius: 10px;
  padding: 30px;
}

.consultation-form .cta-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .consultation-form .cta-form h3 {
    font-size: 1.5rem;
  }
}

.consultation-form .cta-form p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: var(--default-color);
}

.consultation-form .cta-form .form-control {
  height: 50px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.consultation-form .cta-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.consultation-form .cta-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.consultation-form .cta-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.consultation-form .cta-form textarea.form-control {
  height: 120px;
}

.consultation-form .cta-form button[type=submit] {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.consultation-form .cta-form button[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Pricing 3 Section
--------------------------------------------------------------*/
.pricing-3 .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing-3 .pricing-tem:hover {
    transform: scale(1.04);
  }
}

.pricing-3 h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing-3 .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing-3 .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing-3 .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing-3 .icon {
  padding: 20px 0;
}

.pricing-3 .icon i {
  font-size: 48px;
}

.pricing-3 ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

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

.pricing-3 ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing-3 .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

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

.pricing-3 .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services 7 Section
--------------------------------------------------------------*/
.services-7 .service-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.services-7 .service-num {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 82%);
  flex-shrink: 0;
  min-width: 56px;
  font-family: var(--heading-font);
}

.services-7 .service-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.services-7 .service-body p {
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.services-7 .service-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  transition: opacity 0.3s ease;
}

.services-7 .service-link i {
  margin-left: 6px;
  font-size: 12px;
}

.services-7 .service-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .services-7 .service-item {
    padding: 32px 0;
    gap: 20px;
  }

  .services-7 .service-num {
    font-size: 32px;
    min-width: 44px;
  }

  .services-7 .service-body h3 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Department Details Section
--------------------------------------------------------------*/
.department-details .department-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.department-details .department-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.department-details .department-image .specialization-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.department-details .department-image .specialization-badge i {
  font-size: 16px;
}

.department-details .department-image:hover img {
  transform: scale(1.05);
}

.department-details .department-content .department-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.department-details .department-content .department-header .department-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.department-details .department-content .department-header .department-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.department-details .department-content .department-header h2 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.department-details .department-content .department-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 30px;
}

.department-details .department-content .services-highlight {
  margin-bottom: 30px;
}

.department-details .department-content .services-highlight h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.department-details .department-content .services-highlight .services-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.department-details .department-content .services-highlight .services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--default-color);
}

.department-details .department-content .services-highlight .services-list li i {
  color: var(--accent-color);
  font-size: 16px;
}

@media (max-width: 576px) {
  .department-details .department-content .services-highlight .services-list {
    grid-template-columns: 1fr;
  }
}

.department-details .department-content .department-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.department-details .department-content .department-stats .stat-item {
  text-align: center;
}

.department-details .department-content .department-stats .stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.department-details .department-content .department-stats .stat-item .stat-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  margin-top: 5px;
}

@media (max-width: 576px) {
  .department-details .department-content .department-stats {
    justify-content: space-between;
    gap: 15px;
  }
}

.department-details .department-content .department-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.department-details .department-content .department-actions .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.department-details .department-content .department-actions .btn i {
  font-size: 16px;
}

.department-details .department-content .department-actions .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.department-details .department-content .department-actions .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);
}

.department-details .department-content .department-actions .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.department-details .department-content .department-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .department-details .department-content .department-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .department-details .department-content {
    margin-top: 30px;
  }

  .department-details .department-content .department-header h2 {
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
# Amenities Section
--------------------------------------------------------------*/
.amenities .amenity-feature {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.amenities .amenity-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.amenities .amenity-feature .feature-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.amenities .amenity-feature .feature-image .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(54, 144, 231, 0.8), rgba(45, 70, 94, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenities .amenity-feature .feature-image .feature-overlay .feature-icon {
  background: var(--contrast-color);
  color: var(--accent-color);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

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

.amenities .amenity-feature .feature-image:hover .feature-overlay {
  opacity: 1;
}

.amenities .amenity-feature .feature-image:hover .feature-overlay .feature-icon {
  transform: scale(1);
}

.amenities .amenity-feature .feature-content {
  padding: 30px;
}

.amenities .amenity-feature .feature-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.amenities .amenity-feature .feature-content p {
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.amenities .amenity-feature .feature-content .feature-details {
  margin-bottom: 25px;
}

.amenities .amenity-feature .feature-content .feature-details .detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.amenities .amenity-feature .feature-content .feature-details .detail-item i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
}

.amenities .amenity-feature .feature-content .feature-details .detail-item span {
  color: var(--default-color);
  font-size: 14px;
}

.amenities .amenity-feature .feature-content .btn-feature {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.amenities .amenity-feature .feature-content .btn-feature:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.amenities .amenity-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.amenities .amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.amenities .amenity-card:hover .card-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.amenities .amenity-card .card-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: all 0.3s ease;
}

.amenities .amenity-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.amenities .amenity-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 14px;
}

.amenities .dining-section {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 50px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .amenities .dining-section {
    padding: 30px 20px;
  }
}

.amenities .dining-section .dining-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .amenities .dining-section .dining-content h3 {
    font-size: 28px;
  }
}

.amenities .dining-section .dining-content .lead {
  font-size: 18px;
  color: var(--default-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.amenities .dining-section .dining-content .dining-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.amenities .dining-section .dining-content .dining-highlights li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--default-color);
}

.amenities .dining-section .dining-content .dining-highlights li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
}

.amenities .dining-section .dining-content .dining-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.amenities .dining-section .dining-content .dining-actions .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.amenities .dining-section .dining-content .dining-actions .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.amenities .dining-section .dining-content .dining-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.amenities .dining-section .dining-content .dining-actions .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.amenities .dining-section .dining-content .dining-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.amenities .dining-section .dining-images {
  position: relative;
}

.amenities .dining-section .dining-images .main-image {
  border-radius: 15px;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.amenities .dining-section .dining-images .image-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  border: 5px solid var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .amenities .dining-section .dining-images .image-overlay {
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .amenities .dining-section .dining-images .image-overlay {
    display: none;
  }
}

.amenities .dining-section .dining-images .image-overlay .overlay-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .amenities .amenity-feature .feature-content {
    padding: 25px 20px;
  }

  .amenities .amenity-feature .feature-content h3 {
    font-size: 20px;
  }

  .amenities .amenity-card {
    padding: 25px 20px;
  }

  .amenities .amenity-card h4 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments .specialty-block {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.departments .specialty-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.departments .specialty-block:hover .specialty-image img {
  transform: scale(1.05);
}

.departments .specialty-block:hover .specialty-overlay {
  opacity: 1;
}

.departments .specialty-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.departments .specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.departments .specialty-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 30%), color-mix(in srgb, var(--accent-color), transparent 70%));
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.departments .specialty-badge {
  background: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 80%);
}

.departments .specialty-badge i {
  color: var(--accent-color);
  font-size: 18px;
}

.departments .specialty-badge span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
}

.departments .specialty-info {
  padding: 35px 30px;
}

.departments .specialty-info h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.departments .specialty-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.departments .specialty-features {
  margin-bottom: 30px;
}

.departments .specialty-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.departments .specialty-features .feature-item i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.departments .specialty-features .feature-item span {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}

.departments .specialty-features .feature-item:last-child {
  margin-bottom: 0;
}

.departments .specialty-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.departments .specialty-btn:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #000 10%), color-mix(in srgb, var(--accent-color), #000 25%));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.departments .specialty-btn:hover i {
  transform: translateX(5px);
}

.departments .specialty-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .departments .specialty-block {
    margin-bottom: 20px;
  }

  .departments .specialty-image {
    height: 220px;
  }

  .departments .specialty-info {
    padding: 25px 20px;
  }

  .departments .specialty-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .departments .specialty-info p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .departments .specialty-features {
    margin-bottom: 25px;
  }

  .departments .specialty-features .feature-item {
    margin-bottom: 12px;
  }

  .departments .specialty-features .feature-item span {
    font-size: 13px;
  }

  .departments .specialty-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .departments .specialty-overlay {
    padding: 20px;
  }

  .departments .specialty-badge {
    padding: 10px 15px;
  }

  .departments .specialty-badge i {
    font-size: 16px;
  }

  .departments .specialty-badge span {
    font-size: 13px;
  }
}


/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}