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

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Kanit",  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: "Kanit",  sans-serif;
  --nav-font: "Kanit",  sans-serif;
  --logo-font: "Barlow",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3498db; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #3498db; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3498db; /* 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: #f4fafd;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile-nav-active .header {
    z-index: 10000;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: none;
  }

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 16px;
  padding: 40px 0;
  position: relative;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

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

.footer .social-links {
  margin-top: 20px;
}

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

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

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 5px 0 20px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero .btn-get-started {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 36px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

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

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 10px 10px;
  /* max-width: 90%; */
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

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

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  margin-bottom: 30px;
}

.about .content h3 {
  font-weight: 500;
  font-size: 28px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content li {
  list-style-type: none;
  margin-left: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  color: #696969;
}

.about .content i{
  margin-right: 10px;
  color: var(--accent-color);
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  margin: 20px 0px 0px 20px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats i{
  margin-right: 10px;
  color: var(--accent-color);
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item .stats-number {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 10px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  right: -80px;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item:after {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  right: -140px;
  top: -140px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.services .service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
}

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

.services .service-item:hover:before,
.services .service-item:hover:after {
  background: var(--accent-color);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

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

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

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img {
  border-radius: 8px;
  overflow: hidden;
}

.alt-services .img img {
  transition: 0.6s;
}

.alt-services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.alt-services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.alt-services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

.alt-services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.glightbox-clean .gslide-title {
  font-family: var(--default-font);
  font-size: 1.4em;
  color: #696969;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

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

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  color: #353535;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

.team .btn-toggle {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 36px;
  border-radius: 50px;
  transition: 0.3s;
  background-color: #ffffff;
  border: 2px solid var(--accent-color);
}

.team .btn-toggle:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

#teamChart[hidden],
#teamPic[hidden] {
  display: none !important;
}

.team .btn-toggle:disabled {
  cursor: wait;
  opacity: .7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--default-color);
}

.faq .faq-item p {
  font-size: 15px;
  color: var(--default-color);
}

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .php-email-form {
  height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# doc-link Section
--------------------------------------------------------------*/
.doc-link {
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.doc-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.doc-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dcebf4;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(7, 61, 101, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.doc-card:hover {
  transform: translateY(-5px);
  border-color: #9edcf2;
  box-shadow: 0 22px 48px rgba(7, 61, 101, 0.16);
}

.doc-card-link {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 230px;
  height: 100%;
  color: var(--default-color);
}

.doc-card-link:hover {
  color: var(--default-color);
}

.doc-card-link:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: -3px;
}

.doc-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid #dcebf4;
  background: #ffffff;
}

.doc-card-image img {
  display: block;
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.doc-card:hover .doc-card-image img {
  transform: scale(1.04);
}

.doc-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 26px 23px;
}

.doc-card-type {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #e5f7fe;
  color: #057daf;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.doc-card h3 {
  margin: 0 0 22px;
  color: var(--brand-navy, var(--heading-color));
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
}

.doc-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
}

.doc-card-action i {
  transition: transform 0.25s ease;
}

.doc-card:hover .doc-card-action i {
  transform: translateX(4px);
}

/* Research database cards */
.research-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.research-card-grid > .row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  min-height: 220px;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid #dcebf4 !important;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(7, 61, 101, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.research-card-grid > .row:hover {
  transform: translateY(-5px);
  border-color: #9edcf2 !important;
  box-shadow: 0 22px 48px rgba(7, 61, 101, 0.16);
}

.research-card-grid > .row::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / 3;
  border-right: 1px solid #dcebf4;
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: min(112px, 76%);
}

.research-card-grid > .row:nth-child(1)::before { background-image: url("../img/research/01_CU.png"); }
.research-card-grid > .row:nth-child(2)::before { background-image: url("../img/research/02_MU.png"); }
.research-card-grid > .row:nth-child(3)::before { background-image: url("../img/research/03_TU.png"); }
.research-card-grid > .row:nth-child(4)::before { background-image: url("../img/research/04_KU.png"); }
.research-card-grid > .row:nth-child(5)::before { background-image: url("../img/research/05_KMITL.png"); }
.research-card-grid > .row:nth-child(6)::before { background-image: url("../img/research/06_KMUTT.png"); }
.research-card-grid > .row:nth-child(7)::before { background-image: url("../img/research/07_KMUTNB.png"); }
.research-card-grid > .row:nth-child(8)::before { background-image: url("../img/research/08_CMU.png"); }
.research-card-grid > .row:nth-child(9)::before { background-image: url("../img/research/09_NU.png"); }
.research-card-grid > .row:nth-child(10)::before { background-image: url("../img/research/10_PSU.png"); }
.research-card-grid > .row:nth-child(11)::before { background-image: url("../img/research/11_BUU.png"); }
.research-card-grid > .row:nth-child(12)::before { background-image: url("../img/research/12_UTCC.png"); }
.research-card-grid > .row:nth-child(13)::before { background-image: url("../img/research/13_BU.png"); }
.research-card-grid > .row:nth-child(14)::before { background-image: url("../img/research/14_RSU.png"); }
.research-card-grid > .row:nth-child(15)::before { background-image: url("../img/research/15_TNRR.png"); }
.research-card-grid > .row:nth-child(16)::before { background-image: url("../img/research/16_KPI.png"); }
.research-card-grid > .row:nth-child(17)::before { background-image: url("../img/research/17_TSRI.png"); }

.research-card-grid > .row > div {
  grid-column: 2;
  width: auto;
  max-width: none;
  padding: 0 24px;
}

.research-card-grid > .row > div:first-of-type {
  align-self: end;
  padding-top: 24px;
}

.research-card-grid > .row > div:last-of-type {
  align-self: start;
  padding-bottom: 24px;
}

.research-card-grid h4 {
  margin: 0 0 5px;
  color: var(--brand-navy, var(--heading-color));
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
}

.research-card-grid p {
  margin: 0 0 13px;
  color: #637b8d;
  font-size: 14px;
  line-height: 1.6;
}

.research-card-grid a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  color: #0789bd;
  font-size: 14px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.research-card-grid a::after {
  content: "\F144";
  flex: 0 0 auto;
  margin-left: 8px;
  font-family: "bootstrap-icons";
  transition: transform 0.25s ease;
}

.research-card-grid > .row:hover a::after {
  transform: translate(3px, -3px);
}

/* Application, useful link and article cards */
.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.content-card-grid--apps {
  grid-template-columns: minmax(0, 1fr);
}

.content-card-grid > .row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 245px;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid #dcebf4;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(7, 61, 101, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.content-card-grid > .row:hover {
  transform: translateY(-5px);
  border-color: #9edcf2;
  box-shadow: 0 22px 48px rgba(7, 61, 101, 0.16);
}

.content-card-grid > .row > div {
  width: auto;
  max-width: none;
}

.content-card-grid > .row > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px !important;
  border-right: 1px solid #dcebf4;
  background: #ffffff;
}

.content-card-grid > .row > div:first-child img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 210px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: none !important;
  transition: transform 0.3s ease;
}

.content-card-grid--links > .row > div:first-child img,
.content-card-grid--articles > .row > div:first-child img {
  object-fit: cover;
}

.content-card-grid > .row:hover > div:first-child img {
  transform: scale(1.035);
}

.content-card-grid > .row > div:last-child {
  min-width: 0;
  padding: 25px 26px;
}

.content-card-grid .portfolio-info,
.content-card-grid .portfolio-description,
.content-card-grid .article-description {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.content-card-grid .portfolio-info ul {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

.content-card-grid .portfolio-info li {
  margin-bottom: 8px;
  color: #637b8d;
  font-size: 14px;
  line-height: 1.65;
}

.content-card-grid h2,
.content-card-grid h3 {
  margin: 0 0 10px;
  color: var(--brand-navy, var(--heading-color));
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
}

.content-card-grid p {
  display: -webkit-box;
  margin: 0 0 16px;
  overflow: hidden;
  color: #637587;
  font-size: 14px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.content-card-grid a {
  color: #0789bd;
  overflow-wrap: anywhere;
}

.content-card-grid .article-description > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 !important;
  font-size: 14px;
  font-weight: 600;
}

.content-card-grid .article-description > a::after {
  content: "\F144";
  font-family: "bootstrap-icons";
  transition: transform 0.25s ease;
}

.content-card-grid > .row:hover .article-description > a::after {
  transform: translate(3px, -3px);
}

.content-card-grid--apps > .row {
  grid-template-columns: 250px minmax(0, 1fr);
}

.content-card-grid--apps > .row > div:first-child img {
  max-height: 230px;
}

.content-card-grid--links .portfolio-description:empty {
  display: none;
}

@media (max-width: 991px) {
  .content-card-grid,
  .content-card-grid--apps {
    grid-template-columns: 1fr;
  }

  .research-card-grid {
    grid-template-columns: 1fr;
  }

  .doc-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .content-card-grid > .row,
  .content-card-grid--apps > .row {
    grid-template-columns: 115px minmax(0, 1fr);
    min-height: 210px;
  }

  .content-card-grid > .row > div:first-child {
    padding: 10px !important;
  }

  .content-card-grid > .row > div:first-child img {
    max-height: 185px;
    border-radius: 9px;
  }

  .content-card-grid > .row > div:last-child {
    padding: 18px 16px;
  }

  .content-card-grid h2,
  .content-card-grid h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .content-card-grid p {
    font-size: 13px;
    line-height: 1.65;
    -webkit-line-clamp: 4;
  }

  .content-card-grid .portfolio-info li {
    font-size: 13px;
  }

  .research-card-grid {
    gap: 16px;
  }

  .research-card-grid > .row {
    grid-template-columns: 105px minmax(0, 1fr);
    min-height: 185px;
  }

  .research-card-grid > .row::before {
    background-size: min(80px, 76%);
  }

  .research-card-grid > .row > div {
    padding-inline: 16px;
  }

  .research-card-grid > .row > div:first-of-type {
    padding-top: 18px;
  }

  .research-card-grid > .row > div:last-of-type {
    padding-bottom: 18px;
  }

  .research-card-grid h4 {
    font-size: 16px;
  }

  .research-card-grid p,
  .research-card-grid a {
    font-size: 13px;
  }

  .doc-card-grid {
    gap: 16px;
  }

  .doc-card-link {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 190px;
  }

  .doc-card-image {
    padding: 14px;
  }

  .doc-card-content {
    padding: 19px 17px 17px;
  }

  .doc-card-type {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .doc-card h3 {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.55;
  }
}

.doc-link .content {
  margin-bottom: 30px;
}

.doc-link .content h3 {
  font-weight: 500;
  font-size: 28px;
}

.doc-link .content p {
  margin-bottom: 30px;
}

.doc-link .content li {
  list-style-type: none;
  margin-left: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #696969;
}

.doc-link .content i{
  margin-right: 10px;
  color: var(--accent-color);
}

.doc-link .content .doc-link-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.doc-link .content .doc-link-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.doc-link .content .doc-link-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.doc-link .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.doc-link .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.doc-link .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.doc-link .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.doc-link .icon-box:hover h4 a {
  color: var(--accent-color);
}

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

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

.doc-details .doc-list li.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.doc-details .doc-list li:hover {
  border-color: var(--accent-color);
}

#pdf-viewer-container { 
  flex-grow: 1; 
  height: 1190px; 
  border-bottom: 1px #0000;
}
               
#pdf-viewer { 
  width: 100%; 
  height: 100%; 
}

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

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

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

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

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

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

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

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

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

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

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

.article-details {
  text-align: center;
}

.article-details img{
  margin: 2em 0;
  max-height: 400px;
  border-radius: 20px;
}

.article-details p{
  text-align: left;
  margin-bottom: 1em;
}

.article-details h5{
  margin-bottom: 1em;
}

.article-details li{
  text-align: left;
  margin-bottom: 1em;
}

/* 2026 RDIT visual refresh */
:root {
  --background-color: #ffffff;
  --default-color: #42526b;
  --heading-color: #07345c;
  --accent-color: #058dcc;
  --surface-color: #ffffff;
  --nav-color: #163b5b;
  --nav-hover-color: #058dcc;
  --nav-mobile-background-color: #f7fbff;
  --nav-dropdown-color: #163b5b;
  --nav-dropdown-hover-color: #058dcc;
  --brand-navy: #063660;
  --brand-blue: #087eb9;
  --brand-cyan: #18c8e6;
  --brand-ice: #eef9ff;
  --brand-line: #d7ebf6;
  --shadow-soft: 0 18px 55px rgba(7, 60, 101, .10);
}

body { overflow-x: hidden; background: #fff; line-height: 1.75; }
.section { padding: 92px 0; scroll-margin-top: 76px; }
.light-background { --background-color: #f4faff; background-image: radial-gradient(circle at 8% 10%, rgba(24,200,230,.09), transparent 25%); }

.header { padding: 8px 0; background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(215,235,246,.8); backdrop-filter: blur(16px); }
.header .logo img { max-height: 58px; margin-right: 12px; padding-block: 5px; }
.header .logo .brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.header .logo .sitename { max-width:none; font-family:var(--heading-font); font-size:17px; font-weight:600; line-height:1.25; letter-spacing:0; color:var(--brand-navy); white-space:nowrap; }
.header .logo small { margin-top: 4px; color: #58809d; font-size: 10px; letter-spacing: .03em; }
.scrolled .header { box-shadow: 0 8px 30px rgba(7,52,92,.08); }
@media (min-width: 1200px) {
  .navmenu a, .navmenu a:focus { padding: 15px 10px; font-size: 14px; font-weight: 500; }
  .navmenu .dropdown ul { border-radius: 14px; border: 1px solid var(--brand-line); box-shadow: var(--shadow-soft); padding: 8px; }
  .navmenu .dropdown ul a { border-radius: 9px; }
  .navmenu .dropdown ul a:hover { background: var(--brand-ice); }
}

.hero { min-height: 650px; padding: 50px 0 78px; position: relative; overflow: hidden; background: #ffffff; }
.hero:before,.hero:after { display:none; }
.hero .container { position:relative; z-index:1; }
.hero-copy { padding-right: 42px; }
.hero-eyebrow { width:max-content; display:inline-flex; align-items:center; gap:9px; padding:8px 13px; margin-bottom:20px; border:1px solid #bceafa; border-radius:999px; background:rgba(255,255,255,.78); color:#047daf; font-size:12px; font-weight:700; letter-spacing:.11em; }
.hero h1 { font-size: clamp(42px,5vw,70px); line-height:1.14; margin:0 0 22px; font-weight:700; letter-spacing:-.035em; color:var(--brand-navy); }
.hero h1 span { color:transparent; background:linear-gradient(90deg,var(--brand-blue),var(--brand-cyan)); background-clip:text; -webkit-background-clip:text; }
.hero p { max-width:620px; font-size:18px; color:#4e6c84; margin:0 0 30px; }
.hero-actions { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.hero-primary,.hero-secondary { display:inline-flex; align-items:center; justify-content:center; gap:10px; min-height:50px; padding:11px 23px; border-radius:13px; font-weight:600; }
.hero-primary { color:#fff; background:linear-gradient(135deg,var(--brand-navy),var(--brand-blue)); box-shadow:0 12px 25px rgba(5,111,169,.24); }
.hero-primary:hover { color:#fff; transform:translateY(-2px); box-shadow:0 16px 32px rgba(5,111,169,.30); }
.hero-secondary { color:var(--brand-navy); background:rgba(255,255,255,.72); border:1px solid var(--brand-line); }
.hero-secondary:hover { color:var(--brand-blue); background:#fff; }
.hero-trust { display:flex; gap:24px; flex-wrap:wrap; margin-top:28px; color:#54748b; font-size:13px; }
.hero-trust i { color:#0ba6c8; margin-right:5px; }
.hero .hero-img { display:flex; align-items:center; justify-content:center; min-height:500px; }
.hero-showcase { position:relative; width:100%; height:500px; overflow:hidden; isolation:isolate; }
.hero-slide { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; opacity:0; transform:translateY(-56px); filter:none; animation:heroVerticalFade 50s ease-in-out infinite; will-change:opacity,transform; }
.hero-slide-1 { animation-delay:0s; }
.hero-slide-2 { animation-delay:5s; }
.hero-slide-3 { animation-delay:10s; }
.hero-slide-4 { animation-delay:15s; }
.hero-slide-5 { animation-delay:20s; }
.hero-slide-6 { animation-delay:25s; }
.hero-slide-7 { animation-delay:30s; }
.hero-slide-8 { animation-delay:35s; }
.hero-slide-9 { animation-delay:40s; }
.hero-slide-10 { animation-delay:45s; }
@media (min-width: 1200px) {
  .hero .row { position:relative; }
  .hero-copy { position:relative; z-index:2; }
  .hero .hero-img { position:relative; z-index:1; }
  .hero-showcase { width:140%; height:590px; margin-left:-30%; overflow:visible; }
}
@keyframes heroVerticalFade {
  0% { opacity:0; transform:translateY(-56px); }
  2%,8% { opacity:1; transform:translateY(0); }
  10%,100% { opacity:0; transform:translateY(56px); }
}

.innovation-marquee { position:relative; padding:86px 0 92px; overflow:hidden; background:#1f3b6f; border-top:1px solid rgba(114,211,241,.22); border-bottom:1px solid rgba(114,211,241,.22); }
.innovation-marquee:before { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 12% 8%,rgba(36,203,235,.17),transparent 27%),radial-gradient(circle at 88% 92%,rgba(36,203,235,.12),transparent 30%),linear-gradient(rgba(103,211,239,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(103,211,239,.055) 1px,transparent 1px); background-size:auto,auto,48px 48px,48px 48px; }
.innovation-marquee:after { content:""; position:absolute; inset:22px 4% auto; height:140px; opacity:.32; pointer-events:none; background:linear-gradient(90deg,transparent 0 8%,#59d1eb 8% 8.15%,transparent 8.15% 24%,#59d1eb 24% 24.15%,transparent 24.15% 76%,#59d1eb 76% 76.15%,transparent 76.15% 92%,#59d1eb 92% 92.15%,transparent 92.15%),linear-gradient(0deg,transparent 0 35%,#59d1eb 35% 35.7%,transparent 35.7% 70%,#59d1eb 70% 70.7%,transparent 70.7%); -webkit-mask-image:linear-gradient(90deg,transparent,#000 18%,#000 82%,transparent); mask-image:linear-gradient(90deg,transparent,#000 18%,#000 82%,transparent); }
.marquee-heading { position:relative; z-index:1; display:flex; align-items:center; justify-content:center; gap:30px; margin-bottom:46px; text-align:left; }
.marquee-heading-link { color:inherit; border-radius:24px; transition:background-color .25s ease,transform .25s ease; }
.marquee-heading-link:hover { background:rgba(65,184,224,.07); transform:translateY(-2px); }
.marquee-heading-link:focus-visible { outline:3px solid #67d6ee; outline-offset:8px; }
.marquee-contest-logo { flex:0 0 auto; width:145px; height:145px; padding:8px; object-fit:contain; border:1px solid rgba(123,216,241,.3); border-radius:22px; background:transparent; box-shadow:0 18px 45px rgba(4,20,48,.25); }
.marquee-heading-copy { max-width:760px; }
.marquee-kicker { display:inline-flex; align-items:center; gap:8px; margin-bottom:9px; color:#67d6ee; font-size:12px; font-weight:700; letter-spacing:.13em; }
.marquee-heading h2 { margin:0; color:#fff; font-size:clamp(30px,4vw,44px); font-weight:700; letter-spacing:-.025em; text-shadow:0 4px 20px rgba(0,0,0,.16); }
.marquee-title-en { margin:2px 0 9px; color:#67d6ee; font-family:var(--logo-font); font-size:clamp(19px,2vw,25px); font-weight:600; letter-spacing:.015em; }
.marquee-heading p { max-width:760px; margin:0; color:#c9dcef; font-size:16px; }
.marquee-viewport { position:relative; z-index:1; width:100%; overflow:hidden; padding:8px 0; }
.marquee-viewport + .marquee-viewport { margin-top:18px; }
.marquee-viewport:before,.marquee-viewport:after { content:""; position:absolute; z-index:2; top:0; bottom:0; width:min(10vw,150px); pointer-events:none; }
.marquee-viewport:before { left:0; background:linear-gradient(90deg,#1f3b6f,transparent); }
.marquee-viewport:after { right:0; background:linear-gradient(270deg,#1f3b6f,transparent); }
.marquee-track { display:flex; width:max-content; gap:18px; padding:0 6vw; transform:translate3d(var(--marquee-x,0),0,0); will-change:transform; }
.marquee-card { position:relative; display:block; flex:0 0 280px; height:180px; margin:0; overflow:hidden; border:1px solid rgba(127,216,240,.42); border-radius:20px; background:rgba(255,255,255,.95); box-shadow:0 14px 38px rgba(4,20,48,.24); }
.marquee-card img { width:100%; height:100%; padding:10px; object-fit:contain; transition:transform .35s ease; }
.marquee-card-label { position:absolute; left:12px; bottom:11px; max-width:calc(100% - 24px); padding:5px 11px; overflow:hidden; border:1px solid rgba(215,235,246,.9); border-radius:999px; background:rgba(255,255,255,.92); color:var(--brand-navy); font-size:11px; font-weight:600; line-height:1.25; text-overflow:ellipsis; white-space:nowrap; backdrop-filter:blur(8px); }
.marquee-card:hover img { transform:scale(1.04); }
.marquee-card:hover { border-color:#67d6ee; box-shadow:0 18px 44px rgba(4,20,48,.32); }
.marquee-card:focus-visible { outline:3px solid #67d6ee; outline-offset:3px; }

.clients.section { padding-block:20px; }

.section-title { padding-bottom:45px; }
.section-title h2 { font-size:38px; font-weight:700; color:var(--brand-navy); letter-spacing:-.02em; }
.section-title h2:before,
.section-title h2:after { width:54px; height:4px; border-radius:10px; background:linear-gradient(90deg,var(--brand-blue),var(--brand-cyan)); display:inline-block; }
.section-title h2:before { margin:0 14px 8px 0; }
.section-title h2:after { margin:0 0 8px 14px; }
.section-title p { color:#6a8296; font-size:17px; }

.about .content { margin-bottom:28px; padding:32px; border:1px solid var(--brand-line); border-radius:22px; background:#fff; box-shadow:var(--shadow-soft); }
.about .content h3 { color:var(--brand-navy); font-size:25px; }
.about .content li { list-style:none; padding:10px 0 10px 34px; position:relative; border-bottom:1px dashed #e0eef5; }
.about .content li i { position:absolute; left:0; top:12px; color:#0da5c7; }
.about .content .about-btn,.team .btn-toggle { border-radius:12px; background:linear-gradient(135deg,var(--brand-navy),var(--brand-blue)); color:#fff; box-shadow:0 10px 22px rgba(5,111,169,.18); }
.stats .stats-item { padding:22px; border:1px solid var(--brand-line); border-radius:16px; background:var(--brand-ice); }
.stats .stats-item i { color:#0b9fc7; }

.portfolio .portfolio-filters { display:flex; justify-content:center; flex-wrap:wrap; gap:8px; }
.portfolio .portfolio-filters li { margin:0; padding:9px 17px; border:1px solid var(--brand-line); border-radius:999px; background:#fff; font-weight:500; }
.portfolio .portfolio-filters li:hover,.portfolio .portfolio-filters li.filter-active { color:#fff; background:linear-gradient(135deg,var(--brand-navy),var(--brand-blue)); border-color:transparent; }
.portfolio .portfolio-content { border-radius:20px; overflow:hidden; box-shadow:var(--shadow-soft); border:1px solid var(--brand-line); background:#fff; }
.portfolio .portfolio-content img { aspect-ratio:4/3; width:100%; object-fit:cover; }
.portfolio .portfolio-content .portfolio-info { background:linear-gradient(to top,rgba(3,35,62,.96),rgba(4,69,108,.75),transparent); }

.team .team-member { border:1px solid var(--brand-line); border-radius:20px; overflow:hidden; box-shadow:var(--shadow-soft); }
.team .team-member .member-img img { width:100%; aspect-ratio:1/1.02; object-fit:cover; }
.team .team-member .member-info { padding:20px 18px 23px; }
.team .team-member .member-info h4 { color:var(--brand-navy); }
.faq .faq-item { margin-bottom:14px; padding:24px 28px; border:1px solid var(--brand-line)!important; border-radius:16px; background:#fff; box-shadow:0 8px 25px rgba(7,60,101,.05); }
.faq .faq-item i { color:#0ba6c8; }

.contact {
  background-color:#063660;
  background-image:linear-gradient(135deg,rgba(6,54,96,.96),rgba(7,93,145,.91) 60%,rgba(7,151,188,.88)),url("../img/contact-bg.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover,clamp(760px,82vw,1180px) auto;
}
.contact:before { display:none; }
.contact .section-title h2,.contact .section-title p,.contact h3,.contact p { color:#fff!important; }
.contact .section-title h2:before,.contact .section-title h2:after { background:#50def0; }
.contact .info-item i { color:#073d65; background:#dff8ff; }
.contact .php-email-form { border-radius:20px; padding:28px; background:#fff; box-shadow:0 24px 60px rgba(0,22,42,.25); }
.contact .php-email-form input,.contact .php-email-form textarea { border-radius:10px; background:#f7fbfe; }
.footer { border-top:1px solid var(--brand-line); background:#f7fbfe; }
.scroll-top { background:linear-gradient(135deg,var(--brand-blue),var(--brand-cyan)); box-shadow:0 8px 24px rgba(5,141,204,.28); }

@media (max-width: 1199px) {
  .header .container-fluid { padding-left:20px; padding-right:20px; }
  .mobile-nav-toggle { color:var(--brand-navy); font-size:30px; }
  .navmenu ul { border:1px solid var(--brand-line); border-radius:18px; box-shadow:var(--shadow-soft); }
  .navmenu a,.navmenu a:focus { border-radius:9px; }
  .hero { min-height:auto; padding-top:65px; }
  .header .logo .sitename { max-width:none; font-size:15px; }
}
@media (max-width: 991px) {
  .hero { text-align:center; }
  .hero-copy { padding-right:12px; align-items:center; }
  .hero .hero-img { min-height:390px; }
  .hero-showcase { height:390px; max-width:620px; }
  .hero-trust { justify-content:center; }
}
@media (max-width: 767px) {
  .section { padding:68px 0; }
  .header .logo img { max-height:48px; }
  .header .logo .sitename { max-width:none; font-size:clamp(11px,2.8vw,14px); }
  .header .logo small { display:none; }
  .hero { padding:48px 0 64px; }
  .hero h1 { font-size:39px; }
  .hero p { font-size:16px; }
  .hero .hero-img { min-height:320px; }
  .hero-showcase { height:320px; max-width:470px; }
  .hero-actions { width:100%; }
  .hero-primary,.hero-secondary { flex:1; padding-inline:16px; }
  .hero-trust { gap:10px 18px; }
  .section-title h2 { font-size:30px; }
  .section-title h2:before,.section-title h2:after { width:32px; }
  .about .content { padding:22px 18px; border-radius:18px; }
  .faq .faq-item { padding:20px; }
  .innovation-marquee { padding:64px 0 70px; }
  .marquee-heading { flex-direction:column; gap:14px; margin-bottom:32px; padding-inline:22px; text-align:center; }
  .marquee-contest-logo { width:112px; height:112px; }
  .marquee-heading-copy { max-width:600px; }
  .marquee-heading p { font-size:14px; }
  .marquee-track { gap:12px; padding-inline:24px; }
  .marquee-card { flex-basis:220px; height:145px; border-radius:16px; }
  .marquee-viewport + .marquee-viewport { margin-top:10px; }
}
@media (max-width: 480px) {
  .hero-eyebrow { font-size:10px; }
  .hero h1 { font-size:34px; }
  .header .logo .sitename { max-width:none; font-size:clamp(10px,2.75vw,12px); }
  .hero .hero-img { min-height:270px; }
  .hero-showcase { height:270px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation:none; transform:none; }
  .hero-slide-1 { opacity:1; }
  .marquee-track { transform:none!important; will-change:auto; }
}

/* Police Innovation Contest 2026 — detail page */
.innovation-detail-page { background:#fff; }
.innovation-breadcrumb { min-height:auto; padding:20px 0; background:rgba(240,243,246,.92); border-bottom:1px solid #e0e6ec; }
.innovation-breadcrumb .breadcrumbs ol { font-size:14px; }
.innovation-breadcrumb .breadcrumbs ol li+li:before { color:#9aa8b5; }
.innovation-detail { position:relative; overflow:hidden; padding:78px 0 90px; background:#fff; }
.innovation-detail:before { display:none; }
.innovation-detail-container { position:relative; z-index:1; }
.innovation-detail-header { display:grid; grid-template-columns:minmax(0,1fr) 280px; align-items:center; gap:55px; margin-bottom:50px; text-align:left; }
.innovation-title-block { min-width:0; }
.innovation-detail-header h1 { margin:0 0 5px; color:var(--brand-navy); font-size:clamp(34px,4.5vw,54px); font-weight:700; line-height:1.25; letter-spacing:-.035em; }
.innovation-name-en { margin:0; color:var(--brand-blue); font-family:var(--logo-font); font-size:clamp(18px,2vw,24px); font-weight:500; letter-spacing:.02em; }
.innovation-competitor { width:100%; margin:0; text-align:center; }
.innovation-competitor img { display:block; width:210px; height:210px; margin:0 auto 13px; object-fit:contain; filter:drop-shadow(0 16px 18px rgba(72,103,128,.28)); }
.innovation-competitor figcaption { color:var(--brand-navy); font-size:17px; font-weight:600; line-height:1.45; }
.innovation-detail-header--two { grid-template-columns:minmax(0,1fr) minmax(420px,500px); gap:38px; }
.innovation-competitors { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); align-items:start; gap:18px; }
.innovation-competitors .innovation-competitor img { width:180px; height:180px; }
.innovation-competitors .innovation-competitor figcaption { font-size:15px; }
.innovation-detail-header.innovation-detail-header--three { grid-template-columns:minmax(0,1fr); }
.innovation-competitors.innovation-competitors--three { grid-template-columns:repeat(3,minmax(0,1fr)); width:100%; max-width:900px; margin-inline:auto; gap:clamp(8px,3vw,32px); }
.innovation-competitors--three .innovation-competitor { grid-row:auto; min-width:0; }
.innovation-competitors.innovation-competitors--three .innovation-competitor img { width:100%; max-width:210px; height:auto; aspect-ratio:1; object-fit:contain; }
.innovation-competitors.innovation-competitors--three .innovation-competitor figcaption { font-size:clamp(12px,2.3vw,17px); overflow-wrap:anywhere; }
.innovation-feature { display:flex; justify-content:center; margin-bottom:34px; }
.innovation-feature-image { width:min(100%,780px); min-height:480px; overflow:hidden; border-radius:26px; }
.innovation-feature-image img { width:100%; height:100%; padding:24px; object-fit:contain; }
.innovation-feature--winner { display:grid; grid-template-columns:minmax(0,2fr) minmax(220px,1fr); align-items:center; gap:clamp(24px,4vw,64px); max-width:1120px; margin:0 auto 56px; }
.innovation-feature--winner .innovation-feature-image { width:100%; min-height:0; border-radius:0; }
.innovation-feature--winner .innovation-feature-image img { display:block; height:auto; padding:0; }
.innovation-winner-trophy { margin:0; text-align:center; }
.innovation-winner-trophy img { display:block; width:100%; max-width:330px; height:470px; margin:0 auto; object-fit:contain; }
.innovation-winner-trophy figcaption { display:inline-block; margin-top:16px; padding:8px 24px; border-bottom:2px solid #c3a363; color:var(--brand-navy); font-size:20px; font-weight:600; }
@media (max-width:767px) {
  .innovation-feature--winner { grid-template-columns:1fr; gap:28px; margin-bottom:40px; }
  .innovation-feature--winner .innovation-feature-image { min-height:0; }
  .innovation-winner-trophy img { height:340px; max-width:260px; }
  .innovation-winner-trophy figcaption { font-size:18px; margin-top:10px; }
}
.innovation-story { display:grid; grid-template-columns:250px minmax(0,1fr); gap:45px; margin-bottom:62px; padding:0; border:0; border-radius:0; background:transparent; box-shadow:none; }
.innovation-story-title>span,.innovation-gallery-heading>div>span { color:var(--brand-blue); font-size:11px; font-weight:700; letter-spacing:.14em; }
.innovation-story-title h2,.innovation-gallery-heading h2 { margin:7px 0 0; color:var(--brand-navy); font-size:27px; font-weight:650; line-height:1.35; }
.innovation-story-content p { margin:0 0 18px; color:#4f6170; font-size:16px; line-height:1.95; }
.innovation-story-content p:last-child { margin-bottom:0; }
.innovation-gallery { padding:0; border:0; border-radius:0; background:transparent; box-shadow:none; }
.innovation-gallery-heading { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:26px; }
.innovation-gallery-heading p { margin:0; color:#8493a0; font-size:13px; }
.innovation-gallery-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.innovation-gallery-item { position:relative; overflow:hidden; border:1px solid #dce5eb; border-radius:16px; background:#eef3f6; }
.innovation-gallery-item { aspect-ratio:4/3; }
.innovation-gallery-item img { display:block; width:100%; height:100%; object-fit:cover; transition:transform .4s ease,filter .4s ease; }
.innovation-gallery-item>span { position:absolute; right:11px; bottom:11px; display:grid; width:36px; height:36px; place-items:center; border-radius:50%; background:rgba(255,255,255,.9); color:var(--brand-navy); opacity:0; transform:translateY(5px); transition:.3s ease; }
.innovation-gallery-item:hover img { transform:scale(1.045); filter:saturate(1.08); }
.innovation-gallery-item:hover>span { opacity:1; transform:none; }
.innovation-back { margin-top:34px; text-align:center; }
.innovation-back a { display:inline-flex; align-items:center; gap:9px; padding:12px 19px; border:1px solid #ccdce5; border-radius:12px; background:#fff; color:var(--brand-navy); font-weight:500; box-shadow:0 8px 24px rgba(27,52,79,.06); }
.innovation-back a:hover { color:var(--brand-blue); transform:translateY(-2px); }

@media (max-width:991px) {
  .innovation-detail { padding-top:62px; }
  .innovation-detail-header { grid-template-columns:minmax(0,1fr) 230px; gap:28px; }
  .innovation-detail-header--single { grid-template-columns:1fr; text-align:center; }
  .innovation-detail-header--single .innovation-competitor { grid-row:auto; }
  .innovation-detail-header--two { grid-template-columns:1fr; }
  .innovation-detail-header--two .innovation-title-block { text-align:center; }
  .innovation-detail-header--two .innovation-competitors { max-width:500px; margin-inline:auto; }
  .innovation-competitor img { width:180px; height:180px; }
  .innovation-feature-image { min-height:400px; }
  .innovation-story { grid-template-columns:1fr; gap:20px; }
  .innovation-gallery-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
}

@media (max-width:767px) {
  .innovation-breadcrumb { padding:14px 0; }
  .innovation-breadcrumb .breadcrumbs .current { display:none; }
  .innovation-detail { padding:52px 0 68px; }
  .innovation-detail-header { margin-bottom:32px; }
  .innovation-detail-header { grid-template-columns:1fr; gap:28px; text-align:center; }
  .innovation-detail-header h1 { font-size:32px; }
  .innovation-competitor { grid-row:1; }
  .innovation-detail-header--single .innovation-competitor { grid-row:auto; }
  .innovation-competitor img { width:170px; height:170px; }
  .innovation-competitors { grid-template-columns:1fr; gap:24px; }
  .innovation-feature-image { min-height:300px; border-radius:20px; }
  .innovation-feature-image img { padding:12px; }
  .innovation-story,.innovation-gallery { padding:0; border-radius:0; }
  .innovation-story-content p { font-size:15px; }
  .innovation-gallery-heading { display:block; }
  .innovation-gallery-heading p { margin-top:7px; }
  .innovation-gallery-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
  .innovation-gallery-item>span { opacity:1; transform:none; }
}
