/**
* Template Name: Strive
* Template URL: https://bootstrapmade.com/strive-bootstrap-business-template/
* Updated: Sep 20 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# 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: "Nunito",  sans-serif;
  --nav-font: "Ubuntu",  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: #46566d; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #172033; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1268b3; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --secondary-accent-color: #22b8a7;
  --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: #33425a;  /* The default color of the main navmenu links */
  --nav-hover-color: #22b8a7; /* 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: #46566d; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1268b3; /* 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: #f5f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #10263b;
  --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);
}

html {
  min-height: var(--page-visual-height, 100%);
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.header .logo img {
  max-height: 48px;
  width: auto;
  margin-right: 8px;
}

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

.header .logo span {
  font-size: 30px;
  color: var(--accent-color);
  margin-left: 2px;
  font-weight: 700;
}

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

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

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

  .header .logo h1 {
    font-size: 24px;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(7, 22, 38, 0.82);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
  border-bottom-color: rgba(124, 213, 240, 0.16);
  box-shadow: 0 16px 40px rgba(4, 15, 28, 0.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(7, 22, 38, 0.82);
  --nav-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .mobile-nav-toggle {
    display: none;
  }

  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 15px;
    padding: 2px 4px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 3px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, #67e3d7 0%, #1bc4ff 100%);
    box-shadow: 0 0 18px rgba(55, 213, 233, 0.42);
    visibility: hidden;
    width: 0;
    transition: width 0.32s ease, opacity 0.32s ease;
    opacity: 0;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: calc(100% - 6px);
    opacity: 1;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #f7fcff;
    text-shadow: 0 0 14px rgba(91, 212, 234, 0.18);
  }

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

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

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

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: rgba(231, 238, 247, 0.82);
  background: linear-gradient(180deg, #162535 0%, #101b28 100%);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid rgba(112, 163, 224, 0.18);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: #f4f8fd;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(223, 232, 244, 0.78);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

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

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: #f5f8fd;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: rgba(218, 228, 241, 0.74);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer-qr {
  position: relative;
}

.footer-qr-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(83, 197, 211, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(83, 197, 211, 0.06)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 42px rgba(2, 10, 22, 0.22);
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.34s ease, box-shadow 0.34s ease, background 0.34s ease;
}

.footer-qr-card:hover {
  transform: translateY(-6px);
  border-color: rgba(83, 197, 211, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(83, 197, 211, 0.11)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 54px rgba(2, 10, 22, 0.3);
}

.footer-qr-image {
  flex: 0 0 auto;
  width: 108px;
  height: 108px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(4, 13, 24, 0.2);
}

.footer-qr-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-qr-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.footer-qr-copy strong {
  color: #f4fbff;
  font-size: 1rem;
  line-height: 1.35;
}

.footer-qr-copy span {
  max-width: 136px;
  color: rgba(218, 228, 241, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: rgba(218, 228, 241, 0.74);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(236, 242, 248, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

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

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: rgba(8, 16, 26, 0.42);
  border-top: 1px solid rgba(112, 163, 224, 0.16);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: rgba(221, 230, 241, 0.78);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: rgba(215, 225, 238, 0.74);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: rgba(203, 216, 232, 0.62);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

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

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact,
  .footer-qr {
    margin-bottom: 40px;
  }

  .footer-qr-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-qr-copy span {
    max-width: 180px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

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

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

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

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

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

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

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

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

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

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

.page-title .heading {
  padding: 80px 0;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

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

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
}

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

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

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

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

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

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

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

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

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

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

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

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

.hero-copy {
  position: absolute;
  z-index: 4;
  left: clamp(58px, 5.6vw, 116px);
  top: 50%;
  width: min(670px, 40vw);
  transform: translateY(-43%);
  color: #ffffff;
  pointer-events: none;
}

.hero-copy-kicker {
  margin-bottom: 18px;
  color: #20d4da;
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 0 18px rgba(32, 212, 218, 0.32);
  opacity: 0;
  transform: translateX(-42px);
  animation: hero-copy-in 0.8s cubic-bezier(0.18, 0.9, 0.24, 1) 0.2s forwards;
}

.hero-copy h1 {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(3.4rem, 5.2vw, 6.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 10px 30px rgba(0, 10, 22, 0.38), 0 0 26px rgba(72, 205, 231, 0.18);
}

.hero-copy h1 span {
  opacity: 0;
  transform: translateX(-66px);
  animation: hero-copy-in 0.95s cubic-bezier(0.18, 0.9, 0.24, 1) forwards;
}

.hero-copy h1 span:nth-child(1) {
  animation-delay: 0.36s;
}

.hero-copy h1 span:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-copy p {
  margin: 0 0 44px;
  color: #ffffff;
  font-size: clamp(2rem, 2.7vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  white-space: nowrap;
  text-shadow: 0 8px 24px rgba(0, 10, 22, 0.36);
  opacity: 0;
  transform: translateX(-58px);
  animation: hero-copy-in 0.9s cubic-bezier(0.18, 0.9, 0.24, 1) 0.66s forwards;
}

.hero-copy p strong {
  color: #20d4da;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 0 24px rgba(32, 212, 218, 0.38);
}

.hero-feature-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(82px, 1fr));
  gap: 28px;
  max-width: 600px;
}

.hero-feature-item {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  transform: translateY(22px) scale(0.92);
  animation: hero-icon-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-feature-item:nth-child(1) {
  animation-delay: 0.88s;
}

.hero-feature-item:nth-child(2) {
  animation-delay: 1s;
}

.hero-feature-item:nth-child(3) {
  animation-delay: 1.12s;
}

.hero-feature-item:nth-child(4) {
  animation-delay: 1.24s;
}

.hero-feature-item i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #19d8df;
  font-size: 1.58rem;
  border: 2px solid rgba(25, 216, 223, 0.72);
  background: rgba(1, 22, 38, 0.18);
  box-shadow: 0 0 20px rgba(25, 216, 223, 0.16), inset 0 0 12px rgba(25, 216, 223, 0.09);
}

.hero-feature-item span {
  display: block;
  white-space: nowrap;
}

@keyframes hero-copy-in {
  0% {
    opacity: 0;
    transform: translateX(-72px);
    filter: blur(8px);
  }
  72% {
    opacity: 1;
    transform: translateX(8px);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes hero-icon-rise {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.9);
    filter: blur(5px);
  }
  74% {
    opacity: 1;
    transform: translateY(-4px) scale(1.03);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero .carousel-item::before {
  content: "";
  background-color: transparent;
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 1199.98px) {
  .hero-copy {
    left: 42px;
    width: min(620px, 52vw);
  }

  .hero-feature-icons {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    max-width: 360px;
    gap: 18px 26px;
  }
}

@media (max-width: 767.98px) {
  .hero-copy {
    left: 22px;
    right: 22px;
    top: 48%;
    width: auto;
    transform: translateY(-42%);
  }

  .hero-copy-kicker {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    gap: 8px;
    margin-bottom: 14px;
    font-size: 2.55rem;
  }

  .hero-copy p {
    margin-bottom: 24px;
    font-size: 1.72rem;
    white-space: normal;
  }

  .hero-feature-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 330px);
    gap: 14px;
  }

  .hero-feature-item {
    font-size: 0.86rem;
  }

  .hero-feature-item i {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
  padding: 48px 0 58px;
  background:
    radial-gradient(circle at 99% 12%, rgba(18, 104, 179, 0.10), transparent 19%),
    linear-gradient(115deg, #ffffff 0%, #ffffff 48%, #edf8ff 100%);
  overflow: hidden;
}

.about .about-anim {
  opacity: 0;
  transition-property: opacity, transform, filter;
  transition-duration: 0.85s;
  transition-timing-function: cubic-bezier(0.18, 0.9, 0.24, 1);
  filter: blur(8px);
}

.about .about-anim-left {
  transform: translateX(-72px) scale(0.97);
}

.about .about-anim-right {
  transform: translateX(72px) scale(0.97);
}

.about .about-anim-up {
  transform: translateY(48px) scale(0.98);
}

.about .about-anim.aos-animate {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}

.about .about-photo,
.about .about-copy-step,
.about .about-highlight-card,
.about .about-video-copy,
.about .about-video-play,
.about .about-video-icon {
  opacity: 0;
  transform: translateY(22px) scale(0.96);
}

.about .about-gallery.aos-animate .about-photo,
.about .about-content.aos-animate .about-copy-step,
.about .about-content.aos-animate .about-highlight-card,
.about .about-video-banner.aos-animate .about-video-copy,
.about .about-video-banner.aos-animate .about-video-play,
.about .about-video-banner.aos-animate .about-video-icon {
  animation: about-element-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about .about-gallery.aos-animate .about-photo:nth-child(1) {
  animation-delay: 0.12s;
}

.about .about-gallery.aos-animate .about-photo:nth-child(2) {
  animation-delay: 0.22s;
}

.about .about-gallery.aos-animate .about-photo:nth-child(3) {
  animation-delay: 0.32s;
}

.about .about-gallery.aos-animate .about-photo:nth-child(4) {
  animation-delay: 0.42s;
}

.about .about-content.aos-animate .about-copy-step:nth-child(1) {
  animation-delay: 0.08s;
}

.about .about-content.aos-animate .about-copy-step:nth-child(2) {
  animation-delay: 0.18s;
}

.about .about-content.aos-animate .about-copy-step:nth-child(3) {
  animation-delay: 0.28s;
}

.about .about-content.aos-animate .about-copy-step:nth-child(4) {
  animation-delay: 0.38s;
}

.about .about-content.aos-animate .about-highlight-card:nth-child(1) {
  animation-delay: 0.5s;
}

.about .about-content.aos-animate .about-highlight-card:nth-child(2) {
  animation-delay: 0.6s;
}

.about .about-content.aos-animate .about-highlight-card:nth-child(3) {
  animation-delay: 0.7s;
}

.about .about-content.aos-animate .about-highlight-card:nth-child(4) {
  animation-delay: 0.8s;
}

.about .about-content.aos-animate .about-copy-step:last-child {
  animation-delay: 0.92s;
}

.about .about-video-banner.aos-animate .about-video-copy {
  animation-delay: 0.14s;
}

.about .about-video-banner.aos-animate .about-video-play {
  animation-delay: 0.26s;
}

.about .about-video-banner.aos-animate .about-video-icon {
  animation-delay: 0.38s;
}

@keyframes about-element-in {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.94);
    filter: blur(6px);
  }
  72% {
    opacity: 1;
    transform: translateY(-4px) scale(1.015);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about::before {
  right: -70px;
  top: -42px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(18, 104, 179, 0.08);
  opacity: 0.7;
}

.about::after {
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  background:
    linear-gradient(130deg, transparent 0 44%, rgba(18, 104, 179, 0.10) 45%, transparent 62%),
    radial-gradient(circle at 88% 38%, rgba(18, 104, 179, 0.12), transparent 35%);
  opacity: 0.8;
}

.about .about-wrap {
  position: relative;
  z-index: 1;
  width: min(1820px, calc(100% - 120px));
  margin: 0 auto;
}

.about .about-intro-grid {
  display: grid;
  grid-template-columns: minmax(620px, 0.78fr) minmax(820px, 1fr);
  gap: 58px;
  align-items: start;
}

.about .about-gallery {
  display: grid;
  grid-template-columns: 1.08fr 1.08fr;
  grid-template-rows: 205px 165px 115px;
  grid-template-areas:
    "building workshop"
    "building line"
    "entrance line";
  gap: 6px;
  padding: 12px;
  height: 525px;
  border: 1px solid rgba(18, 104, 179, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 55px rgba(18, 104, 179, 0.12);
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.about .about-gallery:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 184, 167, 0.24);
  box-shadow: 0 30px 72px rgba(18, 104, 179, 0.17);
}

.about .about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #eef6fb;
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.about .about-photo:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 14px 30px rgba(7, 31, 54, 0.16);
  z-index: 2;
}

.about .about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.about .about-photo:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.about .about-photo-building {
  grid-area: building;
}

.about .about-photo-workshop {
  grid-area: workshop;
}

.about .about-photo-line {
  grid-area: line;
}

.about .about-photo-entrance {
  grid-area: entrance;
}

.about .section-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0;
}

.about .section-kicker em {
  font-style: normal;
  font-weight: 500;
}

.about .about-content h3 {
  max-width: none;
  margin-bottom: 30px;
  color: #061d45;
  font-size: 2.62rem;
  font-weight: 700;
  line-height: 1.24;
  white-space: nowrap;
}

.about .lead-text {
  max-width: 830px;
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 1.11rem;
  line-height: 1.95;
}

.about .about-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 930px;
  margin: 36px 0 28px;
}

.about .about-highlight-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 20px 18px;
  border: 1px solid rgba(18, 104, 179, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(18, 104, 179, 0.08);
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease, background 0.34s ease;
}

.about .about-highlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 184, 167, 0.25);
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(18, 104, 179, 0.16);
}

.about .about-highlight-card i {
  flex: 0 0 52px;
  color: var(--accent-color);
  font-size: 3.15rem;
  line-height: 1;
  text-align: center;
  transition: transform 0.34s ease, color 0.34s ease, filter 0.34s ease;
}

.about .about-highlight-card:hover i {
  color: var(--secondary-accent-color);
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 8px 12px rgba(34, 184, 167, 0.22));
}

.about .about-highlight-card span,
.about .about-highlight-card strong {
  display: block;
}

.about .about-highlight-card strong {
  margin-bottom: 2px;
  color: var(--accent-color);
  font-size: 1.86rem;
  font-weight: 700;
  line-height: 1;
}

.about .about-highlight-card span {
  color: #061d45;
  font-size: 1rem;
  line-height: 1.4;
}

.about .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 172px;
  justify-content: center;
  background: linear-gradient(135deg, #1268b3, #167bd6);
  border: none;
  border-radius: 6px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.about .btn-primary:hover {
  background: linear-gradient(135deg, #0f4f7a, #1268b3);
  transform: translateY(-2px);
}

.about .btn-primary i {
  transition: transform 0.3s ease;
}

.about .btn-primary:hover i {
  transform: translateX(5px);
}

.about .about-video-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 164px;
  margin: 28px 0 8px;
  padding: 28px 34px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 32, 72, 0.94), rgba(18, 104, 179, 0.68)),
    url("../assets/about-workshop-2.jpg") center / cover no-repeat;
  box-shadow: 0 18px 42px rgba(18, 104, 179, 0.18);
  cursor: pointer;
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.about .about-video-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 50%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(110deg, rgba(7, 32, 72, 0.74), rgba(18, 104, 179, 0.28)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 42px);
  pointer-events: none;
}

.about .about-video-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 45%, rgba(255, 255, 255, 0.14), transparent 28%);
  pointer-events: none;
}

.about .about-video-copy,
.about .about-video-play,
.about .about-video-icon {
  position: relative;
  z-index: 1;
}

.about .about-video-copy h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.2;
}

.about .about-video-copy p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
}

.about .about-video-copy span {
  display: block;
  width: 34px;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.about .about-video-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about .about-video-play i {
  margin-left: 7px;
  font-size: 3.6rem;
  line-height: 1;
}

.about .about-video-icon {
  justify-self: end;
  align-self: start;
  color: rgba(255, 255, 255, 0.92);
  font-size: 2rem;
}

.about .about-video-banner:hover {
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(18, 104, 179, 0.25);
}

.about .about-video-banner:hover .about-video-play {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.08), 0 0 32px rgba(120, 220, 245, 0.24);
}

.about .about-video-banner:hover .about-video-copy span {
  width: 72px;
}

body.about-video-open {
  overflow: hidden;
}

.about-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.about-video-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 30, 0.82);
  backdrop-filter: blur(4px);
}

.about-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, calc((100vh - 96px) * 16 / 9), 100%);
  max-height: calc(100vh - 96px);
  overflow: hidden;
  border-radius: 8px;
  background: #000000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.24s ease;
}

.about-video-modal.is-active .about-video-modal__dialog {
  transform: translateY(0) scale(1);
}

.about-video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(3, 13, 30, 0.72);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-video-modal__close:hover {
  background: rgba(18, 104, 179, 0.92);
  transform: scale(1.04);
}

.about-video-modal__player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 96px);
  background: #000000;
}

.about .about-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 760px;
  margin: 74px auto 28px;
  text-align: center;
}

.about .about-section-title h3 {
  margin: 0;
  color: #061d45;
  font-size: 2.1rem;
  font-weight: 700;
}

.about .about-section-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 104, 179, 0.42), transparent);
}

.about .about-section-title span:first-child::after,
.about .about-section-title span:last-child::before {
  content: "";
  display: block;
  width: 34px;
  height: 7px;
  margin: -3px 0 0 auto;
  background: radial-gradient(circle, var(--accent-color) 2px, transparent 3px);
  background-size: 12px 7px;
}

.about .about-section-title span:last-child::before {
  margin: -3px auto 0 0;
}

.about .about-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about .credential-panel {
  min-width: 0;
  overflow: hidden;
  padding: 22px 26px 24px;
  border: 1px solid rgba(18, 104, 179, 0.10);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(18, 104, 179, 0.08);
}

.about .credential-panel h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #061d45;
  font-size: 1.22rem;
  font-weight: 700;
}

.about .credential-panel h4 i {
  color: var(--accent-color);
  font-size: 0.62rem;
}

.about .about-marquee {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 0 0 2px;
}

.about .about-marquee::before,
.about .about-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 50px;
  pointer-events: none;
}

.about .about-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.about .about-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.about .about-marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: about-marquee-left 151s linear infinite;
}

.about .about-marquee-reverse .about-marquee-track {
  animation-name: about-marquee-right;
  animation-duration: 34s;
}

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

.about .certificate-card {
  position: relative;
  flex: 0 0 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 236px;
  min-height: 0;
  padding: 16px 16px 36px;
  border: 1px solid rgba(18, 104, 179, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.about .certificate-card img {
  max-width: 100%;
  max-height: 178px;
  object-fit: contain;
}

.about .certificate-card span {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  min-width: 110px;
  padding: 4px 12px;
  border-radius: 4px;
  color: #ffffff;
  background: linear-gradient(135deg, #1b76c9, #3a95e2);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.about .about-marquee-track-honors .certificate-card {
  flex: 0 0 320px;
  width: 320px;
  height: 236px;
  padding: 16px 18px 36px;
}

.about .about-marquee-track-honors .certificate-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

@keyframes about-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 10px));
  }
}

@keyframes about-marquee-right {
  from {
    transform: translateX(calc(-50% - 10px));
  }

  to {
    transform: translateX(0);
  }
}

.about .about-strengths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  padding: 22px 34px;
  border: 1px solid rgba(18, 104, 179, 0.10);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(18, 104, 179, 0.08);
}

.about .strength-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.about .strength-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--accent-color);
  background: #f0f7fe;
  box-shadow: inset 0 0 0 2px rgba(18, 104, 179, 0.12);
  font-size: 1.75rem;
}

.about .strength-item span,
.about .strength-item strong {
  display: block;
}

.about .strength-item strong {
  margin-bottom: 5px;
  color: #061d45;
  font-size: 1.12rem;
}

.about .strength-item span {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 0.96rem;
  line-height: 1.5;
}

@media (max-width: 1600px) {
  .about .about-wrap {
    width: min(1500px, calc(100% - 88px));
  }

  .about .about-intro-grid {
    grid-template-columns: minmax(520px, 0.78fr) minmax(700px, 1fr);
    gap: 44px;
  }

  .about .about-gallery {
    height: 500px;
    grid-template-rows: 195px 155px 110px;
  }

  .about .about-content h3 {
    font-size: 2.04rem;
  }

  .about .lead-text {
    font-size: 1rem;
  }

  .about .about-highlights {
    gap: 16px;
  }
}

@media (max-width: 1199.98px) {
  .about .about-wrap {
    width: min(960px, calc(100% - 48px));
  }

  .about .about-intro-grid,
  .about .about-credentials {
    grid-template-columns: 1fr;
  }

  .about .about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about .about-strengths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .about {
    padding: 60px 0 66px;
  }

  .about .about-content h3 {
    font-size: 1.95rem;
    white-space: normal;
  }
}

@media (max-width: 575.98px) {
  .about .about-wrap {
    width: min(100% - 28px, 520px);
  }

  .about .about-gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "building"
      "workshop"
      "line"
      "entrance";
    grid-template-rows: repeat(4, 180px);
    height: auto;
  }

  .about .about-content h3 {
    font-size: 1.65rem;
  }

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

  .about .about-video-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 240px;
    text-align: center;
  }

  .about .about-video-copy span {
    margin: 0 auto;
  }

  .about .about-video-icon {
    justify-self: center;
  }

  .about-video-modal {
    padding: 14px;
  }

  .about-video-modal__dialog,
  .about-video-modal__player {
    max-height: calc(100vh - 48px);
  }

  .about-video-modal__close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }

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

  .about .about-section-title h3 {
    font-size: 1.55rem;
  }

  .about .about-marquee-track-honors .certificate-card {
    flex-basis: 260px;
    width: 260px;
    height: 236px;
  }

  .about .about-marquee-track-honors {
    animation-duration: 124s;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.product-center {
  padding: 82px 0 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(64, 164, 235, 0.15), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(48, 176, 222, 0.12), transparent 28%),
    linear-gradient(135deg, #f8fcff 0%, #eef7ff 48%, #f7fbff 100%);
}

.product-center::before,
.product-center::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(34, 145, 221, 0.14);
  border-radius: 999px;
}

.product-center::before {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
}

.product-center::after {
  width: 760px;
  height: 760px;
  left: -260px;
  bottom: -420px;
  transform: rotate(-18deg);
}

.product-center .container {
  position: relative;
  z-index: 1;
  width: min(1820px, calc(100% - 120px));
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 1600px) {
  .product-center .container {
    width: min(1500px, calc(100% - 88px));
  }
}

@media (max-width: 1199.98px) {
  .product-center .container {
    width: min(960px, calc(100% - 48px));
  }
}

@media (max-width: 575.98px) {
  .product-center .container {
    width: min(100% - 28px, 520px);
  }
}

.product-center [data-aos^="module-"] {
  opacity: 0;
  filter: blur(10px);
  transition-property: opacity, transform, filter;
  transition-duration: 0.82s;
  transition-timing-function: cubic-bezier(0.18, 0.9, 0.24, 1);
}

.product-center [data-aos="module-left"] {
  transform: translate3d(-58px, 0, 0) scale(0.97);
}

.product-center [data-aos="module-right"] {
  transform: translate3d(58px, 0, 0) scale(0.97);
}

.product-center [data-aos="module-up"] {
  transform: translate3d(0, 42px, 0) scale(0.97);
}

.product-center [data-aos="module-card"] {
  transform: translate3d(0, 46px, 0) scale(0.92);
}

.product-center [data-aos^="module-"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.product-heading {
  max-width: 660px;
  margin-bottom: 32px;
}

.product-heading h2 {
  margin: 8px 0 20px;
  color: #10233f;
  font-size: clamp(2.15rem, 4vw, 3.15rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.product-heading p {
  margin: 0;
  color: #64748b;
  font-size: 1.03rem;
  line-height: 1.9;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 36px;
  align-items: center;
}

.product-visual {
  min-width: 0;
}

.product-main-card,
.product-copy,
.product-feature-row article {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 54px rgba(39, 99, 151, 0.13);
  backdrop-filter: blur(14px);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.38s ease, background 0.38s ease, box-shadow 0.38s ease;
}

.product-main-card {
  position: relative;
  min-height: clamp(330px, 31vw, 430px);
  overflow: hidden;
  background: #dcebf8;
}

.product-main-card:hover {
  transform: translateY(-12px) scale(1.012);
  border-color: rgba(30, 150, 224, 0.38);
  box-shadow: 0 34px 72px rgba(39, 99, 151, 0.2);
}

.product-main-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.product-main-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 82, 148, 0.12), transparent 30%, rgba(31, 155, 230, 0.1)),
    linear-gradient(180deg, transparent 72%, rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.product-main-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(330px, 31vw, 430px);
  object-fit: cover;
  object-position: 50% 52%;
  transition: transform 0.62s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.62s ease;
}

.product-image-swiper,
.product-image-swiper .swiper-wrapper,
.product-image-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  min-height: clamp(330px, 31vw, 430px);
}

.product-image-swiper .swiper-pagination {
  bottom: 14px;
}

.product-image-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0.75;
}

.product-image-swiper .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: #0f8ee8;
  opacity: 1;
}

.product-copy {
  min-height: 360px;
  padding: clamp(26px, 3vw, 38px) clamp(30px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-copy:hover {
  transform: none;
  border-color: rgba(30, 150, 224, 0.3);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 66px rgba(39, 99, 151, 0.18);
}

.product-copy:hover .product-label {
  transform: translateY(-2px);
  background: rgba(219, 242, 255, 0.96);
  box-shadow: 0 14px 28px rgba(36, 139, 226, 0.18);
}

.product-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #0b72d9;
  background: rgba(230, 244, 255, 0.9);
  box-shadow: 0 10px 24px rgba(36, 139, 226, 0.13);
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}

.product-copy h3 {
  margin: 0 0 18px;
  color: #10233f;
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.product-lead {
  margin: 0 0 26px;
  color: #5f6f84;
  font-size: 1rem;
  line-height: 1.9;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.product-specs div {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(21, 122, 217, 0.15);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 255, 0.86));
  box-shadow: 0 10px 24px rgba(26, 98, 158, 0.09);
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.34s ease, background 0.34s ease, box-shadow 0.34s ease;
}

.product-specs div:hover {
  transform: translateY(-7px) scale(1.025);
  border-color: rgba(21, 122, 217, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 248, 255, 0.94));
  box-shadow: 0 18px 36px rgba(26, 98, 158, 0.15);
}

.product-specs div:hover i {
  transform: rotate(-6deg) scale(1.12);
  color: #0a91dd;
}

.product-specs i {
  flex: 0 0 auto;
  color: #0873d8;
  font-size: 1.9rem;
  line-height: 1;
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.34s ease;
}

.product-specs p {
  margin: 0;
  min-width: 0;
}

.product-specs strong,
.product-specs span {
  display: block;
}

.product-specs strong {
  margin-bottom: 4px;
  color: #096fcf;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-specs span {
  color: #263b56;
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.product-points li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: #5f6f84;
  line-height: 1.7;
}

.product-points i {
  flex-shrink: 0;
  margin-top: 4px;
  color: #0873d8;
}

.product-center .btn-primary {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 31px;
  border: 0;
  border-radius: 999px;
  color: var(--contrast-color);
  background: linear-gradient(135deg, #116fe0 0%, #10a9e6 100%);
  box-shadow: 0 14px 28px rgba(11, 118, 218, 0.26);
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: background 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
}

.product-center .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.54s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.product-center .btn-primary:hover {
  color: var(--contrast-color);
  background: linear-gradient(135deg, #0c62c9 0%, #0999d4 100%);
  box-shadow: 0 22px 40px rgba(11, 118, 218, 0.32);
  filter: brightness(1.04);
  transform: none;
}

.product-center .btn-primary:hover::before {
  transform: translateX(120%);
}

.product-center .btn-primary:hover i {
  animation: product-arrow-kick 0.56s cubic-bezier(0.2, 1.35, 0.28, 1) both;
}

.product-center .btn-primary i {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.product-center .btn-primary span {
  position: relative;
  z-index: 1;
}

.product-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.product-feature-row article {
  position: relative;
  min-height: 168px;
  padding: 30px 28px 28px;
  overflow: hidden;
}

.product-feature-row article:hover {
  transform: translateY(-12px) scale(1.018);
  border-color: rgba(30, 150, 224, 0.34);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 62px rgba(39, 99, 151, 0.18);
}

.product-feature-row article:hover i {
  transform: translateY(-5px) rotate(-6deg) scale(1.1);
  box-shadow: 0 18px 34px rgba(25, 130, 214, 0.28);
}

.product-feature-row article:hover::after {
  width: 54px;
  background: linear-gradient(90deg, #1476df, #33bed3);
}

.product-feature-row i {
  display: inline-flex;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--contrast-color);
  background: linear-gradient(135deg, #1476df 0%, #33bed3 100%);
  box-shadow: 0 12px 26px rgba(25, 130, 214, 0.22);
  font-size: 1.55rem;
  transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.36s ease;
}

.product-feature-row h4 {
  margin: 0 0 10px;
  color: #10233f;
  font-size: 1.25rem;
  font-weight: 800;
}

.product-feature-row p {
  margin: 0;
  color: #66768a;
  font-size: 0.94rem;
  line-height: 1.75;
}

.product-feature-row article::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 17px;
  border-radius: 999px;
  background: #1497e0;
  transition: width 0.34s ease, background 0.34s ease;
}

.product-sibo-animation {
  position: relative;
  width: 100%;
  margin-top: 4px;
  aspect-ratio: 1280 / 560;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 54px rgba(39, 99, 151, 0.12);
}

.product-sibo-animation iframe {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

@keyframes product-arrow-kick {
  0% {
    transform: translateX(0);
  }

  54% {
    transform: translateX(12px);
  }

  76% {
    transform: translateX(6px);
  }

  100% {
    transform: translateX(8px);
  }
}

@media (max-width: 1199.98px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-main-card,
  .product-main-card img,
  .product-image-swiper,
  .product-image-swiper .swiper-wrapper,
  .product-image-swiper .swiper-slide {
    min-height: 390px;
  }

  .product-copy {
    padding: 30px;
    min-height: auto;
  }

  .product-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .product-specs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .product-center {
    padding: 58px 0 18px;
  }

  .product-heading {
    margin-bottom: 28px;
  }

  .product-main-card,
  .product-main-card img,
  .product-image-swiper,
  .product-image-swiper .swiper-wrapper,
  .product-image-swiper .swiper-slide {
    min-height: 260px;
  }

  .product-copy {
    padding: 24px 20px;
  }

  .product-feature-row {
    grid-template-columns: 1fr;
  }

  .product-sibo-animation {
    margin-top: 18px;
  }
}

.services {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes float {

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

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

.call-to-action .breath-animation-title {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.call-to-action .breath-animation-title h2 {
  margin: 0;
  color: var(--contrast-color);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.call-to-action .cta-content {
  padding-right: 20px;
}

@media (max-width: 992px) {
  .call-to-action .cta-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.call-to-action .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #22b8a7 50%) 100%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .badge i {
  font-size: 16px;
}

.call-to-action h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.3;
}

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

.call-to-action .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.call-to-action .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.call-to-action .features-list .feature-item i {
  color: #22c55e;
  font-size: 18px;
  flex-shrink: 0;
}

.call-to-action .features-list .feature-item span {
  font-weight: 500;
  color: var(--default-color);
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

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

.call-to-action .cta-buttons .btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #22b8a7 50%) 100%);
  color: var(--contrast-color);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action .cta-buttons .btn.btn-outline {
  background: var(--surface-color);
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

.call-to-action .trust-indicators small {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.call-to-action .trust-indicators .rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.call-to-action .trust-indicators .rating i {
  color: #9ddfd8;
  font-size: 14px;
}

.call-to-action .trust-indicators .rating span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  font-size: 14px;
}

.workflow-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(52, 181, 164, 0.2), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(18, 104, 179, 0.26), transparent 28%),
    linear-gradient(135deg, #081423 0%, #10304a 55%, #0b2235 100%);
}

.workflow-section::before,
.workflow-section::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(12px);
}

.workflow-section::before {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: 40px;
  background: rgba(34, 184, 167, 0.16);
}

.workflow-section::after {
  width: 240px;
  height: 240px;
  right: -80px;
  top: 40px;
  background: rgba(18, 104, 179, 0.18);
}

.workflow-header {
  max-width: 940px;
  margin: 0 auto 36px;
  text-align: center;
}

.workflow-header .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.workflow-header h2 {
  margin: 14px 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.workflow-header p {
  margin: 0;
  color: rgba(233, 242, 249, 0.78);
  font-size: 1.04rem;
  line-height: 1.8;
}

.workflow-board {
  position: relative;
  border: 1px solid rgba(157, 212, 235, 0.16);
  border-radius: 32px;
  padding: 42px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 26px 60px rgba(4, 11, 20, 0.34);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.workflow-track {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 184px;
  height: 24px;
  pointer-events: none;
}

.workflow-line {
  position: absolute;
  inset: 10px 0 auto;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 194, 226, 0.18), rgba(34, 184, 167, 0.8), rgba(94, 194, 226, 0.18));
  box-shadow: 0 0 22px rgba(34, 184, 167, 0.35);
}

.workflow-particle {
  position: absolute;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #8be7db 55%, rgba(34, 184, 167, 0.15) 100%);
  box-shadow: 0 0 16px rgba(127, 246, 229, 0.65);
  opacity: 0;
}

.workflow-particle-1 {
  animation: workflow-travel 8.4s linear infinite;
}

.workflow-particle-2 {
  animation: workflow-travel 8.4s linear infinite 2.1s;
}

.workflow-particle-3 {
  animation: workflow-travel 8.4s linear infinite 4.2s;
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.workflow-step {
  position: relative;
  z-index: 1;
  min-height: 370px;
  padding: 26px 18px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(8, 18, 29, 0.44));
  border: 1px solid rgba(203, 231, 246, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.workflow-step h3 {
  margin: 20px 0 10px;
  color: #ffffff;
  font-size: 1.2rem;
}

.workflow-step p {
  margin: 0;
  color: rgba(233, 242, 249, 0.74);
  font-size: 0.95rem;
  line-height: 1.7;
}

.workflow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #1268b3, #22b8a7);
  box-shadow: 0 10px 24px rgba(18, 104, 179, 0.34);
}

.workflow-visual {
  position: relative;
  height: 130px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.workflow-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(228, 244, 250, 0.86);
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.08);
}

.workflow-user {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6fbff;
  font-size: 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.workflow-breath {
  position: absolute;
  right: -10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 246, 241, 0.95) 0%, rgba(105, 219, 206, 0.42) 60%, transparent 72%);
  opacity: 0;
}

.workflow-breath-1 {
  animation: breath-flow 2.4s ease-out infinite;
}

.workflow-breath-2 {
  animation: breath-flow 2.4s ease-out infinite 1.1s;
}

.workflow-bag {
  position: relative;
  width: 80px;
  height: 106px;
  border-radius: 28px 28px 30px 30px;
  border: 2px solid rgba(204, 241, 250, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(120, 198, 220, 0.08));
  overflow: hidden;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08);
}

.workflow-bag-small {
  width: 64px;
  height: 86px;
}

.workflow-bag-cap {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 24px;
  height: 14px;
  border-radius: 10px;
  background: #cfeaf5;
  transform: translateX(-50%);
}

.workflow-bag-fill {
  position: absolute;
  inset: auto 8px 8px;
  height: 28%;
  border-radius: 22px 22px 18px 18px;
  background: linear-gradient(180deg, rgba(34, 184, 167, 0.96), rgba(18, 104, 179, 0.92));
  box-shadow: 0 0 22px rgba(34, 184, 167, 0.35);
  animation: bag-fill-cycle 4.8s ease-in-out infinite;
}

.workflow-insert-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #8ceadd;
  font-size: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  animation: arrow-pulse 1.8s ease-in-out infinite;
}

.workflow-device-port {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, #091420 0 22%, #0e2f48 23% 46%, #d5edf7 47% 51%, rgba(255, 255, 255, 0.08) 52% 100%);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.workflow-device {
  width: 108px;
  padding: 10px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ebf6fb, #9fcfe2 90%);
  box-shadow: 0 18px 28px rgba(5, 17, 27, 0.32);
}

.workflow-device-screen {
  position: relative;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #082338, #103d5e);
}

.scan-line {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  border-radius: 999px;
  background: rgba(134, 255, 236, 0.92);
  box-shadow: 0 0 14px rgba(134, 255, 236, 0.85);
  animation: scan-sweep 2.6s ease-in-out infinite;
}

.gas-bars {
  position: absolute;
  inset: auto 12px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 34px;
}

.gas-bars span {
  width: 18px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #7ff6e5, #22b8a7);
  animation: gas-wave 1.8s ease-in-out infinite;
}

.gas-bars span:nth-child(1) {
  height: 40%;
}

.gas-bars span:nth-child(2) {
  height: 76%;
  animation-delay: 0.3s;
}

.gas-bars span:nth-child(3) {
  height: 58%;
  animation-delay: 0.6s;
}

.workflow-gas-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.workflow-gas-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  color: #0b2235;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
}

.workflow-monitor {
  width: 116px;
}

.workflow-monitor-screen {
  position: relative;
  width: 116px;
  height: 84px;
  padding: 12px;
  border-radius: 18px 18px 14px 14px;
  background: linear-gradient(180deg, #e7f3fa, #b5d5e6);
  box-shadow: 0 14px 24px rgba(6, 18, 30, 0.28);
}

.workflow-monitor-screen::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 46px;
  height: 14px;
  border-radius: 10px;
  background: #b6d6e8;
  transform: translateX(-50%);
}

.monitor-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 36px;
}

.monitor-chart span {
  flex: 1;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #1268b3, #22b8a7);
  animation: monitor-bars 2s ease-in-out infinite;
}

.monitor-chart span:nth-child(1) {
  height: 34%;
}

.monitor-chart span:nth-child(2) {
  height: 78%;
  animation-delay: 0.2s;
}

.monitor-chart span:nth-child(3) {
  height: 58%;
  animation-delay: 0.4s;
}

.monitor-chart span:nth-child(4) {
  height: 88%;
  animation-delay: 0.6s;
}

.monitor-report-lines {
  display: grid;
  gap: 5px;
  margin-top: 10px;
}

.monitor-report-lines span {
  height: 5px;
  border-radius: 999px;
  background: rgba(16, 48, 74, 0.18);
}

.monitor-report-lines span:nth-child(1) {
  width: 82%;
}

.monitor-report-lines span:nth-child(2) {
  width: 68%;
}

.monitor-report-lines span:nth-child(3) {
  width: 91%;
}

.workflow-printer {
  position: relative;
  width: 110px;
  height: 112px;
}

.workflow-printer-top {
  position: absolute;
  inset: 22px 0 auto;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, #d6ebf5, #8fb9cc);
  box-shadow: 0 16px 26px rgba(6, 18, 30, 0.28);
}

.workflow-printer-top::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  height: 12px;
  border-radius: 999px;
  background: rgba(12, 33, 50, 0.55);
}

.workflow-printer-paper {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 72px;
  padding: 18px 12px 10px;
  border-radius: 10px 10px 14px 14px;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(7, 18, 29, 0.18);
  animation: print-paper 2.8s ease-in-out infinite;
}

.workflow-printer-paper span {
  display: block;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 6px;
  background: rgba(18, 104, 179, 0.2);
}

.workflow-printer-paper span:nth-child(1) {
  width: 84%;
}

.workflow-printer-paper span:nth-child(2) {
  width: 68%;
}

.workflow-printer-paper span:nth-child(3) {
  width: 90%;
}

.workflow-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.workflow-summary-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(203, 231, 246, 0.12);
}

.workflow-summary-item strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
}

.workflow-summary-item span {
  color: rgba(233, 242, 249, 0.76);
  font-size: 0.92rem;
  line-height: 1.7;
}

@keyframes workflow-travel {
  0% {
    left: 0;
    opacity: 0;
    transform: scale(0.7);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 18px);
    opacity: 0;
    transform: scale(1.15);
  }
}

@keyframes breath-flow {
  0% {
    transform: translate(0, 0) scale(0.45);
    opacity: 0;
  }
  28% {
    opacity: 0.95;
  }
  100% {
    transform: translate(56px, -8px) scale(1.18);
    opacity: 0;
  }
}

@keyframes bag-fill-cycle {
  0%, 15% {
    height: 24%;
  }
  40%, 75% {
    height: 74%;
  }
  100% {
    height: 40%;
  }
}

@keyframes arrow-pulse {
  0%, 100% {
    transform: translateX(0);
    box-shadow: 0 0 0 rgba(140, 234, 221, 0);
  }
  50% {
    transform: translateX(4px);
    box-shadow: 0 0 18px rgba(140, 234, 221, 0.3);
  }
}

@keyframes scan-sweep {
  0%, 100% {
    top: 10px;
    opacity: 0.45;
  }
  50% {
    top: 48px;
    opacity: 1;
  }
}

@keyframes gas-wave {
  0%, 100% {
    transform: scaleY(0.78);
    opacity: 0.72;
  }
  50% {
    transform: scaleY(1.1);
    opacity: 1;
  }
}

@keyframes monitor-bars {
  0%, 100% {
    transform: scaleY(0.78);
    transform-origin: bottom;
  }
  50% {
    transform: scaleY(1.08);
    transform-origin: bottom;
  }
}

@keyframes print-paper {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}

@media (max-width: 1199px) {
  .workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-step {
    min-height: 340px;
  }

  .workflow-track {
    display: none;
  }
}

@media (max-width: 991px) {
  .workflow-board {
    padding: 32px 20px 20px;
  }

  .workflow-grid,
  .workflow-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .workflow-section {
    padding: 78px 0;
  }

  .workflow-grid,
  .workflow-summary {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-height: auto;
  }

  .workflow-header p {
    font-size: 0.98rem;
  }
}

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

.features-shell {
  width: min(1820px, calc(100% - 120px));
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.features::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
  pointer-events: none;
}

.features [data-aos^="module-"],
.application-section [data-aos^="module-"],
.service-support [data-aos^="module-"] {
  opacity: 0;
  filter: blur(10px);
  transition-property: opacity, transform, filter;
  transition-duration: 0.82s;
  transition-timing-function: cubic-bezier(0.18, 0.9, 0.24, 1);
}

.features [data-aos="module-left"],
.application-section [data-aos="module-left"],
.service-support [data-aos="module-left"] {
  transform: translate3d(-58px, 0, 0) scale(0.97);
}

.features [data-aos="module-right"],
.application-section [data-aos="module-right"],
.service-support [data-aos="module-right"] {
  transform: translate3d(58px, 0, 0) scale(0.97);
}

.features [data-aos="module-up"],
.application-section [data-aos="module-up"],
.service-support [data-aos="module-up"] {
  transform: translate3d(0, 42px, 0) scale(0.97);
}

.features [data-aos="module-pop"],
.features [data-aos="module-card"],
.application-section [data-aos="module-card"],
.service-support [data-aos="module-card"] {
  transform: translate3d(0, 46px, 0) scale(0.92);
}

.features [data-aos^="module-"].aos-animate,
.application-section [data-aos^="module-"].aos-animate,
.service-support [data-aos^="module-"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.features .features-content {
  padding-right: 2rem;
}

@media (max-width: 1600px) {
  .features-shell {
    width: min(1500px, calc(100% - 88px));
  }
}

@media (max-width: 992px) {
  .features-shell {
    width: min(960px, calc(100% - 48px));
  }

  .features .features-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}

.features .features-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

@media (max-width: 575.98px) {
  .features-shell {
    width: min(100% - 28px, 520px);
  }
}

.features .features-content>p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.features .main-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.36s ease, box-shadow 0.36s ease, background 0.36s ease;
}

.features .main-feature:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(38, 148, 219, 0.34);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.92));
  box-shadow: 0 24px 54px rgba(18, 104, 179, 0.14);
}

.features .main-feature:hover .feature-icon {
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 16px 34px rgba(18, 104, 179, 0.28);
}

@media (max-width: 768px) {
  .features .main-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.features .main-feature .feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #22b8a7 30%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 2rem;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.36s ease;
}

.features .main-feature .feature-text h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.features .main-feature .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.6;
}

.features .btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #22b8a7 30%));
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  border: none;
}

.features .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
}

.features .btn-get-started:hover i {
  animation: feature-arrow-kick 0.54s cubic-bezier(0.2, 1.35, 0.28, 1) both;
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.features .feature-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.36s ease, box-shadow 0.36s ease, background 0.36s ease;
  position: relative;
  overflow: hidden;
}

.features .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.features .feature-card:hover {
  transform: translateY(-12px) scale(1.025);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 26px 54px rgba(18, 104, 179, 0.15);
  border-color: rgba(38, 148, 219, 0.32);
}

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

.features .feature-card:hover .icon-wrapper {
  transform: translateY(-3px) scale(1.12) rotate(-4deg);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #22b8a7 30%));
  color: var(--contrast-color);
  box-shadow: 0 16px 30px rgba(18, 104, 179, 0.2);
}

.features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.features .feature-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

@keyframes feature-arrow-kick {
  0% {
    transform: translateX(0);
  }

  54% {
    transform: translateX(10px);
  }

  76% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(7px);
  }
}

.tech-innovation-section {
  min-height: 650px;
  padding: 70px 0 64px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(244, 250, 255, 0.36) 47%, rgba(255, 255, 255, 0.68) 100%),
    url("../assets/jishu-bg.png") center / cover no-repeat;
}

.tech-innovation-section::before {
  display: none;
}

.tech-innovation-shell {
  width: min(1560px, calc(100% - 88px));
}

.tech-innovation-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(620px, 1fr);
  align-items: center;
  gap: clamp(28px, 4.4vw, 76px);
  min-height: 520px;
}

.tech-innovation-visual {
  position: relative;
  min-height: 390px;
}

.tech-innovation-title-mark {
  position: absolute;
  left: clamp(130px, 18vw, 270px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(170px, 17vw, 250px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #073b7a;
  font-family: var(--heading-font);
  font-size: clamp(2.05rem, 2.4vw, 3rem);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(66, 157, 232, 0.22);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.54), 0 18px 46px rgba(36, 116, 188, 0.12);
  backdrop-filter: blur(3px);
}

.tech-innovation-list {
  position: relative;
  display: grid;
  gap: 18px;
}

.tech-innovation-list::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(53, 161, 233, 0.44), transparent);
}

.tech-innovation-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.tech-innovation-index {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  font-family: var(--heading-font);
  background: radial-gradient(circle at 35% 28%, #146ec6 0%, #07356f 68%);
  border: 5px solid rgba(200, 240, 255, 0.9);
  box-shadow: 0 8px 26px rgba(20, 126, 212, 0.28), 0 0 0 7px rgba(34, 184, 224, 0.12);
}

.tech-innovation-card {
  min-height: 124px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  align-items: center;
  gap: 18px;
  padding: 22px 30px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(160, 201, 232, 0.48);
  box-shadow: 0 12px 34px rgba(55, 99, 143, 0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.tech-innovation-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(43, 151, 221, 0.6);
  box-shadow: 0 18px 42px rgba(23, 107, 186, 0.16);
}

.tech-card-copy h3 {
  margin: 0 0 6px;
  color: #06428b;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.25;
}

.tech-card-copy p {
  margin: 0;
  color: #24344c;
  font-size: 0.98rem;
  line-height: 1.62;
  font-weight: 500;
}

.tech-card-copy sub {
  bottom: -0.15em;
  font-size: 72%;
}

.tech-card-icon {
  width: 82px;
  height: 82px;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: #1268b3;
  font-size: 2.25rem;
  background: linear-gradient(135deg, rgba(230, 247, 255, 0.98), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(77, 169, 235, 0.2);
}

@media (max-width: 1199px) {
  .tech-innovation-section {
    min-height: 620px;
    padding: 58px 0;
  }

  .tech-innovation-shell {
    width: min(100% - 48px, 1060px);
  }

  .tech-innovation-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .tech-innovation-visual {
    min-height: 190px;
  }

  .tech-innovation-title-mark {
    left: 50%;
    width: 172px;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .tech-innovation-section {
    min-height: auto;
    padding: 38px 0;
    background-position: 40% center;
  }

  .tech-innovation-shell {
    width: min(100% - 28px, 560px);
  }

  .tech-innovation-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .tech-innovation-list::before {
    left: 29px;
  }

  .tech-innovation-index {
    width: 54px;
    height: 54px;
    border-width: 4px;
    font-size: 1.05rem;
  }

  .tech-innovation-card {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 136px;
    padding: 18px 20px;
  }

  .tech-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    justify-self: start;
    font-size: 1.4rem;
    order: -1;
  }

  .tech-card-copy h3 {
    font-size: 1.08rem;
  }

  .tech-card-copy p {
    font-size: 0.92rem;
  }
}

/*--------------------------------------------------------------
# Brand Message Section
--------------------------------------------------------------*/
.brand-message {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(34, 184, 167, 0.12), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(18, 104, 179, 0.12), transparent 24%),
    linear-gradient(180deg, #f2f7fb 0%, #f8fbfd 100%);
}

.brand-message-shell {
  width: min(1820px, calc(100% - 120px));
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.brand-message-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 0.92fr) minmax(640px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 56px 0 40px;
}

.brand-compact-shell {
  width: min(1500px, calc(100% - 88px));
}

.brand-compact-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 0.9fr) minmax(320px, 0.72fr);
  gap: 26px;
  align-items: center;
  min-height: 210px;
  padding: 18px 0 8px;
}

.brand-compact-copy h3 {
  margin: 10px 0 14px;
  color: #0a2451;
  font-size: clamp(2rem, 2.55vw, 2.8rem);
  font-weight: 850;
  line-height: 1.14;
}

.brand-compact-copy p {
  max-width: 450px;
  margin: 0;
  color: #627386;
  font-size: 1rem;
  line-height: 1.78;
}

.brand-compact-visual {
  position: relative;
  min-height: 188px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 34%, rgba(34, 184, 167, 0.18), transparent 20%),
    radial-gradient(circle at 78% 22%, rgba(85, 163, 255, 0.14), transparent 22%),
    linear-gradient(135deg, #0b1d32 0%, #11395c 58%, #0a1a2d 100%);
  border: 1px solid rgba(173, 223, 246, 0.16);
  box-shadow: 0 20px 44px rgba(8, 23, 40, 0.12);
}

.brand-compact-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.12;
}

.compact-visual-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: radial-gradient(circle at 50% 20%, rgba(74, 206, 244, 0.22), transparent 56%);
}

.compact-flow {
  position: absolute;
  left: -6%;
  width: 62%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(126, 245, 232, 0), rgba(126, 245, 232, 0.96), rgba(126, 245, 232, 0));
  box-shadow: 0 0 12px rgba(126, 245, 232, 0.3);
}

.compact-flow-1 {
  top: 42%;
  transform: rotate(2deg);
  animation: compact-flow-run 3.6s ease-in-out infinite;
}

.compact-flow-2 {
  top: 58%;
  transform: rotate(-5deg);
  animation: compact-flow-run 3.6s ease-in-out infinite 1.2s;
}

.compact-metric {
  position: absolute;
  z-index: 2;
  min-width: 64px;
  padding: 8px 12px;
  border-radius: 16px;
  color: #f3fcff;
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(191, 237, 248, 0.22);
  backdrop-filter: blur(8px);
}

.compact-metric-h2 {
  top: 18px;
  right: 22px;
  animation: compact-float 4.4s ease-in-out infinite;
}

.compact-metric-ch4 {
  left: 18px;
  top: 38px;
  animation: compact-float 4.4s ease-in-out infinite 1.2s;
}

.compact-report {
  position: absolute;
  right: 28px;
  bottom: 22px;
  width: 92px;
  display: grid;
  gap: 6px;
}

.compact-report span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(132, 239, 229, 0.95), rgba(91, 156, 255, 0.7));
  animation: compact-report-pulse 2.4s ease-in-out infinite;
}

.compact-report span:nth-child(1) {
  width: 100%;
}

.compact-report span:nth-child(2) {
  width: 76%;
  animation-delay: 0.25s;
}

.compact-report span:nth-child(3) {
  width: 88%;
  animation-delay: 0.5s;
}

.compact-product-figure {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: min(58%, 280px);
  margin: 0;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 20px rgba(4, 11, 20, 0.3));
  animation: compact-product-hover 4.2s ease-in-out infinite;
}

.compact-product-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-compact-points {
  display: grid;
  gap: 12px;
}

.brand-compact-points article {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 104, 179, 0.08);
  box-shadow: 0 14px 34px rgba(10, 33, 63, 0.05);
}

.brand-compact-points strong {
  display: block;
  margin-bottom: 6px;
  color: #0f2f60;
  font-size: 1rem;
}

.brand-compact-points span {
  color: #667488;
  font-size: 0.92rem;
  line-height: 1.65;
}

.brand-text-panel {
  grid-template-columns: 1fr;
  justify-items: start;
  min-height: 118px;
  padding: 4px 0 0;
}

.brand-text-slider {
  position: relative;
  width: min(100%, 920px);
  min-height: 74px;
}

.brand-text-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translate3d(-180px, 0, 0) scale(0.94);
  filter: blur(8px);
  animation: brand-text-cycle 10.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.brand-text-slide:nth-child(2) {
  animation-delay: 3.4s;
}

.brand-text-slide:nth-child(3) {
  animation-delay: 6.8s;
}

.brand-text-slide h3 {
  margin: 0;
  color: #0a2451;
  font-size: clamp(1.9rem, 2.45vw, 2.7rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-text-slide p {
  display: none;
}

.brand-message-copy {
  position: relative;
  z-index: 1;
}

.brand-message-copy .section-kicker {
  color: var(--accent-color);
}

.brand-scanline {
  width: 116px;
  height: 5px;
  margin: 18px 0 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 104, 179, 0), rgba(18, 104, 179, 1), rgba(34, 184, 167, 1), rgba(34, 184, 167, 0));
  animation: slogan-scanline 3.2s ease-in-out infinite;
}

.brand-pretitle {
  margin: 0 0 8px;
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-message-copy h2 {
  margin: 0;
  color: #0a2451;
  font-size: clamp(2.7rem, 3.8vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  max-width: 620px;
  margin: 18px 0 0;
  color: #617287;
  font-size: 1.14rem;
  line-height: 1.85;
}

.brand-headline-wrap {
  animation: slogan-rise 1.2s ease both;
}

.brand-story-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  color: #163d6d;
  font-size: 0.98rem;
  font-weight: 700;
}

.brand-story-line .story-node {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(18, 104, 179, 0.08);
  border: 1px solid rgba(18, 104, 179, 0.12);
}

.brand-story-line .story-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent-color));
  box-shadow: 0 0 18px rgba(18, 104, 179, 0.4);
}

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

.brand-pillars article {
  min-height: 158px;
  padding: 20px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 104, 179, 0.08);
  box-shadow: 0 18px 40px rgba(10, 33, 63, 0.06);
  backdrop-filter: blur(10px);
}

.brand-pillars strong {
  display: block;
  margin-bottom: 12px;
  color: #0f2f60;
  font-size: 1.04rem;
}

.brand-pillars span {
  color: #667488;
  font-size: 0.94rem;
  line-height: 1.75;
}

.brand-message-stage {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 32%, rgba(34, 184, 167, 0.22), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(85, 163, 255, 0.18), transparent 22%),
    linear-gradient(135deg, #08182c 0%, #0f3357 52%, #071729 100%);
  border: 1px solid rgba(173, 223, 246, 0.18);
  box-shadow: 0 28px 70px rgba(8, 23, 40, 0.22);
}

.brand-message-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.16;
  pointer-events: none;
}

.brand-stage-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 58%, rgba(69, 188, 255, 0.2), transparent 22%),
    radial-gradient(circle at 50% 86%, rgba(34, 184, 167, 0.22), transparent 20%);
}

.brand-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(140, 226, 238, 0.18);
}

.brand-orbit-one {
  width: 360px;
  height: 360px;
  right: 82px;
  bottom: -130px;
}

.brand-orbit-two {
  width: 250px;
  height: 250px;
  right: 138px;
  bottom: -76px;
}

.brand-particles span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(110, 229, 216, 0.65) 58%, rgba(110, 229, 216, 0) 74%);
  box-shadow: 0 0 16px rgba(114, 231, 221, 0.5);
  animation: particle-drift 5.6s ease-in-out infinite;
}

.brand-particles span:nth-child(1) {
  left: 16%;
  top: 20%;
}

.brand-particles span:nth-child(2) {
  left: 28%;
  top: 48%;
  animation-delay: 1.2s;
}

.brand-particles span:nth-child(3) {
  left: 58%;
  top: 18%;
  animation-delay: 2.3s;
}

.brand-gas-stream {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gas-stream-line {
  position: absolute;
  left: -4%;
  width: 58%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(126, 245, 232, 0), rgba(126, 245, 232, 0.95), rgba(126, 245, 232, 0));
  filter: drop-shadow(0 0 10px rgba(126, 245, 232, 0.45));
}

.gas-stream-line-1 {
  top: 39%;
  transform: rotate(7deg);
  animation: gas-line-flow 4.2s ease-in-out infinite;
}

.gas-stream-line-2 {
  top: 49%;
  transform: rotate(1deg);
  animation: gas-line-flow 4.2s ease-in-out infinite 0.8s;
}

.gas-stream-line-3 {
  top: 59%;
  transform: rotate(-6deg);
  animation: gas-line-flow 4.2s ease-in-out infinite 1.6s;
}

.brand-molecule {
  position: absolute;
  min-width: 118px;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(184, 237, 248, 0.22);
  box-shadow: 0 18px 30px rgba(4, 14, 28, 0.18);
  backdrop-filter: blur(12px);
  color: #eaf7fb;
}

.brand-molecule small {
  display: block;
  color: rgba(234, 247, 251, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-molecule strong {
  display: block;
  margin-top: 6px;
  font-size: 1.7rem;
  font-weight: 800;
}

.molecule-h2 {
  top: 86px;
  right: 92px;
  animation: molecule-float 4.8s ease-in-out infinite;
}

.molecule-ch4 {
  left: 86px;
  top: 120px;
  animation: molecule-float 4.8s ease-in-out infinite 1.6s;
}

.brand-report-card {
  position: absolute;
  right: 54px;
  top: 212px;
  width: 158px;
  padding: 16px 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(187, 235, 247, 0.2);
  color: #f4fcff;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 32px rgba(7, 20, 38, 0.18);
}

.brand-report-card span {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-lines {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.report-lines i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(132, 239, 229, 0.95), rgba(91, 156, 255, 0.72));
  animation: report-signal 2.8s ease-in-out infinite;
}

.report-lines i:nth-child(1) {
  width: 92%;
}

.report-lines i:nth-child(2) {
  width: 76%;
  animation-delay: 0.35s;
}

.report-lines i:nth-child(3) {
  width: 84%;
  animation-delay: 0.7s;
}

.brand-product-figure {
  position: absolute;
  right: 110px;
  bottom: 22px;
  width: min(56%, 430px);
  margin: 0;
  filter: drop-shadow(0 30px 34px rgba(4, 11, 20, 0.35));
  animation: product-hover 4.5s ease-in-out infinite;
}

.brand-product-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-stage-caption {
  position: absolute;
  left: 42px;
  bottom: 36px;
  max-width: 340px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(7, 22, 38, 0.4);
  border: 1px solid rgba(188, 235, 247, 0.16);
  backdrop-filter: blur(12px);
}

.brand-stage-caption strong {
  display: block;
  color: #ffffff;
  font-size: 1.22rem;
}

.brand-stage-caption span {
  display: block;
  margin-top: 8px;
  color: rgba(234, 247, 251, 0.7);
  font-size: 0.88rem;
  line-height: 1.65;
}

@keyframes slogan-scanline {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.75;
  }
  50% {
    transform: translateX(18px);
    opacity: 1;
  }
}

@keyframes slogan-rise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes particle-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(24px, -18px, 0) scale(1.15);
    opacity: 1;
  }
}

@keyframes gas-line-flow {
  0% {
    transform: translateX(-10px) scaleX(0.92);
    opacity: 0.2;
  }
  50% {
    transform: translateX(28px) scaleX(1.04);
    opacity: 1;
  }
  100% {
    transform: translateX(66px) scaleX(0.96);
    opacity: 0.25;
  }
}

@keyframes molecule-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes report-signal {
  0%, 100% {
    opacity: 0.65;
    transform: scaleX(0.92);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1.04);
    transform-origin: left;
  }
}

@keyframes product-hover {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes compact-flow-run {
  0% {
    transform: translateX(-10px) scaleX(0.92);
    opacity: 0.25;
  }
  50% {
    transform: translateX(20px) scaleX(1.04);
    opacity: 1;
  }
  100% {
    transform: translateX(48px) scaleX(0.98);
    opacity: 0.28;
  }
}

@keyframes compact-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes compact-report-pulse {
  0%, 100% {
    opacity: 0.68;
    transform: scaleX(0.94);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1.03);
    transform-origin: left;
  }
}

@keyframes compact-product-hover {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes brand-text-cycle {
  0% {
    opacity: 0;
    transform: translate3d(-220px, 0, 0) scale(0.93);
    filter: blur(10px);
  }
  12% {
    opacity: 1;
    transform: translate3d(30px, 0, 0) scale(1.02);
    filter: blur(0);
  }
  18% {
    opacity: 1;
    transform: translate3d(-8px, 0, 0) scale(0.998);
    filter: blur(0);
  }
  24% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
  36% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
  46% {
    opacity: 0;
    transform: translate3d(82px, 0, 0) scale(1.01);
    filter: blur(6px);
  }
  100% {
    opacity: 0;
    transform: translate3d(82px, 0, 0) scale(1.01);
    filter: blur(6px);
  }
}

@media (max-width: 1600px) {
  .brand-message-shell {
    width: min(1500px, calc(100% - 88px));
  }

  .brand-message-panel {
    grid-template-columns: minmax(460px, 0.94fr) minmax(560px, 1.06fr);
  }
}

@media (max-width: 1199.98px) {
  .brand-message-shell {
    width: min(960px, calc(100% - 48px));
  }

  .brand-message-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-message-stage {
    min-height: 480px;
  }

  .brand-compact-shell {
    width: min(960px, calc(100% - 48px));
  }

  .brand-compact-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .brand-text-panel {
    min-height: 108px;
  }

  .brand-compact-copy p {
    max-width: none;
  }

  .brand-compact-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .brand-pillars {
    grid-template-columns: 1fr;
  }

  .brand-message-stage {
    min-height: 430px;
    border-radius: 26px;
  }

  .brand-product-figure {
    right: 28px;
    width: min(62%, 280px);
  }

  .brand-report-card,
  .molecule-h2 {
    right: 24px;
  }

  .molecule-ch4 {
    left: 24px;
  }

  .brand-stage-caption {
    left: 20px;
    right: 20px;
    max-width: none;
    bottom: 18px;
  }

  .brand-compact-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .brand-message-shell {
    width: min(100% - 28px, 520px);
  }

  .brand-message-panel {
    padding: 34px 0 24px;
  }

  .brand-message-copy h2 {
    font-size: 2.25rem;
  }

  .brand-subtitle {
    font-size: 1rem;
  }

  .brand-story-line {
    gap: 10px;
  }

  .brand-story-line .story-node {
    padding: 9px 14px;
    font-size: 0.88rem;
  }

  .brand-message-stage {
    min-height: 390px;
  }

  .brand-product-figure {
    width: min(70%, 240px);
    right: 14px;
    bottom: 42px;
  }

  .brand-report-card {
    top: 132px;
    width: 132px;
    padding: 14px;
  }

  .brand-molecule {
    min-width: 94px;
    padding: 10px 12px;
  }

  .brand-molecule strong {
    font-size: 1.35rem;
  }

  .brand-compact-shell {
    width: min(100% - 28px, 520px);
  }

  .brand-text-panel {
    min-height: 92px;
    padding: 2px 0 0;
  }

  .brand-text-slider {
    min-height: 68px;
  }

  .brand-text-slide h3 {
    font-size: 1.42rem;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.application-section {
  position: relative;
  min-height: 980px;
  padding: 58px 0 74px;
  overflow: hidden;
  background-color: #f6fbff;
}

.application-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(246, 251, 255, 0.1)),
    url("../assets/application-bg.png") center bottom / cover no-repeat;
  pointer-events: none;
}

.application-container {
  position: relative;
  z-index: 1;
  width: min(1820px, calc(100% - 120px));
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 1600px) {
  .application-container {
    width: min(1500px, calc(100% - 88px));
  }
}

@media (max-width: 1199.98px) {
  .application-container {
    width: min(960px, calc(100% - 48px));
  }
}

@media (max-width: 575.98px) {
  .application-container {
    width: min(100% - 28px, 520px);
  }
}

.application-heading {
  max-width: 1160px;
  margin: 0 auto 34px;
  text-align: center;
}

.application-heading .section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 5px;
}

.application-heading .section-kicker::before,
.application-heading .section-kicker::after {
  content: "";
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color));
}

.application-heading .section-kicker::after {
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.application-heading h2 {
  margin: 0 0 14px;
  color: #072a63;
  font-size: clamp(2.4rem, 3.05vw, 3.75rem);
  font-weight: 800;
  line-height: 1.16;
  white-space: nowrap;
}

.application-heading p {
  max-width: 980px;
  margin: 0 auto;
  color: #667488;
  font-size: 1.12rem;
  line-height: 1.8;
}

.application-stage {
  position: relative;
  height: 890px;
}

.application-stage .application-orbit,
.application-stage .application-product,
.application-stage .application-note,
.application-stage .application-scene,
.application-stage .application-lines,
.application-stage .application-capabilities {
  opacity: 0;
  filter: blur(10px);
  transition-property: opacity, transform, filter;
  transition-duration: 0.78s;
  transition-timing-function: cubic-bezier(0.18, 0.9, 0.24, 1.12);
}

.application-stage .application-product {
  transform: translateX(-50%) translateY(54px) scale(0.9);
}

.application-stage .application-note,
.application-stage .application-scene {
  transform: translateY(54px) scale(0.9);
}

.application-stage .application-capabilities {
  transform: translateX(-50%) translateY(46px) scale(0.95);
}

.application-stage.aos-animate .application-orbit,
.application-stage.aos-animate .application-lines {
  opacity: 1;
  filter: blur(0);
  transition-delay: 0.16s;
}

.application-stage.aos-animate .application-product {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.22s;
}

.application-stage.aos-animate .application-note,
.application-stage.aos-animate .application-scene {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.application-stage.aos-animate .note-breath {
  transition-delay: 0.48s;
}

.application-stage.aos-animate .note-gas {
  transition-delay: 0.58s;
}

.application-stage.aos-animate .note-data {
  transition-delay: 0.68s;
}

.application-stage.aos-animate .scene-one {
  transition-delay: 0.38s;
}

.application-stage.aos-animate .scene-two {
  transition-delay: 0.48s;
}

.application-stage.aos-animate .scene-three {
  transition-delay: 0.58s;
}

.application-stage.aos-animate .scene-four {
  transition-delay: 0.68s;
}

.application-stage.aos-animate .application-capabilities {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0.84s;
}

.application-orbit,
.application-product,
.application-scene,
.application-note,
.application-lines,
.application-capabilities {
  position: absolute;
}

.application-orbit {
  left: 50%;
  top: 340px;
  width: 820px;
  height: 430px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(32, 134, 197, 0.22);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.orbit-ring-2 {
  inset: 46px 80px;
  border-style: solid;
  border-color: rgba(32, 134, 197, 0.16);
}

.orbit-ring-3 {
  inset: 84px 140px;
  border-color: rgba(32, 134, 197, 0.13);
  transform: rotate(11deg);
}

.orbit-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #6bb9ee;
  box-shadow: 0 0 0 7px rgba(107, 185, 238, 0.13);
}

.dot-one {
  left: 138px;
  top: 78px;
}

.dot-two {
  right: 104px;
  top: 220px;
}

.dot-three {
  left: 315px;
  bottom: 24px;
}

.application-product {
  left: 50%;
  top: 168px;
  z-index: 3;
  width: clamp(520px, 36vw, 700px);
  transform: translateX(-50%);
  text-align: center;
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.42s ease;
}

.application-product::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 76%;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(18, 104, 179, 0.14);
  filter: blur(12px);
  z-index: -1;
}

.application-product img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 28px rgba(14, 64, 116, 0.18));
}

.application-product:hover {
  transform: translateX(-50%) translateY(-12px) scale(1.025);
  filter: drop-shadow(0 28px 38px rgba(18, 104, 179, 0.2));
}

.application-stage.aos-animate .application-product:hover {
  transform: translateX(-50%) translateY(-12px) scale(1.025);
  filter: blur(0) drop-shadow(0 28px 38px rgba(18, 104, 179, 0.2));
  transition-delay: 0s;
}

.application-note {
  z-index: 4;
  min-width: 122px;
  padding: 10px 13px;
  color: #1268b3;
  font-size: 0.96rem;
  line-height: 1.3;
  text-align: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(18, 104, 179, 0.12);
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.application-note small {
  display: block;
  margin-top: 1px;
  color: #6c839c;
  font-size: 0.68rem;
}

.application-note i {
  display: block;
  margin-bottom: 3px;
  font-size: 1.45rem;
}

.application-stage.aos-animate .application-note:hover {
  transform: translateY(-8px) scale(1.06);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(18, 104, 179, 0.24);
  box-shadow: 0 18px 34px rgba(18, 104, 179, 0.13);
  transition-delay: 0s;
}

.note-breath {
  left: calc(50% - 525px);
  top: 396px;
}

.note-gas {
  left: calc(50% + 315px);
  top: 372px;
}

.note-data {
  left: calc(50% - 175px);
  top: 608px;
}

.application-scene {
  z-index: 5;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  width: 405px;
  min-height: 230px;
  padding: 30px 30px 26px;
  border: 1px solid rgba(35, 132, 192, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 0 18px 32px rgba(37, 103, 153, 0.1);
  backdrop-filter: blur(5px);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.38s ease, background 0.38s ease, box-shadow 0.38s ease;
}

.application-scene:hover {
  transform: translateY(-12px) scale(1.025);
  border-color: rgba(38, 148, 219, 0.42);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 58px rgba(37, 103, 153, 0.18);
}

.application-stage.aos-animate .application-scene:hover {
  transform: translateY(-12px) scale(1.025);
  filter: blur(0);
  transition-delay: 0s;
}

.application-scene:hover .scene-icon {
  transform: translateY(-5px) rotate(-5deg) scale(1.08);
  color: #0b7fce;
  text-shadow: 0 14px 28px rgba(18, 104, 179, 0.18);
}

.application-scene:hover .scene-number {
  transform: translateX(8px);
  color: rgba(18, 104, 179, 0.22);
}

.application-scene:hover .scene-copy li i {
  transform: scale(1.16);
}

.scene-one {
  left: 64px;
  top: 108px;
}

.scene-two {
  right: 64px;
  top: 108px;
}

.scene-three {
  left: 64px;
  top: 466px;
}

.scene-four {
  right: 94px;
  top: 474px;
}

.scene-number {
  position: absolute;
  left: 28px;
  top: 14px;
  color: rgba(18, 104, 179, 0.15);
  font-size: 3.35rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.36s ease, color 0.36s ease;
}

.scene-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  width: 102px;
  height: 124px;
  color: var(--accent-color);
  font-size: 4.65rem;
  transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.36s ease, text-shadow 0.36s ease;
}

.scene-copy {
  align-self: center;
  min-width: 0;
}

.scene-copy h4 {
  margin: 0 0 22px;
  color: #07336c;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.25;
}

.scene-copy ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scene-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #475b72;
  font-size: 1.02rem;
  line-height: 1.25;
}

.scene-copy li i {
  flex: 0 0 auto;
  color: var(--accent-color);
  font-size: 1.08rem;
  transition: transform 0.3s ease;
}

.application-lines {
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.line {
  position: absolute;
  height: 1px;
  background: #2182c5;
  transform-origin: left center;
}

.line::before,
.line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 3px solid #5db7ed;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(93, 183, 237, 0.17);
  transform: translateY(-50%);
}

.line::before {
  left: -8px;
}

.line::after {
  right: -8px;
}

.line-one {
  left: 494px;
  top: 306px;
  width: 207px;
  transform: rotate(15deg);
}

.line-two {
  right: 494px;
  top: 306px;
  width: 202px;
  transform: rotate(-12deg);
}

.line-three {
  left: 494px;
  top: 572px;
  width: 210px;
  transform: rotate(-16deg);
}

.line-four {
  right: 554px;
  top: 586px;
  width: 222px;
  transform: rotate(13deg);
}

.application-capabilities {
  left: 50%;
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1320px, 78%);
  padding: 24px 34px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 36px rgba(37, 103, 153, 0.1);
  transition: background 0.38s ease, box-shadow 0.38s ease;
}

.application-capabilities:hover {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 26px 52px rgba(37, 103, 153, 0.15);
  transition-delay: 0s;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 0 30px;
  border-right: 1px solid rgba(18, 104, 179, 0.15);
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.capability-item:hover {
  transform: translateY(-6px);
}

.capability-item:hover i {
  transform: rotate(-6deg) scale(1.12);
  color: #0b7fce;
}

.capability-item:last-child {
  border-right: 0;
}

.capability-item i {
  flex: 0 0 auto;
  color: var(--accent-color);
  font-size: 3rem;
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.34s ease;
}

.capability-item strong {
  display: block;
  color: #09336e;
  font-size: 1.12rem;
  line-height: 1.3;
}

.capability-item span {
  display: block;
  margin-top: 5px;
  color: #69798a;
  font-size: 0.9rem;
  line-height: 1.35;
}

@media (max-width: 1499.98px) {
  .application-product {
    left: 50%;
    width: clamp(330px, 31vw, 430px);
  }

  .scene-one,
  .scene-three {
    left: 28px;
  }

  .scene-two,
  .scene-four {
    right: 28px;
  }

  .line-one,
  .line-three {
    left: 378px;
    width: 148px;
  }

  .line-two,
  .line-four {
    right: 378px;
    width: 148px;
  }
}

@media (max-width: 1199.98px) {
  .application-section {
    min-height: auto;
  }

  .application-heading h2 {
    white-space: normal;
  }

  .application-stage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 18px 0 0;
  }

  .application-orbit,
  .application-lines,
  .application-note {
    display: none;
  }

  .application-product,
  .application-scene,
  .application-capabilities {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .application-product {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(470px, 82vw);
  }

  .application-scene {
    width: auto;
    min-height: 192px;
  }

  .application-capabilities {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-item {
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 104, 179, 0.12);
  }

  .capability-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .application-section {
    padding: 48px 0 56px;
  }

  .application-heading .section-kicker {
    gap: 10px;
    font-size: 0.82rem;
    letter-spacing: 3px;
  }

  .application-heading .section-kicker::before,
  .application-heading .section-kicker::after {
    width: 34px;
  }

  .application-heading h2 {
    font-size: 2rem;
  }

  .application-heading p {
    font-size: 0.98rem;
  }

  .application-stage {
    grid-template-columns: 1fr;
  }

  .application-scene {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 24px 20px 20px;
  }

  .scene-icon {
    width: 70px;
    height: 96px;
    font-size: 3.3rem;
  }

  .scene-copy h4 {
    margin-bottom: 16px;
    font-size: 1.16rem;
  }

  .application-capabilities {
    grid-template-columns: 1fr;
    padding: 12px 18px;
  }

  .capability-item,
  .capability-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(18, 104, 179, 0.12);
  }

  .capability-item:last-child {
    border-bottom: 0;
  }
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.portfolio .portfolio-filters li {
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.portfolio .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-card:hover .portfolio-img .portfolio-overlay {
  opacity: 1;
}

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

.portfolio .portfolio-card .portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-card .portfolio-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 20%);
  transform: translateY(-5px);
}

.portfolio .portfolio-card .portfolio-info {
  padding: 20px;
}

.portfolio .portfolio-card .portfolio-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.portfolio .portfolio-card .portfolio-info p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags span {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.portfolio .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.service-support {
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 12% 90%, rgba(104, 177, 238, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(103, 170, 241, 0.12), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #eef6fd 100%);
}

.service-support .container {
  position: relative;
  z-index: 1;
  width: min(1820px, calc(100% - 120px));
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.service-support-shell {
  position: relative;
}

.service-support-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 26px;
}

.service-support-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 0;
  padding-top: 4px;
}

.service-support-heading::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 8px;
  width: 8px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1268b3, #2d8fff);
}

.service-support-heading h2 {
  margin: 10px 0 20px;
  color: #10233f;
  font-size: clamp(2.3rem, 4vw, 3.45rem);
  font-weight: 800;
  line-height: 1.16;
}

.service-support-heading p {
  max-width: 720px;
  margin: 0;
  color: #5f6f86;
  font-size: 1.02rem;
  line-height: 1.85;
}

.service-support-visual {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  pointer-events: auto;
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.42s ease;
}

.service-support-visual:hover {
  transform: translateY(-8px) scale(1.015);
  filter: drop-shadow(0 24px 42px rgba(18, 104, 179, 0.12));
}

.service-grid-dots {
  position: absolute;
  top: 8px;
  right: 24px;
  width: 162px;
  height: 46px;
  background-image: radial-gradient(circle, rgba(62, 137, 227, 0.36) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.9;
}

.service-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 70%);
}

.service-glow-one {
  inset: 4px auto auto 18%;
  width: 360px;
  height: 220px;
}

.service-glow-two {
  right: 6%;
  top: 24px;
  width: 280px;
  height: 180px;
}

.service-orbit {
  position: absolute;
  border: 1px solid rgba(65, 144, 233, 0.14);
  border-radius: 50%;
}

.orbit-one {
  left: 22%;
  top: 18px;
  width: 330px;
  height: 184px;
}

.orbit-two {
  left: 38%;
  top: 54px;
  width: 410px;
  height: 152px;
}

.orbit-three {
  right: 7%;
  top: 40px;
  width: 250px;
  height: 146px;
}

.service-line {
  position: absolute;
  height: 1px;
  background: rgba(78, 149, 231, 0.24);
}

.line-a {
  left: 10%;
  top: 92px;
  width: 34%;
}

.line-b {
  right: 2%;
  top: 56px;
  width: 26%;
}

.line-c {
  right: 8%;
  top: 146px;
  width: 38%;
}

.service-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4d95ea;
  box-shadow: 0 0 0 8px rgba(77, 149, 234, 0.12);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.service-support-visual:hover .service-node {
  transform: scale(1.28);
  box-shadow: 0 0 0 12px rgba(77, 149, 234, 0.14), 0 0 24px rgba(77, 149, 234, 0.36);
}

.node-a {
  left: 27%;
  top: 86px;
}

.node-b {
  right: 19%;
  top: 108px;
}

.node-c {
  right: 9%;
  top: 50px;
}

.service-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 34px;
}

.service-support .support-card {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: center;
  min-height: 192px;
  padding: 26px 30px;
  border: 1px solid rgba(80, 151, 232, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 46px rgba(28, 91, 145, 0.08);
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.38s ease, background 0.38s ease, box-shadow 0.38s ease;
}

.service-support .support-card:hover {
  transform: translateY(-12px) scale(1.018);
  border-color: rgba(31, 126, 222, 0.48);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 62px rgba(28, 91, 145, 0.16);
}

.service-support .support-card:hover::before,
.service-support .support-card:hover::after {
  width: 34px;
  height: 34px;
  border-color: #0b83d7;
}

.service-support .support-card:hover .support-card-icon i {
  transform: translateY(-4px) rotate(-6deg) scale(1.08);
  color: #0b83d7;
  filter: drop-shadow(0 14px 18px rgba(18, 104, 179, 0.18));
}

.service-support .support-card:hover .support-card-title i {
  animation: support-arrow-kick 0.58s cubic-bezier(0.2, 1.35, 0.28, 1) both;
}

.service-support .support-card::before,
.service-support .support-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #1d76d8;
  border-style: solid;
  transition: width 0.34s ease, height 0.34s ease, border-color 0.34s ease;
}

.service-support .support-card::before {
  top: 0;
  left: 0;
  border-width: 4px 0 0 4px;
  border-top-left-radius: 8px;
}

.service-support .support-card::after {
  right: 0;
  bottom: 0;
  border-width: 0 4px 4px 0;
  border-bottom-right-radius: 8px;
}

.support-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 122px;
  border-right: 1px solid rgba(100, 162, 233, 0.22);
}

.support-card-icon i {
  color: #1669c8;
  font-size: 4.2rem;
  transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.36s ease, filter 0.36s ease;
}

.support-card-copy {
  padding-left: 28px;
}

.support-card-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.support-card-title h3 {
  margin: 0;
  color: #0d3a7a;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
}

.support-card-title i {
  color: #2a7fe6;
  font-size: 2rem;
}

.service-support .support-card p {
  margin: 0;
  color: #5d6b7f;
  font-size: 0.98rem;
  line-height: 1.75;
}

.service-process-section,
.service-gallery-section {
  margin-top: 24px;
}

.service-support-label {
  margin-bottom: 18px;
}

.service-support-label h3 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 14px;
  color: #10233f;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.service-support-label h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1268b3, #2f8fff);
}

.service-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.service-process::before {
  content: "";
  position: absolute;
  left: 120px;
  right: 120px;
  top: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(80, 151, 232, 0.2), rgba(80, 151, 232, 0.55), rgba(80, 151, 232, 0.2));
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-step:hover {
  transform: translateY(-8px);
}

.process-step:hover .process-step-badge {
  transform: scale(1.08);
  border-color: rgba(70, 142, 228, 0.34);
  background: linear-gradient(135deg, #ffffff, #eef7ff);
  box-shadow: 0 22px 42px rgba(31, 84, 136, 0.14);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 92px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #62a2f0;
  box-shadow: 0 0 0 6px rgba(98, 162, 240, 0.14);
}

.process-step:last-child::before {
  display: none;
}

.process-step-badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border: 3px solid rgba(70, 142, 228, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1268b3;
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(31, 84, 136, 0.08);
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.34s ease, background 0.34s ease, box-shadow 0.34s ease;
}

.process-step-copy {
  padding-top: 8px;
}

.process-step-copy h4 {
  margin: 0 0 8px;
  color: #10233f;
  font-size: 1.38rem;
  font-weight: 800;
}

.process-step-copy p {
  margin: 0;
  color: #5d6c80;
  font-size: 0.98rem;
  line-height: 1.7;
}

.support-photo-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr 1fr;
  grid-template-rows: 112px 112px 112px;
  gap: 14px;
}

.support-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(18, 67, 118, 0.12);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.38s ease;
}

.support-photo-grid figure:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 28px 58px rgba(18, 67, 118, 0.18);
}

.photo-lead {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.photo-upper {
  grid-column: 2;
  grid-row: 1 / span 1;
}

.photo-wide {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.photo-tall {
  grid-column: 4;
  grid-row: 1 / span 3;
}

.photo-class {
  grid-column: 2;
  grid-row: 2 / span 2;
}

.photo-note {
  grid-column: 3;
  grid-row: 3 / span 1;
}

.support-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.58s ease;
}

.support-photo-grid figure:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

@keyframes support-arrow-kick {
  0% {
    transform: translateX(0);
  }

  54% {
    transform: translateX(14px);
  }

  76% {
    transform: translateX(7px);
  }

  100% {
    transform: translateX(9px);
  }
}

@media (max-width: 991.98px) {
  .service-support-hero {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-support-visual {
    min-height: 170px;
  }

  .service-support-grid,
  .service-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-process::before {
    display: none;
  }

  .process-step {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .process-step::before {
    display: none;
  }

  .support-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 180px);
  }

  .photo-lead,
  .photo-upper,
  .photo-wide,
  .photo-tall,
  .photo-class,
  .photo-note {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 1600px) {
  .service-support .container {
    width: min(1500px, calc(100% - 88px));
  }
}

@media (max-width: 1199.98px) {
  .service-support .container {
    width: min(960px, calc(100% - 48px));
  }
}

@media (max-width: 575.98px) {
  .service-support {
    padding: 50px 0 60px;
  }

  .service-support .container {
    width: min(100% - 28px, 520px);
  }

  .service-support-heading::before {
    left: -14px;
    width: 6px;
    height: 40px;
  }

  .service-support-heading {
    margin-bottom: 26px;
  }

  .service-support-heading h2 {
    font-size: 1.65rem;
  }

  .service-support-grid,
  .service-process {
    grid-template-columns: 1fr;
  }

  .service-support .support-card {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .support-card-icon {
    justify-content: flex-start;
    min-height: auto;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(100, 162, 233, 0.18);
  }

  .support-card-icon i {
    font-size: 3.25rem;
  }

  .support-card-copy {
    padding-left: 0;
  }

  .support-card-title {
    gap: 10px;
    margin-bottom: 12px;
  }

  .support-card-title h3 {
    font-size: 1.5rem;
  }

  .support-card-title i {
    font-size: 1.5rem;
  }

  .process-step {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }

  .process-step-badge {
    width: 72px;
    height: 72px;
    font-size: 1.6rem;
  }

  .process-step-copy h4 {
    font-size: 1.16rem;
  }

  .support-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .support-photo-grid figure {
    min-height: 210px;
  }

  .service-support-visual {
    min-height: 120px;
  }
}

.pricing .pricing-item {
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.pricing .pricing-item:hover {
  transform: translateY(-5px);
}

.pricing .pricing-item .pricing-icon {
  width: 56px;
  height: 56px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.pricing .pricing-item .pricing-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.pricing .pricing-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .pricing-item .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.pricing .pricing-item .price .currency {
  font-size: 24px;
  font-weight: 500;
  vertical-align: super;
}

.pricing .pricing-item .price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.pricing .pricing-item .description {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.pricing .pricing-item .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing .pricing-item .features-list li {
  padding: 12px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.pricing .pricing-item .features-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.pricing .pricing-item .btn-pricing {
  display: inline-block;
  padding: 12px 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.pricing .pricing-item.featured {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: linear-gradient(to bottom right, color-mix(in srgb, var(--accent-color), transparent 97%), var(--surface-color));
}

.pricing .pricing-item.featured .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

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

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

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

  .pricing .pricing-item .price {
    font-size: 40px;
  }

  .pricing .pricing-item .price .currency {
    font-size: 20px;
  }

  .pricing .pricing-item .price .period {
    font-size: 14px;
  }

  .pricing .pricing-item .features-list li {
    font-size: 14px;
  }

  .pricing .pricing-item .btn-pricing {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.faq .faq-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.faq .faq-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.faq .faq-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.faq .faq-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.faq .faq-list .faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-list .faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-list .faq-item h3:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq .faq-list .faq-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 15px;
}

.faq .faq-list .faq-item .faq-content {
  padding: 15px;
  display: none;
}

.faq .faq-list .faq-item .faq-content p {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.faq .faq-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-list .faq-item.faq-active h3 {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 30px;
  border-radius: 10px;
}

.faq .faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.faq .faq-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .faq .faq-list .faq-item h3 {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq .faq-list .faq-item h3 .num {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

  .faq .faq-list .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-list .faq-item .faq-content.faq-active .content-inner {
    padding: 15px 20px;
  }
}

/*--------------------------------------------------------------
# Capability Section
--------------------------------------------------------------*/
.capability {
  padding: 72px 0 76px;
}

.capability .capability-shell {
  position: relative;
  z-index: 1;
  width: min(1820px, calc(100% - 120px));
  max-width: none;
  padding: 0;
}

.capability .capability-intro {
  max-width: 980px;
  margin-bottom: 30px;
}

.capability .capability-intro h2 {
  margin: 8px 0 12px;
  color: var(--heading-color);
  font-size: 3rem;
  line-height: 1.18;
  font-weight: 800;
}

.capability .capability-intro p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 16px;
  line-height: 1.85;
}

.capability .capability-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.capability .metric-item {
  min-height: 116px;
  padding: 22px 24px;
  border: 1px solid rgba(18, 104, 179, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(18, 104, 179, 0.08);
}

.capability .metric-item strong {
  display: block;
  color: var(--accent-color);
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 800;
}

.capability .metric-item span {
  display: block;
  margin-top: 10px;
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
}

.capability .capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.capability .capability-card {
  min-height: 250px;
  padding: 28px 26px;
  border: 1px solid rgba(18, 104, 179, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(18, 104, 179, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.capability .capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 104, 179, 0.2);
  box-shadow: 0 20px 42px rgba(18, 104, 179, 0.12);
}

.capability .capability-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(18, 104, 179, 0.12), rgba(34, 184, 167, 0.16));
  font-size: 28px;
}

.capability .capability-card h3 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.capability .capability-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 1600px) {
  .capability .capability-shell {
    width: min(1500px, calc(100% - 88px));
  }
}

@media (max-width: 1199.98px) {
  .capability .capability-shell {
    width: min(960px, calc(100% - 48px));
  }

  .capability .capability-intro h2 {
    font-size: 2.55rem;
  }

  .capability .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .capability {
    padding: 56px 0 60px;
  }

  .capability .capability-metrics,
  .capability .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability .capability-intro h2 {
    font-size: 2.1rem;
  }

  .capability .metric-item strong {
    font-size: 2.7rem;
  }

  .capability .capability-card {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .capability .capability-shell {
    width: min(100% - 28px, 520px);
  }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .featured-post {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.recent-posts .featured-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.recent-posts .featured-post:hover .featured-img img {
  transform: scale(1.05);
}

.recent-posts .featured-post:hover .post-title a {
  color: var(--accent-color);
}

.recent-posts .featured-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.recent-posts .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-posts .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recent-posts .featured-content {
  padding: 32px;
}

.recent-posts .post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.recent-posts .post-title {
  margin: 0 0 20px 0;
}

.recent-posts .post-title a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.recent-posts .post-title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-excerpt {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.recent-posts .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recent-posts .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recent-posts .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.recent-posts .author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recent-posts .author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.recent-posts .read-time {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .read-more {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.recent-posts .read-more::after {
  content: "→";
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.recent-posts .read-more:hover::after {
  margin-left: 12px;
}

.recent-posts .recent-post {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.recent-posts .recent-post:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.recent-posts .recent-post:hover .recent-title a {
  color: var(--accent-color);
}

.recent-posts .recent-post:hover .recent-img img {
  transform: scale(1.05);
}

.recent-posts .recent-img {
  height: 120px;
  overflow: hidden;
}

.recent-posts .recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-posts .recent-content {
  padding: 20px;
}

.recent-posts .recent-title {
  margin: 8px 0 12px 0;
}

.recent-posts .recent-title a {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.recent-posts .recent-title a:hover {
  color: var(--accent-color);
}

.recent-posts .recent-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.recent-posts .recent-meta .author {
  color: var(--heading-color);
  font-weight: 500;
}

.recent-posts .recent-meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 80%));
  color: var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.recent-posts .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.recent-posts .post-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 991px) {
  .recent-posts .featured-post {
    margin-bottom: 40px;
  }

  .recent-posts .featured-img {
    height: 250px;
  }

  .recent-posts .featured-content {
    padding: 24px;
  }

  .recent-posts .post-title a {
    font-size: 24px;
  }

  .recent-posts .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .recent-posts .recent-post {
    display: flex;
    margin-bottom: 16px;
  }

  .recent-posts .recent-img {
    flex: 0 0 100px;
    height: 100px;
  }

  .recent-posts .recent-content {
    flex: 1;
    padding: 16px;
  }

  .recent-posts .recent-title a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .recent-posts .post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .recent-posts .recent-post {
    flex-direction: column;
  }

  .recent-posts .recent-img {
    flex: none;
    height: 120px;
  }
}

/*--------------------------------------------------------------
# Honors Section
--------------------------------------------------------------*/
.honors {
  padding-top: 80px;
  padding-bottom: 80px;
}

.honors .section-title {
  margin-bottom: 36px;
}

.honors .section-title p {
  max-width: 760px;
}

.honors-stage {
  position: relative;
  width: 100%;
  padding: 36px 0 40px;
  background:
    radial-gradient(circle at left top, rgba(18, 104, 179, 0.1), transparent 34%),
    radial-gradient(circle at right bottom, rgba(34, 184, 167, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fbfe 0%, #eef6fb 100%);
  overflow: hidden;
}

.honors-stage::before,
.honors-stage::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.honors-stage::before {
  left: 0;
  background: linear-gradient(90deg, #f8fbfe 10%, rgba(248, 251, 254, 0));
}

.honors-stage::after {
  right: 0;
  background: linear-gradient(270deg, #eef6fb 10%, rgba(238, 246, 251, 0));
}

.honors-intro {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
}

.honors-intro h3 {
  margin: 12px 0 10px;
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
}

.honors-intro p {
  margin: 0;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.honors-intro-patent {
  margin-top: 26px;
}

.honors-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(18, 104, 179, 0.12), rgba(34, 184, 167, 0.18));
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee {
  position: relative;
  display: flex;
  gap: 20px;
  width: 100%;
  overflow: hidden;
  user-select: none;
  margin: 0 auto;
  padding: 8px 0;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  min-width: max-content;
  animation: honors-marquee-left 38s linear infinite;
  will-change: transform;
}

.marquee-right .marquee-track {
  animation-name: honors-marquee-right;
  animation-duration: 42s;
}

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

.certificate-marquee .certificate-card {
  flex: 0 0 auto;
  width: 176px;
  height: 238px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 104, 179, 0.08);
  box-shadow: 0 16px 34px rgba(14, 48, 77, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.certificate-marquee .certificate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(14, 48, 77, 0.14);
}

.certificate-marquee .certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background-color: #fff;
}

@keyframes honors-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 20px));
  }
}

@keyframes honors-marquee-right {
  from {
    transform: translateX(calc(-100% - 20px));
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .honors {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .honors-stage {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .honors-stage::before,
  .honors-stage::after {
    width: 72px;
  }

  .honors-intro {
    width: calc(100% - 32px);
  }

  .honors-intro h3 {
    font-size: 24px;
  }

  .certificate-marquee .certificate-card {
    width: 150px;
    height: 204px;
  }
}

@media (max-width: 576px) {
  .honors .section-title {
    margin-bottom: 26px;
  }

  .honors-stage::before,
  .honors-stage::after {
    width: 32px;
  }

  .honors-intro h3 {
    font-size: 21px;
  }

  .honors-intro p {
    font-size: 14px;
    line-height: 1.7;
  }

  .marquee,
  .marquee-track {
    gap: 14px;
  }

  .marquee-track {
    animation-duration: 28s;
  }

  .marquee-right .marquee-track {
    animation-duration: 30s;
  }

  .certificate-marquee .certificate-card {
    width: 126px;
    height: 174px;
    padding: 10px;
    border-radius: 16px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 64px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 15% 8%, rgba(88, 160, 238, 0.16), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(92, 170, 243, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fd 100%);
}

.contact .container {
  position: relative;
  z-index: 1;
  width: min(1820px, calc(100% - 120px));
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.contact-shell {
  position: relative;
}

.contact-heading {
  max-width: 620px;
  margin: 0 0 24px;
  text-align: left;
}

.contact-heading h2 {
  margin: 0;
  color: #10233f;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
}

.contact-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 14px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #1268b3, #2d8fff);
}

.contact-heading p {
  margin: 16px 0 0;
  max-width: 560px;
  color: #667488;
  font-size: 0.96rem;
  line-height: 1.7;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(360px, 0.9fr);
  gap: 0;
  border: 1px solid rgba(113, 166, 232, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 48px rgba(23, 75, 126, 0.12);
}

.contact-map-stage {
  position: relative;
  padding: 10px;
  background: linear-gradient(180deg, rgba(242, 247, 253, 0.88), rgba(233, 242, 251, 0.92));
}

.contact-map-badge {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #1268b3, #2b82eb);
  box-shadow: 0 14px 28px rgba(18, 104, 179, 0.25);
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-map-badge i {
  font-size: 1rem;
}

.contact .map-wrapper {
  height: 495px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef7fd 0%, #e5f1fa 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.contact .map-zoom-viewer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  touch-action: none;
}

.contact .map-zoom-viewer img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  transform: translate3d(0, 0, 0);
  transition: transform 0.08s ease-out;
  will-change: transform;
  pointer-events: none;
  filter: saturate(0.96) contrast(1.02);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 34px 36px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.94)),
    radial-gradient(circle at right top, rgba(34, 184, 167, 0.15), transparent 38%);
  border-left: 1px solid rgba(18, 104, 179, 0.08);
}

.contact-brand-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 104, 179, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #10233f, #1268b3 62%, #22b8a7);
  box-shadow: 0 18px 36px rgba(18, 104, 179, 0.16);
}

.contact-brand-card span {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 46px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
}

.contact-brand-mark img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.contact-info-panel h3 {
  margin: 28px 0 0;
  color: #10233f;
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.4;
}

.contact-info-list {
  margin-top: 22px;
  border-top: 1px solid rgba(18, 104, 179, 0.12);
}

.contact-info-block {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(18, 104, 179, 0.18);
}

.contact-info-block>i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #1268b3;
  background: linear-gradient(135deg, rgba(18, 104, 179, 0.12), rgba(34, 184, 167, 0.18));
  font-size: 1.25rem;
}

.contact-info-block h4 {
  margin: 0 0 8px;
  color: #1c78de;
  font-size: 1rem;
  font-weight: 800;
}

.contact-info-block p,
.contact-info-block small {
  display: block;
}

.contact-info-block p {
  margin: 0;
  color: #24344d;
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-info-block small {
  margin-top: 4px;
  color: #5e6f84;
  font-size: 0.86rem;
  line-height: 1.6;
}

.contact-phone-block {
  align-items: center;
}

.contact-phone-block a {
  text-decoration: none;
}

.contact-phone-block>div a {
  color: #1d76d9;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.contact-tip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 0 10px;
  color: #55667e;
}

.contact-tip i {
  flex: 0 0 auto;
  color: #3d87dc;
  font-size: 1.75rem;
}

.contact-tip p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1600px) {
  .contact .container {
    width: min(1500px, calc(100% - 88px));
  }
}

@media (max-width: 1399.98px) {
  .contact-panel {
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.95fr);
  }

  .contact .map-wrapper {
    height: 455px;
  }
}

@media (max-width: 1199.98px) {
  .contact .container {
    width: min(960px, calc(100% - 48px));
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact .map-wrapper {
    height: 420px;
  }

  .contact-info-panel {
    padding: 30px 24px 24px;
  }
}

@media (max-width: 575.98px) {
  .contact .container {
    width: min(100% - 28px, 520px);
  }

  .contact {
    padding-top: 52px;
    padding-bottom: 60px;
  }

  .contact-heading {
    margin-bottom: 24px;
  }

  .contact-heading h2 {
    font-size: 1.75rem;
  }

  .contact-heading p {
    font-size: 0.96rem;
  }

  .contact-map-badge {
    left: 22px;
    top: 22px;
    padding: 9px 16px;
    font-size: 0.98rem;
  }

  .contact .map-wrapper {
    height: 300px;
  }

  .contact-info-panel {
    padding: 24px 18px 18px;
  }

  .contact-info-panel h3 {
    font-size: 1.4rem;
  }

  .contact-info-block {
    padding: 16px 0;
  }

  .contact-phone-block>div a {
    font-size: 1.56rem;
  }

  .contact-tip {
    align-items: flex-start;
    padding: 0 2px;
  }

  .contact-tip p {
    font-size: 0.94rem;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-slider-container {
  margin-bottom: 40px;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(54, 144, 231, 0.1);
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-pagination {
  bottom: 20px;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--surface-color);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-prev {
  color: var(--surface-color);
  background: rgba(54, 144, 231, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-next:after,
.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 600;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-prev:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-slide img {
    height: 250px;
  }
}

.portfolio-details .project-description h2 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 700;
}

.portfolio-details .project-description p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

.portfolio-details .project-description .feature-highlights {
  margin: 50px 0;
}

.portfolio-details .project-description .feature-highlights h3 {
  color: var(--heading-color);
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.portfolio-details .project-description .feature-highlights .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(54, 144, 231, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(54, 144, 231, 0.1);
}

.portfolio-details .project-description .feature-highlights .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(54, 144, 231, 0.15);
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #22b8a7 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-icon i {
  color: var(--contrast-color);
  font-size: 22px;
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-content h4 {
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.portfolio-details .project-description .technologies-used h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
}

.portfolio-details .project-description .technologies-used .tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portfolio-details .project-description .technologies-used .tech-stack .tech-tag {
  background: var(--surface-color);
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid rgba(54, 144, 231, 0.2);
  transition: all 0.3s ease;
}

.portfolio-details .project-description .technologies-used .tech-stack .tech-tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.portfolio-details .project-info-card {
  background: var(--surface-color);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(54, 144, 231, 0.1);
  margin-bottom: 30px;
  border: 1px solid rgba(54, 144, 231, 0.08);
}

.portfolio-details .project-info-card h3 {
  color: var(--heading-color);
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 700;
}

.portfolio-details .project-info-card .info-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(54, 144, 231, 0.1);
}

.portfolio-details .project-info-card .info-item:last-child {
  border-bottom: none;
  margin-bottom: 30px;
}

.portfolio-details .project-info-card .info-item h4 {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-details .project-info-card .info-item p {
  color: var(--default-color);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.portfolio-details .project-info-card .info-item p a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .project-info-card .info-item p a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.portfolio-details .project-info-card .info-item p a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.portfolio-details .project-info-card .info-item p a:hover i {
  transform: translate(3px, -3px);
}

.portfolio-details .project-info-card .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.portfolio-details .project-info-card .cta-buttons .btn {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid rgba(54, 144, 231, 0.3);
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .portfolio-details .project-info-card {
    padding: 25px;
  }

  .portfolio-details .project-info-card .cta-buttons .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

.portfolio-details .project-stats-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #22b8a7 30%));
  padding: 35px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(54, 144, 231, 0.2);
}

.portfolio-details .project-stats-card h3 {
  color: var(--contrast-color);
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 700;
}

.portfolio-details .project-stats-card .stat-item {
  text-align: center;
  margin-bottom: 25px;
}

.portfolio-details .project-stats-card .stat-item:last-child {
  margin-bottom: 0;
}

.portfolio-details .project-stats-card .stat-item .stat-number {
  color: var(--contrast-color);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 5px;
  display: block;
}

.portfolio-details .project-stats-card .stat-item .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .portfolio-details .project-stats-card {
    padding: 25px;
  }

  .portfolio-details .project-stats-card .stat-item .stat-number {
    font-size: 28px;
  }
}

.portfolio-details .related-projects h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}

.portfolio-details .related-projects .related-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(54, 144, 231, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(54, 144, 231, 0.1);
}

.portfolio-details .related-projects .related-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(54, 144, 231, 0.15);
}

.portfolio-details .related-projects .related-item:last-child {
  margin-bottom: 0;
}

.portfolio-details .related-projects .related-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.portfolio-details .related-projects .related-item .related-content {
  padding: 20px;
}

.portfolio-details .related-projects .related-item .related-content h4 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio-details .related-projects .related-item .related-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.portfolio-details .related-projects .related-item .related-content .related-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.portfolio-details .related-projects .related-item .related-content .related-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.portfolio-details .related-projects .related-item .related-content .related-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.portfolio-details .related-projects .related-item .related-content .related-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .portfolio-details .project-description {
    margin-bottom: 40px;
  }

  .portfolio-details .project-description .feature-highlights .feature-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio-details .project-description h2 {
    font-size: 26px;
  }

  .portfolio-details .project-description .feature-highlights h3,
  .portfolio-details .project-description .technologies-used h3 {
    font-size: 20px;
  }

  .portfolio-details .project-description .feature-highlights .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .portfolio-details .project-description .technologies-used .tech-stack .tech-tag {
    padding: 6px 14px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-main-content .service-image {
  margin-bottom: 40px;
}

.service-details .service-main-content .service-image img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-details .service-main-content .service-image img:hover {
  transform: translateY(-5px);
}

.service-details .service-main-content .service-description h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-main-content .service-description .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-details .service-main-content .service-description p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--default-color);
}

.service-details .service-main-content .features-included {
  margin: 50px 0;
  padding: 40px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-details .service-main-content .features-included h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-main-content .features-included .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.service-details .service-main-content .features-included .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #22b8a7 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-details .service-main-content .features-included .feature-item .feature-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.service-details .service-main-content .features-included .feature-item .feature-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-main-content .features-included .feature-item .feature-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-main-content .process-steps {
  margin-top: 50px;
}

.service-details .service-main-content .process-steps h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-main-content .process-steps .steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-details .service-main-content .process-steps .step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-details .service-main-content .process-steps .step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-main-content .process-steps .step-item .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #22b8a7 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.service-details .service-main-content .process-steps .step-item .step-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-main-content .process-steps .step-item .step-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-details .service-sidebar .service-info-card,
.service-details .service-sidebar .testimonial-card,
.service-details .service-sidebar .cta-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-details .service-sidebar .service-info-card:hover,
.service-details .service-sidebar .testimonial-card:hover,
.service-details .service-sidebar .cta-card:hover {
  transform: translateY(-5px);
}

.service-details .service-sidebar .service-info-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info-card .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info-card .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info-card .info-item .info-label {
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .service-info-card .info-item .info-value {
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .service-sidebar .testimonial-card .quote-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #22b8a7 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .quote-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.service-details .service-sidebar .testimonial-card p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--default-color);
}

.service-details .service-sidebar .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .testimonial-card .testimonial-author .author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .service-sidebar .testimonial-card .testimonial-author .author-info h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.service-details .service-sidebar .testimonial-card .testimonial-author .author-info span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .cta-card {
  text-align: center;
}

.service-details .service-sidebar .cta-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-sidebar .cta-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-sidebar .cta-card .btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #22b8a7 30%));
  border: none;
  border-radius: 12px;
  padding: 12px 30px;
  font-weight: 600;
  color: var(--contrast-color);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.service-details .service-sidebar .cta-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(54, 144, 231, 0.3);
  color: var(--contrast-color);
}

.service-details .service-sidebar .cta-card .contact-info .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.service-details .service-sidebar .cta-card .contact-info .contact-item i {
  color: var(--accent-color);
}

.service-details .service-sidebar .cta-card .contact-info .contact-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-details .service-main-content .service-description h2 {
    font-size: 2rem;
  }

  .service-details .service-main-content .features-included {
    padding: 25px;
  }

  .service-details .service-main-content .process-steps .step-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .service-details .service-sidebar {
    margin-top: 40px;
  }
}

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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts .featured-post {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.blog-posts .featured-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.blog-posts .featured-post:hover .featured-img img {
  transform: scale(1.05);
}

.blog-posts .featured-post:hover .post-title a {
  color: var(--accent-color);
}

.blog-posts .featured-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.blog-posts .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-posts .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-posts .featured-content {
  padding: 32px;
}

.blog-posts .post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.blog-posts .post-title {
  margin: 0 0 20px 0;
}

.blog-posts .post-title a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-posts .post-title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-excerpt {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.blog-posts .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-posts .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-posts .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-posts .author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-posts .author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.blog-posts .read-time {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .read-more {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.blog-posts .read-more::after {
  content: "→";
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.blog-posts .read-more:hover::after {
  margin-left: 12px;
}

.blog-posts .recent-post {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-posts .recent-post:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.blog-posts .recent-post:hover .recent-title a {
  color: var(--accent-color);
}

.blog-posts .recent-post:hover .recent-img img {
  transform: scale(1.05);
}

.blog-posts .recent-img {
  height: 120px;
  overflow: hidden;
}

.blog-posts .recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-posts .recent-content {
  padding: 20px;
}

.blog-posts .recent-title {
  margin: 8px 0 12px 0;
}

.blog-posts .recent-title a {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-posts .recent-title a:hover {
  color: var(--accent-color);
}

.blog-posts .recent-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.blog-posts .recent-meta .author {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-posts .recent-meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 80%));
  color: var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.blog-posts .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.blog-posts .post-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 991px) {
  .blog-posts .featured-post {
    margin-bottom: 40px;
  }

  .blog-posts .featured-img {
    height: 250px;
  }

  .blog-posts .featured-content {
    padding: 24px;
  }

  .blog-posts .post-title a {
    font-size: 24px;
  }

  .blog-posts .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blog-posts .recent-post {
    display: flex;
    margin-bottom: 16px;
  }

  .blog-posts .recent-img {
    flex: 0 0 100px;
    height: 100px;
  }

  .blog-posts .recent-content {
    flex: 1;
    padding: 16px;
  }

  .blog-posts .recent-title a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .blog-posts .post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .blog-posts .recent-post {
    flex-direction: column;
  }

  .blog-posts .recent-img {
    flex: none;
    height: 120px;
  }
}

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

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

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

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

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

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

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

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

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

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

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

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

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

.search-widget form button:hover {
  color: var(--accent-color);
}

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

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

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

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

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

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

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

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

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

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

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

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

/* Haffir theme refinements */
.header .logo span,
.footer .footer-content .logo span {
  color: var(--secondary-accent-color);
}

.header .logo .site-logo {
  max-height: 48px;
}

.footer .footer-content .logo .site-logo {
  max-height: 42px;
  width: auto;
}

.hero .carousel-item::before {
  background: transparent;
}

.hero .info h2 {
  color: var(--heading-color);
}

.hero .info h2:after,
.section-title h2::after {
  background: linear-gradient(90deg, var(--secondary-accent-color), var(--accent-color));
}

.hero .info .btn-get-started,
.header .cta-btn,
.footer .newsletter-form .btn-subscribe,
.scroll-top {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent-color));
}

.hero .info .btn-get-started:hover,
.header .cta-btn:hover,
.header .cta-btn:focus:hover,
.footer .newsletter-form .btn-subscribe:hover,
.scroll-top:hover {
  background: linear-gradient(135deg, #0f4f7a, var(--accent-color));
  color: var(--contrast-color);
}

.services .service-card .icon-box,
.services .swiper-navigation button,
.contact .contact-form-container .form-submit button,
.pricing .pricing-item .btn-pricing {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent-color));
}

.services .service-card:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent-color));
}
