/**
* Template Name: Multi
* Template URL: https://bootstrapmade.com/multi-responsive-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0b2341; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #11f088; /* 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: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #11f088; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #11f088; /* 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: #f7f9fd;
  --surface-color: #ffffff;
}

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

.green-background {
  --background-color: #11f088;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

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

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

.particles {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  top: 108vh;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0.28;
  background: color-mix(in srgb, var(--accent-color) 68%, #f2c14b 32%);
  box-shadow: 0 0 14px color-mix(in srgb, var(--accent-color) 60%, #f2c14b 40%);
  animation: site-particle-float 7.5s infinite linear;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: -0.6s;
  animation-duration: 6.1s;
}

.particle:nth-child(2) {
  left: 25%;
  width: 5px;
  height: 5px;
  animation-delay: -2.3s;
  animation-duration: 7.2s;
  background: color-mix(in srgb, var(--accent-color) 58%, white 42%);
}

.particle:nth-child(3) {
  left: 40%;
  width: 3px;
  height: 3px;
  animation-delay: -4.8s;
  animation-duration: 8.1s;
}

.particle:nth-child(4) {
  left: 60%;
  width: 3px;
  height: 3px;
  animation-delay: -1.7s;
  animation-duration: 6.8s;
  background: color-mix(in srgb, #f2c14b 70%, var(--accent-color) 30%);
}

.particle:nth-child(5) {
  left: 75%;
  animation-delay: -3.6s;
  animation-duration: 6.4s;
}

.particle:nth-child(6) {
  left: 90%;
  width: 5px;
  height: 5px;
  animation-delay: -5.2s;
  animation-duration: 7.4s;
  background: color-mix(in srgb, var(--accent-color) 44%, white 56%);
}

.particle:nth-child(7) {
  left: 18%;
  width: 3px;
  height: 3px;
  animation-delay: -2.9s;
  animation-duration: 5.8s;
  background: color-mix(in srgb, var(--accent-color) 76%, white 24%);
}

.particle:nth-child(8) {
  left: 52%;
  width: 4px;
  height: 4px;
  animation-delay: -6.1s;
  animation-duration: 7.9s;
  background: color-mix(in srgb, #f2c14b 58%, var(--accent-color) 42%);
}

.particle:nth-child(9) {
  left: 68%;
  width: 2px;
  height: 2px;
  animation-delay: -4.4s;
  animation-duration: 5.6s;
  background: color-mix(in srgb, var(--accent-color) 52%, white 48%);
}

.particle:nth-child(10) {
  left: 84%;
  width: 4px;
  height: 4px;
  animation-delay: -1.2s;
  animation-duration: 6.9s;
}

@keyframes site-particle-float {
  0% {
    transform: translate3d(0, 0, 0) scale(0.82);
    opacity: 0.04;
  }

  10% {
    opacity: 0.24;
  }

  50% {
    transform: translate3d(16px, -54vh, 0) scale(1.04);
    opacity: 0.32;
  }

  100% {
    transform: translate3d(-12px, -126vh, 0) scale(0.9);
    opacity: 0;
  }
}

.header,
.footer,
#scroll-top {
  position: relative;
  z-index: 4;
}

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


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

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

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

.appointment-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: appointment-form-loading 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# 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: 36px;
  margin-right: 8px;
}

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

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

.detail-page-title .heading {
  padding: 56px 0 42px;
}

.detail-page-title .heading h1 {
  margin-bottom: 10px;
}

.detail-page-title .heading p {
  margin-bottom: 0;
}

.detail-body-section {
  padding-top: 28px;
}

.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: 87px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

  .detail-page-title .heading {
    padding: 48px 0 34px;
  }

  .detail-body-section {
    padding-top: 22px;
  }
}

@media (max-width: 767px) {
  .detail-page-title .heading {
    padding: 40px 0 28px;
  }

  .detail-page-title .heading h1 {
    margin-bottom: 8px;
    font-size: 2rem;
  }

  .detail-body-section {
    padding-top: 18px;
  }
}

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --hero-min-height: clamp(680px, 82vh, 840px);
  position: relative;
  padding: 0;
  min-height: var(--hero-min-height);
  overflow: hidden;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  min-height: var(--hero-min-height);
}

.hero .carousel-item {
  position: relative;
  overflow: hidden;
  background: #07141f;
}

.hero .hero-shell {
  position: relative;
  z-index: 3;
  padding-top: 78px;
  padding-bottom: 160px;
  min-height: var(--hero-min-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero .hero-content-row {
  margin-bottom: 0;
}

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

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(94deg, rgba(4, 12, 25, 0.94) 0%, rgba(4, 12, 25, 0.8) 42%, rgba(4, 12, 25, 0.4) 100%),
    radial-gradient(circle at top right, rgba(17, 240, 136, 0.12), transparent 30%);
}

.hero .hero-overlay-warm {
  background:
    linear-gradient(94deg, rgba(34, 18, 7, 0.88) 0%, rgba(24, 18, 13, 0.74) 46%, rgba(10, 18, 26, 0.44) 100%),
    radial-gradient(circle at top right, rgba(255, 179, 71, 0.16), transparent 30%);
}

.hero .hero-overlay-emerald {
  background:
    linear-gradient(94deg, rgba(5, 17, 20, 0.9) 0%, rgba(5, 20, 24, 0.76) 46%, rgba(5, 18, 24, 0.42) 100%),
    radial-gradient(circle at top right, rgba(17, 240, 136, 0.18), transparent 30%);
}

.hero .hero-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 8px;
}

.hero .hero-slide-number {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .hero-copy {
  max-width: 700px;
}

.hero .carousel-item:not(.active) .hero-bg {
  transform: none;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 4.35vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-wrap: balance;
}

.hero p {
  margin: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  line-height: 1.62;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero .btn-get-started,
.hero .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.35s ease;
}

.hero .btn-get-started {
  color: #062114;
  background: var(--accent-color);
  box-shadow: 0 16px 40px rgba(17, 240, 136, 0.22);
}

.hero .btn-get-started:hover {
  color: #062114;
  background: color-mix(in srgb, var(--accent-color), white 12%);
  transform: translateY(-2px);
}

.hero .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}


.hero .hero-sidecard {
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(4, 14, 24, 0.48);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero .hero-card-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .hero-sidecard h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.2;
  color: #ffffff;
}

.hero .hero-card-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.hero .hero-card-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.hero .hero-card-item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.hero .hero-card-item span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero .hero-side-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.hero .hero-side-stats>div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero .hero-side-stats .value {
  display: block;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero .hero-side-stats .label {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero .hero-sidecard-grid .hero-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero .hero-grid-card {
  min-height: 132px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.hero .hero-grid-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.hero .hero-grid-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero .hero-steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.hero .hero-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.hero .hero-step>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(17, 240, 136, 0.16);
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero .hero-step strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.hero .hero-step small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero .hero-sidecard:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 240, 136, 0.26);
  box-shadow: 0 36px 84px rgba(0, 0, 0, 0.34);
}

.hero .hero-card-item:hover,
.hero .hero-grid-card:hover,
.hero .hero-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(17, 240, 136, 0.22);
}

.hero .hero-card-item:active,
.hero .hero-grid-card:active,
.hero .hero-step:active,
.hero .hero-indicators [data-bs-target]:active {
  transform: translateY(-1px) scale(0.99);
}

.hero .hero-indicators {
  left: min(4vw, 48px);
  right: min(4vw, 48px);
  bottom: 56px;
  margin: 0;
  width: calc(100% - min(8vw, 96px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  justify-content: stretch;
  align-items: stretch;
  z-index: 5;
}

.hero .hero-indicators [data-bs-target] {
  width: 100%;
  min-height: 68px;
  height: auto;
  margin: 0;
  padding: 12px 16px 13px;
  text-indent: 0;
  border: 0;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(4, 14, 24, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 1;
  text-align: left;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.hero .hero-indicators [data-bs-target] span,
.hero .hero-indicators [data-bs-target] small {
  display: block;
}

.hero .hero-indicators .hero-indicator-short {
  display: none;
}

.hero .hero-indicators [data-bs-target] span {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero .hero-indicators [data-bs-target] small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero .hero-indicators [data-bs-target]:focus-visible {
  outline: 2px solid rgba(17, 240, 136, 0.55);
  outline-offset: 2px;
}

.hero .hero-indicators .active,
.hero .hero-indicators [data-bs-target]:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(17, 240, 136, 0.35);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

.hero .hero-indicators .active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(17, 240, 136, 0.45);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.24);
}

.hero .hero-nav-wrap {
  position: absolute;
  left: min(4vw, 48px);
  right: min(4vw, 48px);
  bottom:3px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hero .hero-nav {
  position: static;
  width: auto;
  opacity: 1;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 14, 24, 0.56);
  color: #ffffff;
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
}

.hero .hero-nav:hover,
.hero .hero-nav:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(17, 240, 136, 0.35);
}

.hero .hero-nav .bi {
  font-size: 1.6rem;
  line-height: 1;
}

.hero .hero-nav-text {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .hero .hero-shell {
    padding-top: 72px;
    padding-bottom: 152px;
  }
}

@media (max-width: 991px) {
  .hero {
    --hero-min-height: clamp(540px, 88svh, 680px);
  }

  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item,
  .hero .hero-shell {
    min-height: var(--hero-min-height);
  }

  .hero .hero-shell {
    padding-top: 62px;
    padding-bottom: 120px;
  }

  .hero .hero-topline {
    margin-bottom: 8px;
  }

  .hero .hero-content-row {
    margin-bottom: 0;
  }

  .hero .hero-side-column {
    display: none;
  }

  .hero .hero-indicators {
    right: 20px;
    left: 20px;
    bottom: 58px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero .hero-indicators [data-bs-target] {
    min-height: 44px;
    padding: 7px 9px 8px;
    border-radius: 12px;
  }

  .hero .hero-indicators .hero-indicator-full {
    display: block;
  }

  .hero .hero-indicators .hero-indicator-short {
    display: none;
  }

  .hero .hero-indicators [data-bs-target] span {
    font-size: 0.69rem;
    line-height: 1.2;
  }

  .hero .hero-indicators [data-bs-target] small {
    display: none;
  }

  .hero .hero-nav-wrap {
    left: 20px;
    right: 20px;
    bottom: 12px;
  }

  .hero .hero-nav {
    min-height: 44px;
    padding: 0 14px;
  }
}

@media (max-width: 767px) {
  .hero {
    --hero-min-height: clamp(500px, 78svh, 620px);
  }

  .hero h1 {
    font-size: 1.92rem;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .hero .hero-shell {
    padding-top: 54px;
    padding-bottom: 102px;
  }

  .hero .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .hero .btn-get-started,
  .hero .btn-secondary {
    width: 100%;
    min-height: 46px;
  }

  .hero .hero-indicators [data-bs-target] {
    border-radius: 12px;
    min-height: 42px;
    padding: 7px 8px;
  }

  .hero .hero-indicators {
    right: 18px;
    left: 18px;
    bottom: 54px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero .hero-nav {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
  }

  .hero .hero-nav-wrap {
    left: 18px;
    right: 18px;
    bottom: 10px;
  }

  .hero .hero-nav .bi {
    font-size: 1.4rem;
  }

  .hero .hero-nav-text {
    display: none;
  }

  .hero .hero-slide-number {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.68rem;
  }
}

@media (max-width: 575px) {
  .hero {
    --hero-min-height: clamp(470px, 74svh, 560px);
  }

  .hero .hero-shell {
    padding-top: 48px;
    padding-bottom: 94px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero .hero-indicators [data-bs-target] span {
    font-size: 0.62rem;
  }

  .hero .hero-indicators {
    right: 16px;
    left: 16px;
    bottom: 52px;
  }

  .hero .hero-nav-wrap {
    left: 16px;
    right: 16px;
    bottom: 10px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 40px auto auto -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 240, 136, 0.12), transparent 68%);
  pointer-events: none;
}

.about::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 10px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 35, 65, 0.08), transparent 70%);
  pointer-events: none;
}

.about .section-title {
  margin-bottom: 22px;
}

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

.about .about-story,
.about .about-panel {
  height: 100%;
  border-radius: 32px;
}

.about .about-story {
  position: relative;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 246, 0.94)),
    #ffffff;
  border: 1px solid rgba(11, 35, 65, 0.08);
  box-shadow: 0 28px 70px rgba(9, 23, 44, 0.08);
}

.about .about-story-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
  margin-bottom: 10px;
}

.about .about-story-copy {
  min-width: 0;
}

.about .about-visual {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  width: 100%;
  border-radius: 28px;
  background: #0b2341;
  box-shadow: 0 24px 48px rgba(9, 23, 44, 0.14);
}

.about .about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 49, 0.08), rgba(8, 26, 49, 0.28));
}

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

.about .about-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42px;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-color), rgba(11, 35, 65, 0.42));
}

.about .about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #0b2341;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about .about-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(11, 35, 65, 0.34);
}

.about .about-story h3,
.about .about-panel h3 {
  margin: 0;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.about .about-story h3 {
  max-width: 12ch;
  color: #081a31;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.about .about-story p {
  margin: 0;
  max-width: 62ch;
  color: rgba(8, 26, 49, 0.78);
  font-size: 1rem;
  line-height: 1.86;
}

.about .about-story p + p {
  margin-top: 18px;
}

.about .about-story h3 + p {
  margin-top: 24px;
}

.about .about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about .about-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(11, 35, 65, 0.05);
  border: 1px solid rgba(11, 35, 65, 0.09);
  color: #0b2341;
  font-size: 0.9rem;
  font-weight: 600;
}

.about .about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.about .about-highlight {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(248, 251, 249, 0.96);
  border: 1px solid rgba(11, 35, 65, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about .about-highlight:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 240, 136, 0.3);
  box-shadow: 0 20px 36px rgba(9, 23, 44, 0.08);
}

.about .about-highlight strong,
.about .about-service-item strong {
  display: block;
  color: #081a31;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.about .about-highlight span,
.about .about-service-item span {
  display: block;
  margin-top: 8px;
  color: rgba(8, 26, 49, 0.72);
  font-size: 0.94rem;
  line-height: 1.65;
}

.about .about-panel {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(8, 22, 39, 0.98), rgba(9, 28, 49, 0.94)),
    #081a31;
  border: 1px solid rgba(17, 240, 136, 0.14);
  box-shadow: 0 30px 80px rgba(5, 14, 28, 0.26);
}

.about .about-panel-head {
  margin-bottom: 24px;
}

.about .about-panel-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about .about-panel h3 {
  color: #ffffff;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 1.12;
}

.about .about-service-list {
  display: grid;
  gap: 14px;
}

.about .about-service-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.about .about-service-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(17, 240, 136, 0.24);
}

.about .about-service-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(17, 240, 136, 0.14);
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about .about-service-item strong {
  color: #ffffff;
}

.about .about-service-item span {
  color: rgba(255, 255, 255, 0.72);
}

.about .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent-color);
  color: #052114;
  font-family: var(--nav-font);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(17, 240, 136, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.about .read-more i {
  font-size: 18px;
  line-height: 0;
  color: inherit;
  transition: transform 0.25s ease;
}

.about .read-more:hover {
  color: #052114;
  background: color-mix(in srgb, var(--accent-color), white 10%);
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(17, 240, 136, 0.24);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

@media (max-width: 991px) {
  .about .about-story-top {
    grid-template-columns: 1fr;
  }

  .about .about-visual {
    min-height: 280px;
    max-width: none;
  }

  .about .about-story,
  .about .about-panel {
    padding: 30px;
  }

  .about .about-story h3 {
    max-width: none;
  }

  .about .about-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .about .about-story,
  .about .about-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .about .about-story::before {
    left: 24px;
  }

  .about .about-story h3 {
    font-size: 1.8rem;
  }

  .about .about-visual {
    min-height: 240px;
  }

  .about .about-service-item {
    grid-template-columns: 1fr;
  }

  .about .read-more {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Management Section
--------------------------------------------------------------*/
.md-message {
  position: relative;
  overflow: hidden;
}

.md-message::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 240, 136, 0.12), transparent 68%);
  pointer-events: none;
}

.md-message .md-shell {
  position: relative;
  z-index: 1;
}

.md-message .md-portrait-card,
.md-message .md-message-card {
  height: 100%;
  border-radius: 32px;
}

.md-message .md-portrait-card {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(8, 22, 39, 0.98), rgba(9, 28, 49, 0.94)),
    #081a31;
  border: 1px solid rgba(17, 240, 136, 0.12);
  box-shadow: 0 30px 80px rgba(5, 14, 28, 0.24);
}

.md-message .md-portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.06;
  border-radius: 26px;
  background: #0f233c;
}

.md-message .md-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.md-message .md-identity {
  padding: 22px 10px 8px;
}

.md-message .md-role,
.md-message .md-kicker {
  display: inline-flex;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.md-message .md-identity h3 {
  margin: 12px 0 10px;
  color: #ffffff;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.12;
}

.md-message .md-identity p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.7;
}

.md-message .md-message-card {
  position: relative;
  padding: 40px 42px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 246, 0.95)),
    #ffffff;
  border: 1px solid rgba(11, 35, 65, 0.08);
  box-shadow: 0 28px 72px rgba(9, 23, 44, 0.08);
}

.md-message .md-message-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42px;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-color), rgba(11, 35, 65, 0.44));
}

.md-message blockquote {
  margin: 16px 0 22px;
  padding: 0;
  color: #081a31;
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.md-message .md-message-card p {
  margin: 0;
  color: rgba(8, 26, 49, 0.78);
  font-size: 1rem;
  line-height: 1.86;
}

.md-message .md-message-card p + p {
  margin-top: 18px;
}

@media (max-width: 991px) {
  .md-message .md-portrait-card,
  .md-message .md-message-card {
    border-radius: 28px;
  }

  .md-message .md-message-card {
    padding: 32px 30px;
  }
}

@media (max-width: 767px) {
  .md-message .md-portrait-card {
    padding: 18px;
  }

  .md-message .md-message-card {
    padding: 28px 24px;
  }

  .md-message .md-message-card::before {
    left: 24px;
  }

  .md-message blockquote {
    font-size: 1.9rem;
  }
}

/*--------------------------------------------------------------
# Discover Section
--------------------------------------------------------------*/
#discover.services {
  position: relative;
  overflow: hidden;
}

#discover.services::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 240, 136, 0.08), transparent 68%);
  pointer-events: none;
}

#discover .discover-shell {
  position: relative;
  z-index: 1;
}

#discover .discover-intro,
#discover .discover-card {
  border-radius: 30px;
}

#discover .discover-intro {
  height: 100%;
  padding: 34px;
  background:
    linear-gradient(160deg, rgba(8, 22, 39, 0.98), rgba(9, 28, 49, 0.94)),
    #081a31;
  border: 1px solid rgba(17, 240, 136, 0.12);
  box-shadow: 0 28px 72px rgba(5, 14, 28, 0.22);
}

#discover .discover-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#discover .discover-intro h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 2.6vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

#discover .discover-intro p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.82;
}

#discover .discover-metrics {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

#discover .discover-metrics > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#discover .discover-metrics strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

#discover .discover-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

#discover .discover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 100%;
}

#discover .discover-card {
  padding: 26px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 252, 0.96)),
    #ffffff;
  border: 1px solid rgba(11, 35, 65, 0.08);
  box-shadow: 0 18px 42px rgba(9, 23, 44, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#discover .discover-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 240, 136, 0.3);
  box-shadow: 0 24px 48px rgba(9, 23, 44, 0.1);
}

#discover .discover-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(17, 240, 136, 0.12);
  color: #07a860;
  font-size: 1.35rem;
}

#discover .discover-card h3 {
  margin: 18px 0 10px;
  color: #081a31;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#discover .discover-card p {
  margin: 0;
  color: rgba(8, 26, 49, 0.72);
  font-size: 0.96rem;
  line-height: 1.72;
}

@media (max-width: 991px) {
  #discover .discover-intro {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  #discover .discover-intro,
  #discover .discover-card {
    padding: 24px;
    border-radius: 24px;
  }

  #discover .discover-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

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

.features .why-shell {
  position: relative;
}

.features .why-intro {
  height: 100%;
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(8, 22, 39, 0.98), rgba(9, 28, 49, 0.94)),
    #081a31;
  border: 1px solid rgba(17, 240, 136, 0.12);
  box-shadow: 0 28px 72px rgba(5, 14, 28, 0.22);
}

.features .why-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.features .why-intro h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.features .why-intro p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.82;
}

.features .why-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.features .why-mini-stats > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.features .why-mini-stats strong {
  display: block;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
}

.features .why-mini-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.features .why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 100%;
}

.features .why-card {
  padding: 28px 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96)),
    #ffffff;
  border: 1px solid rgba(11, 35, 65, 0.08);
  box-shadow: 0 18px 42px rgba(9, 23, 44, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.features .why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 240, 136, 0.3);
  box-shadow: 0 24px 48px rgba(9, 23, 44, 0.1);
}

.features .why-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(17, 240, 136, 0.12);
  color: #07a860;
  font-size: 1.4rem;
}

.features .why-card h4 {
  margin: 18px 0 10px;
  color: #081a31;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.features .why-card p {
  margin: 0;
  color: rgba(8, 26, 49, 0.72);
  font-size: 0.96rem;
  line-height: 1.72;
}

@media (max-width: 991px) {
  .features .why-intro {
    padding: 30px;
  }

  .features .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .features .why-intro,
  .features .why-card {
    padding: 24px;
    border-radius: 24px;
  }

  .features .why-mini-stats,
  .features .why-grid {
    grid-template-columns: 1fr;
  }

  .why-carousel-wrap {
    min-height: 0 !important;
  }

  .why-carousel {
    display: grid;
    gap: 16px;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible;
  }

  .why-slide {
    position: static;
    inset: auto;
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .why-slide .why-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .why-dots {
    display: none;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

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

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

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

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

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

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

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

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

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

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

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

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio-showcase {
  position: relative;
  overflow: hidden;
}

.portfolio-showcase::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 240, 136, 0.14), transparent 70%);
  pointer-events: none;
}

.portfolio-showcase .section-title,
.portfolio-showcase .portfolio-shell {
  position: relative;
  z-index: 1;
}

.portfolio-showcase .portfolio-intro {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(5, 18, 29, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.portfolio-showcase .portfolio-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-showcase .portfolio-intro h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 2.7vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.portfolio-showcase .portfolio-intro p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.82;
}

.portfolio-showcase .portfolio-metrics {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.portfolio-showcase .portfolio-metrics > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-showcase .portfolio-metrics strong {
  display: block;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
}

.portfolio-showcase .portfolio-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.portfolio-showcase .portfolio-read-more {
  margin-top: 26px;
}

.portfolio-showcase .portfolio-signal-board {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-showcase .portfolio-signal-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-showcase .portfolio-signal-list {
  display: grid;
  gap: 14px;
}

.portfolio-showcase .portfolio-signal-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}

.portfolio-showcase .portfolio-signal-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(17, 240, 136, 0.12);
  border: 1px solid rgba(17, 240, 136, 0.18);
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.portfolio-showcase .portfolio-signal-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
}

.portfolio-showcase .portfolio-signal-item small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.62;
}

.portfolio-showcase .portfolio-feature-card {
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 252, 0.96)),
    #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.portfolio-showcase .portfolio-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 240, 136, 0.28);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.portfolio-showcase .portfolio-feature-media {
  display: block;
  overflow: hidden;
}

.portfolio-showcase .portfolio-feature-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.portfolio-showcase .portfolio-feature-card:hover .portfolio-feature-media img {
  transform: scale(1.06);
}

.portfolio-showcase .portfolio-feature-body {
  padding: 24px;
}

.portfolio-showcase .portfolio-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.portfolio-showcase .portfolio-feature-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(11, 35, 65, 0.06);
  color: #0b2341;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portfolio-showcase .portfolio-feature-body h4 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.22;
}

.portfolio-showcase .portfolio-feature-body h4 a {
  color: #081a31;
}

.portfolio-showcase .portfolio-feature-body h4 a:hover {
  color: #0aa361;
}

.portfolio-showcase .portfolio-feature-body p {
  margin: 14px 0 0;
  color: rgba(8, 26, 49, 0.72);
  font-size: 0.96rem;
  line-height: 1.72;
}

.portfolio-showcase .portfolio-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #0aa361;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-showcase .portfolio-feature-link i {
  transition: transform 0.25s ease;
}

.portfolio-showcase .portfolio-feature-link:hover i {
  transform: translateX(4px);
}

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

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

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

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

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

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

@media (max-width: 991px) {
  .portfolio-showcase .portfolio-intro {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .portfolio-showcase .portfolio-intro,
  .portfolio-showcase .portfolio-feature-card {
    border-radius: 24px;
  }

  .portfolio-showcase .portfolio-intro,
  .portfolio-showcase .portfolio-feature-body {
    padding: 24px;
  }

  .portfolio-showcase .portfolio-signal-item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .portfolio-showcase .portfolio-signal-item > span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.72rem;
  }
}

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
  height: 280px;
  width: 100%;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 29, 24, 0.98), rgba(8, 22, 39, 0.96)),
    #071d18;
}

.team-showcase::before {
  content: "";
  position: absolute;
  left: -140px;
  top: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 240, 136, 0.14), transparent 68%);
  pointer-events: none;
}

.team-showcase .section-title,
.team-showcase .team-shell {
  position: relative;
  z-index: 1;
}

.team-showcase .team-header-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.team-showcase .team-header-copy {
  max-width: 720px;
}

.team-showcase .team-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-showcase .team-header-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 2.7vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.team-showcase .team-read-more {
  flex-shrink: 0;
}

.team-showcase .team-feature-wrap {
  margin-bottom: 34px;
}

.team-showcase .team-feature-link {
  display: block;
}

.team-showcase .team-feature-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 26px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(4, 14, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.team-showcase .team-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 240, 136, 0.3);
  box-shadow: 0 38px 92px rgba(0, 0, 0, 0.3);
}

.team-showcase .team-feature-frame {
  position: relative;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(17, 240, 136, 0.28), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(17, 240, 136, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.team-showcase .team-feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 100%;
}

.team-showcase .team-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 49, 0), rgba(8, 26, 49, 0.2));
}

.team-showcase .team-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}

.team-showcase .team-feature-card:hover .team-feature-media img {
  transform: scale(1.04);
}

.team-showcase .team-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 6px 4px;
}

.team-showcase .team-feature-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 0 14px;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(17, 240, 136, 0.14);
  border: 1px solid rgba(17, 240, 136, 0.24);
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-items: center;
}

.team-showcase .team-feature-body h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.team-showcase .team-feature-body .team-role {
  margin-bottom: 16px;
  font-size: 0.82rem;
}

.team-showcase .team-feature-body p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.team-showcase .team-grid-row {
  margin-top: 0;
}

.team-showcase .team-spotlight-card {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.team-showcase .team-spotlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 240, 136, 0.26);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.22);
}

.team-showcase .team-spotlight-media {
  position: relative;
  overflow: hidden;
}

.team-showcase .team-spotlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 49, 0), rgba(8, 26, 49, 0.18));
}

.team-showcase .team-spotlight-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}

.team-showcase .team-spotlight-card:hover .team-spotlight-media img {
  transform: scale(1.05);
}

.team-showcase .team-spotlight-body {
  padding: 20px 20px 22px;
}

.team-showcase .team-role {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-showcase .team-spotlight-body h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .team-showcase .team-header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-showcase .team-feature-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .team-showcase .team-feature-media img {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .team-showcase .team-feature-wrap {
    margin-bottom: 24px;
  }

  .team-showcase .team-feature-card {
    padding: 18px;
    border-radius: 24px;
  }

  .team-showcase .team-feature-frame {
    padding: 10px;
    border-radius: 22px;
  }

  .team-showcase .team-feature-media {
    border-radius: 18px;
  }

  .team-showcase .team-feature-media img {
    min-height: 300px;
  }

  .team-showcase .team-feature-body h4 {
    font-size: 1.75rem;
  }

  .team-showcase .team-feature-body p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .team-showcase .team-spotlight-card {
    border-radius: 24px;
  }

  .team-showcase .team-spotlight-media img {
    height: 300px;
  }
}

.team .member {
  --default-color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 250px;
}

.team-member {
  --default-color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
}

.team-member .card-body {
  height: 80px;
  padding: 10px;
}

.team-member img {
  height: 260px;
  border-radius: 15px 15px 0px 0px;
}

.team-member h6{
  margin-bottom: 2px;
}
.team-member p{
  margin-top: 2px;
}

.team .member img {
  height: 250px;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 5px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: var(--contrast-color);
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: var(--default-color);
  margin-top: 15px;
}

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

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

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

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

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq .faq-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq .faq-item p {
  font-size: 15px;
}

.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment-page {
  position: relative;
  overflow: hidden;
}

.appointment-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(17, 240, 136, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(11, 35, 65, 0.08), transparent 26%);
  pointer-events: none;
}

.appointment-page .container {
  position: relative;
  z-index: 2;
}

.appointment-page-header {
  max-width: 820px;
  margin: 0 auto 42px;
}

.appointment-kicker,
.appointment-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0a9f5d;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.appointment-kicker::before,
.appointment-panel-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

.appointment-page-header h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.appointment-page-header p {
  margin: 0;
  color: rgba(8, 26, 49, 0.72);
  font-size: 1.05rem;
  line-height: 1.9;
}

.appointment-feedback {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 auto 28px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid transparent;
}

.appointment-feedback i {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
}

.appointment-feedback strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.appointment-feedback p {
  margin: 4px 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.appointment-feedback-success {
  background: rgba(17, 240, 136, 0.08);
  border-color: rgba(17, 240, 136, 0.16);
  color: #067445;
}

.appointment-feedback-error {
  background: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.14);
  color: #b02a37;
}

.appointment-intro-card,
.appointment-form-card {
  height: 100%;
  border-radius: 34px;
  border: 1px solid rgba(11, 35, 65, 0.08);
  box-shadow: 0 22px 60px rgba(9, 23, 44, 0.08);
}

.appointment-intro-card {
  padding: 34px;
  background:
    linear-gradient(165deg, rgba(8, 22, 39, 0.98), rgba(9, 28, 49, 0.95)),
    #081a31;
}

.appointment-intro-card h2 {
  margin: 16px 0 16px;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.appointment-intro-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.82;
}

.appointment-benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.appointment-benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.appointment-benefit i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(17, 240, 136, 0.16);
  color: var(--accent-color);
  font-size: 1.3rem;
}

.appointment-benefit strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.appointment-benefit span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.68;
}

.appointment-process {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.appointment-process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}

.appointment-process-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.appointment-process-step strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.appointment-process-step small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.65;
}

.appointment-contact-card {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.appointment-contact-card .label {
  display: block;
  color: var(--accent-color);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.appointment-contact-card strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

.appointment-form-card {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95)),
    #ffffff;
}

.appointment-form-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.appointment-form-head p {
  margin: 0 0 26px;
  color: rgba(8, 26, 49, 0.68);
  font-size: 0.98rem;
  line-height: 1.78;
}

.appointment-booking-form {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.appointment-booking-form .form-label {
  margin-bottom: 8px;
  color: #081a31;
  font-size: 0.92rem;
  font-weight: 600;
}

.appointment .appointment-form input[type=text],
.appointment .appointment-form input[type=email],
.appointment .appointment-form input[type=tel],
.appointment .appointment-form input[type=date],
.appointment .appointment-form input[type=time],
.appointment .appointment-form select,
.appointment .appointment-form textarea {
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(8, 26, 49, 0.12);
  background: #ffffff;
  box-shadow: none;
  color: #081a31;
  font-size: 0.96rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.appointment .appointment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.appointment .appointment-form input[type=text]:focus,
.appointment .appointment-form input[type=email]:focus,
.appointment .appointment-form input[type=tel]:focus,
.appointment .appointment-form input[type=date]:focus,
.appointment .appointment-form input[type=time]:focus,
.appointment .appointment-form select:focus,
.appointment .appointment-form textarea:focus {
  border-color: rgba(17, 240, 136, 0.82);
  box-shadow: 0 0 0 0.22rem rgba(17, 240, 136, 0.12);
}

.appointment .appointment-form input::placeholder,
.appointment .appointment-form textarea::placeholder {
  color: rgba(8, 26, 49, 0.42);
}

.appointment-form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 240, 136, 0.08);
  color: #066f42;
  font-size: 0.92rem;
  line-height: 1.65;
}

.appointment-form-note i {
  font-size: 1rem;
  line-height: 1;
  margin-top: 2px;
}

.appointment .appointment-form button[type=submit] {
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--accent-color);
  color: #042114;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 18px 42px rgba(17, 240, 136, 0.2);
}

.appointment .appointment-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), white 12%);
  transform: translateY(-2px);
}

.appointment-secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(8, 26, 49, 0.12);
  background: rgba(8, 26, 49, 0.03);
  color: #081a31;
  font-size: 0.92rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.appointment-secondary-link:hover {
  color: #081a31;
  background: rgba(8, 26, 49, 0.06);
  border-color: rgba(8, 26, 49, 0.18);
}

@media (max-width: 991px) {
  .appointment-page-header {
    margin-bottom: 34px;
  }

  .appointment-intro-card,
  .appointment-form-card {
    padding: 28px;
    border-radius: 28px;
  }
}

@media (max-width: 767px) {
  .appointment-page-header h1 {
    font-size: 2.25rem;
  }

  .appointment-benefit,
  .appointment-process-step {
    grid-template-columns: 1fr;
  }

  .appointment .appointment-form button[type=submit],
  .appointment-secondary-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .appointment-intro-card,
  .appointment-form-card {
    padding: 24px;
    border-radius: 24px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Why Kano? — Cycling card carousel
--------------------------------------------------------------*/
.why-carousel-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-carousel {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.why-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  visibility: hidden;
}

.why-slide.active,
.why-slide.incoming {
  visibility: visible;
}

.why-slide.active {
  z-index: 1;
  pointer-events: auto;
}

.why-slide.incoming {
  z-index: 2;
}

.why-slide.leaving {
  z-index: 1;
}

/* Each card inside a slide gets staggered animation */
.why-slide .why-card {
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

.why-slide.active .why-card:nth-child(1) { transition-delay: 0.04s; }
.why-slide.active .why-card:nth-child(2) { transition-delay: 0.13s; }
.why-slide.active .why-card:nth-child(3) { transition-delay: 0.22s; }
.why-slide.active .why-card:nth-child(4) { transition-delay: 0.31s; }

.why-slide.incoming .why-card:nth-child(1) { transition-delay: 0.04s; }
.why-slide.incoming .why-card:nth-child(2) { transition-delay: 0.13s; }
.why-slide.incoming .why-card:nth-child(3) { transition-delay: 0.22s; }
.why-slide.incoming .why-card:nth-child(4) { transition-delay: 0.31s; }

.why-slide.active .why-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.why-slide.incoming .why-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Leaving animation */
.why-slide.leaving .why-card {
  opacity: 0;
  transform: translateY(-14px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.why-slide.leaving .why-card:nth-child(1) { transition-delay: 0s; }
.why-slide.leaving .why-card:nth-child(2) { transition-delay: 0.04s; }
.why-slide.leaving .why-card:nth-child(3) { transition-delay: 0.08s; }
.why-slide.leaving .why-card:nth-child(4) { transition-delay: 0.12s; }

/* Dots */
.why-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
  flex-shrink: 0;
}

.why-dot.active {
  background: #3ddfa4;
  width: 28px;
  border-radius: 5px;
  transform: scale(1);
}

.why-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.45);
}

/*--------------------------------------------------------------
# Features Dark (Why Kano?) — forest-green dark theme
--------------------------------------------------------------*/
.features.features-dark {
  background: linear-gradient(160deg, #061e10 0%, #0b3320 55%, #082a1a 100%);
  position: relative;
  overflow: hidden;
}

.features.features-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(17, 200, 100, 0.07), transparent),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(8, 180, 80, 0.05), transparent);
  pointer-events: none;
}

.features.features-dark .section-title h2 {
  color: rgba(255, 255, 255, 0.45);
}

.features.features-dark .section-title div {
  color: #ffffff;
}

.features.features-dark .section-title .description-title {
  color: #3ddfa4;
}

.features.features-dark .why-intro {
  background:
    linear-gradient(160deg, rgba(5, 35, 18, 0.98), rgba(8, 48, 24, 0.94)),
    #052010;
  border-color: rgba(40, 220, 130, 0.18);
}

.features.features-dark .why-kicker {
  color: #3ddfa4;
}

.features.features-dark .why-intro h3 {
  color: #ffffff;
}

.features.features-dark .why-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.features.features-dark .why-mini-stats > div {
  background: rgba(40, 220, 130, 0.07);
  border-color: rgba(40, 220, 130, 0.14);
}

.features.features-dark .why-mini-stats strong {
  color: #ffffff;
}

.features.features-dark .why-mini-stats span {
  color: rgba(255, 255, 255, 0.65);
}

.features.features-dark .why-card {
  background:
    linear-gradient(180deg, rgba(8, 48, 26, 0.95), rgba(5, 36, 18, 0.92));
  border-color: rgba(40, 220, 130, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.features.features-dark .why-card:hover {
  border-color: rgba(40, 220, 130, 0.38);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, rgba(10, 60, 32, 0.98), rgba(6, 44, 22, 0.95));
}

.features.features-dark .why-card-icon {
  background: rgba(40, 220, 130, 0.14);
  color: #3ddfa4;
}

.features.features-dark .why-card h4 {
  color: #e8f9f0;
}

.features.features-dark .why-card p {
  color: rgba(220, 245, 232, 0.72);
}

/*--------------------------------------------------------------
# Team Detail Card (used on team-detail.blade.php other-team grid)
--------------------------------------------------------------*/
.team-detail-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(11, 35, 65, 0.08);
  box-shadow: 0 12px 36px rgba(9, 23, 44, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: block;
}

.team-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 240, 136, 0.3);
  box-shadow: 0 24px 52px rgba(9, 23, 44, 0.14);
}

.team-detail-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}

.team-detail-card:hover img {
  transform: scale(1.04);
}

.team-detail-card-body {
  padding: 18px 20px 20px;
}

.team-detail-card-body span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-color);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-detail-card-body h4 {
  margin: 0;
  color: #081a31;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

/*--------------------------------------------------------------
# Team Spotlight Card — clickable link state
--------------------------------------------------------------*/
.team-showcase a:has(.team-spotlight-card) {
  display: block;
  height: 100%;
}

.team-showcase a .team-spotlight-card {
  height: 100%;
}

.team-showcase a:focus-visible .team-spotlight-card {
  outline: 2px solid rgba(40, 220, 130, 0.6);
  outline-offset: 3px;
}

/*--------------------------------------------------------------
# Partners Ticker / Infinite Marquee
--------------------------------------------------------------*/
.clients-ticker-section {
  padding: 60px 0 48px;
  overflow: hidden;
}

.clients-ticker-section .section-title {
  padding-bottom: 36px;
}

.ticker-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Fade edges */
.ticker-outer::before,
.ticker-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--background-color, #ffffff) 0%, transparent 100%);
}

.ticker-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--background-color, #ffffff) 0%, transparent 100%);
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 16s linear infinite;
  will-change: transform;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 20px 36px;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.ticker-item img {
  max-height: 80px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(60%) opacity(0.75);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.ticker-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

/*--------------------------------------------------------------
# Portfolios Page — Hero
--------------------------------------------------------------*/
.portfolios-hero {
  position: relative;
  padding: 120px 0 72px;
  overflow: hidden;
}

.portfolios-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.portfolios-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portfolios-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 14, 28, 0.92) 0%, rgba(4, 14, 28, 0.78) 50%, rgba(4, 14, 28, 0.55) 100%);
}

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

.portfolios-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolios-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.portfolios-hero-content p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.portfolios-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px 36px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.portfolios-hero-stat strong {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.portfolios-hero-stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.portfolios-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.portfolios-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.portfolios-breadcrumb a:hover {
  color: var(--accent-color);
}

.portfolios-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.85);
}

/*--------------------------------------------------------------
# Portfolios Page — Project Cards
--------------------------------------------------------------*/
.portfolios-grid {
  background: #f6f9fc;
}

.pf-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(11, 35, 65, 0.07);
  box-shadow: 0 8px 32px rgba(9, 23, 44, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(9, 23, 44, 0.13);
}

.pf-card-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.pf-card-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.38s ease;
}

.pf-card:hover .pf-card-media img {
  transform: scale(1.05);
}

.pf-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 14, 28, 0.65) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pf-card:hover .pf-card-overlay {
  opacity: 1;
}

.pf-card-view {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pf-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pf-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.pf-tag {
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(17, 240, 136, 0.1);
  color: #07a860;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pf-status {
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pf-status--active,
.pf-status--ongoing {
  background: rgba(17, 240, 136, 0.08);
  color: #07a860;
}

.pf-status--planned {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.pf-status--complete,
.pf-status--completed {
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
}

.pf-status--suspended,
.pf-status--cancel {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
}

.pf-card-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #081a31;
  margin-bottom: 10px;
  line-height: 1.35;
}

.pf-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.pf-card-body h3 a:hover {
  color: var(--accent-color);
}

.pf-card-body p {
  font-size: 0.93rem;
  color: rgba(8, 26, 49, 0.68);
  line-height: 1.72;
  margin-bottom: 18px;
  flex: 1;
}

.pf-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.2s ease;
}

.pf-card-link:hover {
  gap: 10px;
}

/* Empty state */
.pf-empty {
  padding: 60px 20px;
}

.pf-empty i {
  font-size: 3.5rem;
  color: rgba(8, 26, 49, 0.2);
  display: block;
  margin-bottom: 20px;
}

.pf-empty h4 {
  color: #081a31;
  font-weight: 700;
  margin-bottom: 10px;
}

.pf-empty p {
  color: rgba(8, 26, 49, 0.6);
  margin-bottom: 24px;
}

/*--------------------------------------------------------------
# Portfolios Page — CTA strip
--------------------------------------------------------------*/
.portfolios-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.portfolios-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.portfolios-cta .container {
  position: relative;
  z-index: 2;
}

.portfolios-cta h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.portfolios-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}


/*--------------------------------------------------------------
# FAQ — Two-column accordion layout
--------------------------------------------------------------*/
.faq-new {
  padding: 80px 0;
}

.faq-new-intro {
  position: sticky;
  top: 100px;
  padding-right: 20px;
}

.faq-new-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-new-intro h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #081a31;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.faq-new-intro p {
  font-size: 1rem;
  color: rgba(8, 26, 49, 0.68);
  line-height: 1.75;
  margin-bottom: 28px;
}

.faq-new-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.2s ease;
}

.faq-new-cta:hover {
  gap: 14px;
}

/* Accordion items */
.faq-acc-item {
  border: none;
  border-bottom: 1px solid rgba(11, 35, 65, 0.1);
  border-radius: 0 !important;
  background: transparent;
}

.faq-acc-item:first-child {
  border-top: 1px solid rgba(11, 35, 65, 0.1);
}

.faq-acc-btn {
  background: transparent !important;
  color: #081a31 !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 0;
  padding-right: 28px;
  box-shadow: none !important;
  border: none;
  position: relative;
}

.faq-acc-btn::after {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 0.95rem;
  color: var(--accent-color);
  background-image: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.28s ease;
}

.faq-acc-btn:not(.collapsed)::after {
  content: "\f286";
  transform: translateY(-50%);
}

.faq-acc-body {
  padding: 0 0 20px;
  color: rgba(8, 26, 49, 0.7);
  font-size: 0.97rem;
  line-height: 1.78;
}

@media (max-width: 991px) {
  .faq-new-intro {
    position: static;
    padding-right: 0;
    margin-bottom: 8px;
  }
}

/*--------------------------------------------------------------
# Contact — Dark background panel design
--------------------------------------------------------------*/
.contact-new {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.contact-new-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-new-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-new-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(4, 14, 28, 0.97) 0%, rgba(4, 14, 28, 0.92) 50%, rgba(4, 18, 36, 0.88) 100%);
}

.contact-new .container {
  position: relative;
  z-index: 2;
}

/* Info panel */
.contact-info-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-info-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.contact-info-panel > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
  flex: 1;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(17, 240, 136, 0.1);
  border: 1px solid rgba(17, 240, 136, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0.04em;
}

.contact-info-item span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.93rem;
  line-height: 1.5;
}

.contact-info-item span a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item span a:hover {
  color: var(--accent-color);
}

.contact-appt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(17, 240, 136, 0.12);
  border: 1px solid rgba(17, 240, 136, 0.28);
  border-radius: 14px;
  color: var(--accent-color);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  width: fit-content;
}

.contact-appt-btn:hover {
  background: rgba(17, 240, 136, 0.2);
  border-color: rgba(17, 240, 136, 0.5);
  transform: translateY(-2px);
  color: var(--accent-color);
}

.contact-form-helper {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* Form panel */
.contact-form-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 40px 36px;
  backdrop-filter: blur(8px);
  height: 100%;
}

.contact-form-panel h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-form-panel > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.93rem;
  margin-bottom: 28px;
}

.contact-form-panel label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.contact-form-panel .form-control {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #ffffff;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form-panel .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form-panel .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(17, 240, 136, 0.4);
  box-shadow: 0 0 0 3px rgba(17, 240, 136, 0.08);
  color: #ffffff;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent-color);
  border: none;
  border-radius: 14px;
  color: #081a31;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: 0.02em;
}

.contact-submit-btn:hover {
  background: #0de07a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 240, 136, 0.3);
}

.contact-form-panel .loading,
.contact-form-panel .error-message,
.contact-form-panel .sent-message {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.contact-form-panel .error-message {
  color: #f87171;
}

.contact-form-panel .sent-message {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .contact-form-panel {
    padding: 28px 22px;
  }
}


/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/

/* Hero */
.about-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 14, 28, 0.95) 0%, rgba(4, 14, 28, 0.82) 55%, rgba(4, 14, 28, 0.6) 100%);
}

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

.about-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.about-hero-content p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 28px;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.about-breadcrumb a:hover { color: var(--accent-color); }
.about-breadcrumb span:last-child { color: rgba(255, 255, 255, 0.85); }

/* Profile section */
.about-profile {
  padding: 80px 0;
}

.about-section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-color);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-profile h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #081a31;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-profile p {
  font-size: 0.98rem;
  color: rgba(8, 26, 49, 0.72);
  line-height: 1.82;
  margin-bottom: 14px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(8, 22, 39, 0.97), rgba(9, 28, 49, 0.93));
  border: 1px solid rgba(17, 240, 136, 0.12);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 240, 136, 0.3);
}

.about-stat-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-card span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

/* Mission / Vision / Values */
.about-mvv {
  padding: 80px 0;
}

.mvv-card {
  height: 100%;
  padding: 32px 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(11, 35, 65, 0.08);
  box-shadow: 0 10px 36px rgba(9, 23, 44, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(9, 23, 44, 0.12);
}

.mvv-card--accent {
  background: linear-gradient(155deg, #071e0e, #0b3320);
  border-color: rgba(17, 240, 136, 0.18);
}

.mvv-card--accent h3,
.mvv-card--accent p {
  color: #ffffff;
}

.mvv-card--accent p {
  color: rgba(255, 255, 255, 0.76);
}

.mvv-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(17, 240, 136, 0.1);
  color: var(--accent-color);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mvv-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #081a31;
  margin-bottom: 14px;
}

.mvv-card p {
  font-size: 0.96rem;
  color: rgba(8, 26, 49, 0.7);
  line-height: 1.78;
  margin: 0;
}

.mvv-values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvv-values li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(8, 26, 49, 0.72);
  line-height: 1.6;
}

.mvv-values li .bi {
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Operations */
.about-operations {
  padding: 80px 0;
}

.about-operations h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #081a31;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.about-operations > .container > .row > .col-lg-5 p {
  font-size: 0.98rem;
  color: rgba(8, 26, 49, 0.68);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-op-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}

.about-op-link:hover { gap: 14px; }

.ops-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ops-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(11, 35, 65, 0.08);
  transition: background 0.2s;
}

.ops-item:last-child { border-bottom: none; }

.ops-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(17, 240, 136, 0.08);
  border: 1px solid rgba(17, 240, 136, 0.14);
  color: var(--accent-color);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}

.ops-item:hover .ops-icon {
  background: rgba(17, 240, 136, 0.15);
  border-color: rgba(17, 240, 136, 0.3);
}

.ops-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #081a31;
  margin-bottom: 4px;
}

.ops-item p {
  font-size: 0.92rem;
  color: rgba(8, 26, 49, 0.65);
  line-height: 1.7;
  margin: 0;
}

/* CTA */
.about-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.about-cta .container { position: relative; z-index: 2; }

.about-cta h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.about-cta p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.about-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.about-cta-secondary:hover {
  color: var(--accent-color);
  gap: 14px;
}


/*--------------------------------------------------------------
# Inner Page Hero (shared: Team, Blog, Stock)
--------------------------------------------------------------*/

.inner-page-hero {
  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inner-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 14, 28, 0.96) 0%, rgba(4, 14, 28, 0.84) 55%, rgba(4, 14, 28, 0.62) 100%);
}

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

.inner-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-color);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inner-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.inner-hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  line-height: 1.72;
  margin-bottom: 24px;
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/

.blog-list-section {
  padding: 80px 0;
}

.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: rgba(8, 26, 49, 0.45);
}

.blog-empty .bi {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  color: var(--accent-color);
  opacity: 0.5;
}

.blog-empty h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #081a31;
  margin-bottom: 10px;
}

.blog-empty p {
  font-size: 0.97rem;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.78;
}

/* Featured card */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11, 35, 65, 0.08);
  box-shadow: 0 12px 40px rgba(9, 23, 44, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.blog-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(9, 23, 44, 0.13);
}

.blog-featured-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-featured-card:hover .blog-featured-media img {
  transform: scale(1.04);
}

.blog-featured-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(17, 240, 136, 0.1);
  color: var(--accent-color);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.blog-featured-body h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  color: #081a31;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.blog-featured-body p {
  font-size: 0.97rem;
  color: rgba(8, 26, 49, 0.68);
  line-height: 1.78;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  color: rgba(8, 26, 49, 0.5);
  margin-bottom: 20px;
}

.blog-meta .bi {
  margin-right: 4px;
  color: var(--accent-color);
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}

.blog-featured-card:hover .blog-read-more { gap: 14px; }

/* Regular blog card */
.blog-card {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11, 35, 65, 0.08);
  box-shadow: 0 8px 28px rgba(9, 23, 44, 0.07);
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(9, 23, 44, 0.12);
}

.blog-card-media {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0b1e37, #081428);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: rgba(17, 240, 136, 0.3);
}

.blog-card-body {
  padding: 24px 22px 20px;
}

.blog-card-body h4 {
  font-size: 1.04rem;
  font-weight: 700;
  color: #081a31;
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.blog-card:hover .blog-card-body h4 { color: var(--accent-color); }

.blog-card-body p {
  font-size: 0.9rem;
  color: rgba(8, 26, 49, 0.62);
  line-height: 1.72;
  margin-bottom: 16px;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(8, 26, 49, 0.48);
  padding-top: 14px;
  border-top: 1px solid rgba(11, 35, 65, 0.06);
}

.blog-card-footer .bi {
  margin-right: 4px;
  color: var(--accent-color);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }
  .blog-featured-media {
    min-height: 240px;
  }
  .blog-featured-body {
    padding: 28px 24px;
  }
}

/*--------------------------------------------------------------
# NGX Stock Page
--------------------------------------------------------------*/

.stock-context {
  padding: 72px 0;
}

.stock-context-card {
  height: 100%;
  padding: 32px 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(11, 35, 65, 0.08);
  box-shadow: 0 8px 28px rgba(9, 23, 44, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.stock-context-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(9, 23, 44, 0.12);
}

.stock-context-card--accent {
  background: linear-gradient(155deg, #071e0e, #0b3320);
  border-color: rgba(17, 240, 136, 0.18);
}

.stock-context-card--accent h4,
.stock-context-card--accent p {
  color: #ffffff !important;
}

.stock-context-card--accent p {
  color: rgba(255, 255, 255, 0.76) !important;
}

.stock-context-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(17, 240, 136, 0.1);
  color: var(--accent-color);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stock-context-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #081a31;
  margin-bottom: 10px;
}

.stock-context-card p {
  font-size: 0.93rem;
  color: rgba(8, 26, 49, 0.68);
  line-height: 1.76;
  margin: 0;
}

.stock-feed-section {
  padding: 72px 0;
}

.stock-feed-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(17, 240, 136, 0.07);
  border: 1px solid rgba(17, 240, 136, 0.2);
  border-radius: 12px;
  font-size: 0.88rem;
  color: rgba(8, 26, 49, 0.7);
  margin-bottom: 24px;
}

.stock-feed-notice .bi {
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.stock-iframe-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(11, 35, 65, 0.1);
  box-shadow: 0 12px 48px rgba(9, 23, 44, 0.1);
}

.stock-iframe-wrap iframe {
  display: block;
}

.stock-disclaimer {
  padding: 48px 0;
}

.stock-disclaimer-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(11, 35, 65, 0.08);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 4px 16px rgba(9, 23, 44, 0.05);
}

.stock-disclaimer-inner > .bi {
  font-size: 1.4rem;
  color: rgba(8, 26, 49, 0.3);
  flex-shrink: 0;
  margin-top: 2px;
}

.stock-disclaimer-inner h5 {
  font-size: 0.96rem;
  font-weight: 700;
  color: #081a31;
  margin-bottom: 8px;
}

.stock-disclaimer-inner p {
  font-size: 0.85rem;
  color: rgba(8, 26, 49, 0.58);
  line-height: 1.72;
  margin: 0;
}


/* MVV accent card overrides (higher specificity fix) */
.about-mvv .mvv-card.mvv-card--accent h3,
.about-mvv .mvv-card.mvv-card--accent p {
  color: #ffffff !important;
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

.contact-page-section {
  padding: 80px 0;
}

.contact-page-heading {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: #081a31;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.contact-page-sub {
  font-size: 0.98rem;
  color: rgba(8, 26, 49, 0.68);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 35, 65, 0.08);
}

.contact-info-row:first-child { padding-top: 0; }
.contact-info-row:last-child  { border-bottom: none; }

.contact-info-ic {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(17, 240, 136, 0.08);
  border: 1px solid rgba(17, 240, 136, 0.15);
  color: var(--accent-color);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-row h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #081a31;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-info-row p {
  font-size: 0.93rem;
  color: rgba(8, 26, 49, 0.68);
  line-height: 1.65;
  margin: 0;
}

.contact-info-row p a {
  color: rgba(8, 26, 49, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-row p a:hover { color: var(--accent-color); }

.contact-page-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.contact-page-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(11, 35, 65, 0.12);
  color: rgba(8, 26, 49, 0.6);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.contact-page-socials a:hover {
  background: rgba(17, 240, 136, 0.1);
  border-color: rgba(17, 240, 136, 0.35);
  color: var(--accent-color);
}

.contact-appt-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #071e0e, #0b3320);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1px solid rgba(17, 240, 136, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-appt-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(9, 23, 44, 0.2);
  color: #ffffff;
}

/* Form card */
.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(11, 35, 65, 0.08);
  border-radius: 32px;
  padding: 48px 44px;
  box-shadow: 0 16px 56px rgba(9, 23, 44, 0.09);
}

.contact-form-card h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #081a31;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 0.94rem;
  color: rgba(8, 26, 49, 0.6);
  line-height: 1.72;
  margin-bottom: 28px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #081a31;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(11, 35, 65, 0.14);
  border-radius: 14px;
  font-size: 0.95rem;
  color: #081a31;
  background: #f9fbff;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s;
  font-family: inherit;
  resize: none;
}

.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(17, 240, 136, 0.12);
  background: #ffffff;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(8, 26, 49, 0.35);
}

.cf-feedback {
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.cf-feedback--success {
  background: rgba(17, 240, 136, 0.1);
  border: 1px solid rgba(17, 240, 136, 0.3);
  color: #0a6640;
}

.cf-feedback--error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #b91c1c;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #071e0e, #0b3320);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.2s;
}

.cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(9, 23, 44, 0.22);
}

.cf-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Map */
.contact-map-section {
  margin-top: 0;
}

.contact-map-wrap iframe {
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 30px 22px;
  }
}

/*--------------------------------------------------------------
# Footer improvements
--------------------------------------------------------------*/

.footer-appt-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border-radius: 50px;
  background: rgba(17, 240, 136, 0.1);
  border: 1px solid rgba(17, 240, 136, 0.25);
  color: var(--accent-color);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}

.footer-appt-btn:hover {
  background: rgba(17, 240, 136, 0.18);
  border-color: rgba(17, 240, 136, 0.45);
  color: var(--accent-color);
}

.footer-subscribe-box {
  margin-bottom: 18px;
  padding: 20px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-subscribe-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-subscribe-box h5 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
}

.footer-subscribe-box p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-subscribe-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-subscribe-inputs--row {
  flex-direction: row;
  gap: 6px;
}

.footer-subscribe-inputs--row input {
  flex: 1;
  min-width: 0;
}

.footer-subscribe-inputs--row button {
  flex-shrink: 0;
  padding: 0 16px;
  white-space: nowrap;
}

.footer-subscribe-inputs input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.92rem;
}

.footer-subscribe-inputs input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.footer-subscribe-inputs input:focus {
  outline: none;
  border-color: rgba(17, 240, 136, 0.38);
  box-shadow: 0 0 0 3px rgba(17, 240, 136, 0.08);
}

.footer-subscribe-inputs button {
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: var(--accent-color);
  color: #081a31;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.footer-subscribe-inputs button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 240, 136, 0.18);
}

.footer-subscribe-inputs button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.footer-subscribe-feedback {
  min-height: 18px;
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-subscribe-feedback.is-success {
  color: rgba(17, 240, 136, 0.9);
}

.footer-subscribe-feedback.is-error {
  color: rgba(255, 163, 163, 0.92);
}

.footer-bottom {
  padding: 20px 16px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/*--------------------------------------------------------------
# Why Kano carousel — responsive fix
# Keep the carousel behaviour (dots + cycling) on all screen sizes.
# The only problem on mobile was that position:absolute slides need
# an explicit height on their parent. We set it here.
--------------------------------------------------------------*/

/* ── Mobile (≤ 575px) — 2-col card grid, taller container ── */
@media (max-width: 575px) {

  .why-carousel-wrap {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Give the carousel a fixed height so absolute-positioned
     slides have something to fill */
  .why-carousel {
    position: relative !important;
    height: 680px !important;
    overflow: hidden !important;
    flex: none !important;
  }

  /* Slides stay absolute — the JS carousel keeps working */
  .why-slide {
    position: absolute !important;
    inset: 0 !important;
  }

  /* 2-column card grid inside each slide */
  .features .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    height: 100% !important;
    gap: 10px !important;
  }

  /* Slightly compact cards on phone */
  .features .why-card {
    padding: 18px 14px !important;
    border-radius: 18px !important;
  }

  .features .why-card h4 {
    font-size: 0.95rem !important;
    margin: 12px 0 6px !important;
  }

  .features .why-card p {
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
  }

  .features .why-card-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
  }

  /* Dots stay visible — they're the indicator */
  .why-dots {
    display: flex !important;
    margin-top: 16px !important;
  }
}

/* ── Small tablet (576–767px) — same carousel, bit more height ── */
@media (min-width: 576px) and (max-width: 767px) {

  .why-carousel-wrap {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .why-carousel {
    position: relative !important;
    height: 560px !important;
    overflow: hidden !important;
    flex: none !important;
  }

  .why-slide {
    position: absolute !important;
    inset: 0 !important;
  }

  .features .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    height: 100% !important;
    gap: 12px !important;
  }

  .features .why-card {
    padding: 20px 16px !important;
  }

  .features .why-card h4 {
    font-size: 1rem !important;
  }

  .features .why-card p {
    font-size: 0.86rem !important;
  }

  .why-dots {
    display: flex !important;
    margin-top: 18px !important;
  }
}

/* ── Tablet (768–991px) — bootstrap stacks the two columns,
   so the right carousel column is full width.
   Give it a comfortable fixed height. ── */
@media (min-width: 768px) and (max-width: 991px) {

  .why-carousel-wrap {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .why-carousel {
    position: relative !important;
    height: 460px !important;
    overflow: hidden !important;
    flex: none !important;
  }

  .why-slide {
    position: absolute !important;
    inset: 0 !important;
  }

  .features .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    height: 100% !important;
  }

  .why-dots {
    display: flex !important;
    margin-top: 20px !important;
  }
}


/*--------------------------------------------------------------
# Scroll-top: hidden (misaligned — removed)
--------------------------------------------------------------*/
#scroll-top {
  display: none !important;
}

/*--------------------------------------------------------------
# Header: enforce sticky on all screen sizes including mobile
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
  }
}

/*--------------------------------------------------------------
# Footer bottom: padding on mobile so text doesn't touch the edge
--------------------------------------------------------------*/
@media (max-width: 575px) {
  .footer-bottom {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .footer-bottom p {
    text-align: center !important;
    font-size: 0.8rem !important;
  }
}
