@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

/* Fonts */
:root {
  --default-font: 'Noto Sans JP', "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",  sans-serif;
  --nav-font: "Raleway",  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: #000; /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.8); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #fff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #003f9d; /* 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: #fff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(0, 0, 0, 1);  /* The default color of the main navmenu links */
  --nav-hover-color: #003f9d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: rgba(0,0,0,0.8); /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: rgba(0,0,0,0.8); /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(255, 255, 255, 0.8); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #003f9d; /* 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: #0d1d26;
  --surface-color: #16262f;
}

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

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-feature-settings: "palt";
  letter-spacing: 1px;
  line-height: 1.75em;
}

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

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

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 45px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

.header .logo img {
  max-height: 48px;
  margin-right: 10px;
}

.header .logo h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  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 {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 5px 15px 5px 30px;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 991px) {
  .header .logo h1 {
	font-size: 14px;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Montserrat', sans-serif;
}

.footer .footer-about p {
  font-size: 12px;
	font-family: var(--heading-font);
	line-height: 1.75em;
}

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-contact p a {
  color: inherit;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  font-size: 90%;
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(135deg, #0461d5 0%,#003f9d 100%);
  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);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 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 50%);
}

/*--------------------------------------------------------------
# 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 {
  padding-bottom: 60px;
  position: relative;
}

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

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin: 4px 10px;
}

#features .section-title h2::after {
	background: #ccc;
}

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

.main section {
  background-position: center center !important;
  background-repeat: no-repeat;
  background-size: 120%;           /* 初期サイズ（調整自由：100%〜130%推奨） */
  background-attachment: fixed;    /* パララックス効果を維持（削除可） */
  transition: background-size 0.1s ease; /* スムーズな変化 */
  position: relative;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  background: url(../img/bg_hero.webp) no-repeat;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.hero::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

.container,
.container-fluid {
  position: relative;
  z-index: 2;
}

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
  max-height: calc(100vh - 107px);
}

#instagram {
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    right: 10%;
	left: 0;
	z-index: 3;
}
#instagram img {
	display: block;
	max-width: 320px;
	margin: 0 auto;
	border-radius: 50%;
}
#call-to-action #instagram {
	margin: 0 0 0 auto !important;
	left: auto !important;
}

#btn_scroll {
  position: absolute;
  bottom: -150%;
}
#btn_scroll a {
  display: inline-block;
  width: 3em;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -45px;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #ffffff;
  font-size: 12px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}
#btn_scroll a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.75em;
  width: 1px;
  height: 100px;
  background: #fff;
}
#btn_scroll a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.75em;
  width: 1px;
  height: 100px;
  background: rgba(255,255,255,0.45);
}
#btn_scroll a::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media (max-width: 991px) {
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

.hero .agency-name {
  margin-bottom: 1.5rem;
}

.hero .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color);
  margin: 0;
}

.hero .main-heading {
	color: #000;
	font-weight: 600;
	line-height: 1.75em;
}

.hero .main-heading h1 {
  font-size: 2.35rem;
  font-weight: 900;
  color: #003f9d;
  letter-spacing: 5px;
  line-height: 1.5em;
  margin: 0 0 0.75rem 0;
}
.hero .main-heading h1 span {
  display: inline-block;
  background: linear-gradient(135deg, #0461d5 0%,#003f9d 100%);
  color: #fff;
  padding: 3px 15px;
  margin-bottom: 0.5rem;
}

@media (max-width: 1200px) {
  .main section {
	background-size: cover !important;
  }
  .hero .main-heading h1 {
    font-size: 1.6rem;
  }

  #btn_scroll {
    bottom: -100%;
  }
}

@media (max-width: 767px) {
  .main section, .footer {background-attachment: unset !important; padding: 10% 5%;}
  .footer .footer-top {padding-top: 0;}
  .hero .main-heading h1 {
	font-size: 1.6rem;
  }
  #btn_scroll {
    bottom: -75%;
	}
  .blockchain-earth {
	transform: translateY(-75%) !important;
  }
}

@media (max-width: 480px) {
  .hero .main-heading h1 {
    font-size: 1.6rem;
  }
  #instagram {
	max-width: 300px !important;
	transform: translateY(-50%) !important;
  }
}

.hero .divider {
  width: 60%;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero .divider {
    width: 100%;
  }
}

.hero .description {
  margin-bottom: 2.5rem;
}

.hero .description p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.hero .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
  color: var(--default-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero .cta-button .btn span {
  margin-right: 0.5rem;
}

.hero .cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

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

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

.hero .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero .visual-content {
    flex-direction: column;
  }
}

.fluid-shape {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#past-events .fluid-shape {
  max-width: 500px;
}
.hero .fluid-shape img {
	max-width: 500px;
}
.hero .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.hero .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero .stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    width: 90%;
  }
}

.hero .stats-card .stats-number h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero .stats-card .stats-label {
  margin-top: 0.5rem;
}

.hero .stats-card .stats-label p {
  font-size: 0.9rem;
  margin: 0;
}

.hero .stats-card .stats-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hero .stats-card .stats-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero .stats-card .stats-arrow a:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.hero-video {
	position: absolute;
	top: 0;
	right: 0;
}

#news, .call-to-action {
	background: linear-gradient(
    90deg,
    #4b00e0 0%,
    #8a00ff 18%,
    #d500f9 36%,
    #ff00cc 50%,
    #ff4081 65%,
    #ff6e40 82%,
    #ffb300 100%
		);
	border-radius: 0 !important;
}
#news .col-lg-12 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sub #news {
	background: inherit !important;
}
#news .testimonial-item p span {
	display: inline-block;
	font-family:"Times";
	font-size: 90%;
	min-width: 130px;
}
#news a {
	color: #fff;
}
.sub p, .sub ul, .sub ul li, .sub ol, .sub ol li, .sub dl, .sub dl dt, .sub dl dd, .sub table {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75em;
}
.sub #news .testimonial-item p {
	font-size: 90%;
	color: #cbcbcb;
}
.sub #news .testimonial-item p span, .sub #news .testimonial-item p strong {
	display: block;
	color: var(--heading-color);
}
.sub #news .testimonial-item p strong {
	font-size: 120%;
	margin: 5px 0;
}
.bg_news {
	background: url(../img/services/service_01.webp) no-repeat;
	background-size: cover !important;
    background-position: center
}
.page-title {
	position: relative;
}
.page-title:before {
	display: block;
	width: 100%;
	height: 100%;
	content: '';
	background: rgba(0,0,0,0.65);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
}

.about .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  #news .testimonial-item p span {display: block;}
  .about .about-image .experience-badge {
    right: 0;
    bottom: 20px;
    padding: 1rem;
    min-width: 120px;
  }

  .about .about-image .experience-badge .years {
    font-size: 2rem;
  }
}

.about .about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .about-content h2 {
    font-size: 1.8rem;
  }
}
	
.col-md-6 img {
	display: block;
	max-width: 100%;
}
	
#past-events .section-title h2::after {
	background: #fff;
}
#past-events img {
	display: block;
	max-width: 640px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
#top #past-events img {
	max-width: 480px;
}
.bg_service {
	background: url(../img/services/bg_service.webp) no-repeat;
	background-size: cover !important;
    background-position: center
}
.bg_corporate {
	background: url(../img/corporate/bg_corporate.webp) no-repeat;
	background-size: cover !important;
    background-position: center
}
#past-events .row img, #corporate .row img {
	width: 96%;
	height: auto;
	object-fit: cover;
}	
.service-summary ul, .event-summary ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.service-summary ul li, .event-summary ul li {
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	font-size: 120%;
	font-weight: 600;
	letter-spacing: 2px;
	padding: 45px 30px;
	margin-bottom: 20px;
	position: relative;
	box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #999;
}
.event-summary ul li:nth-child(1), .event-summary ul li:nth-child(2), .event-summary ul li:nth-child(3), .event-summary ul li:nth-child(4) {
	background: url(../img/event/event_01.webp) no-repeat;
	background-size: cover !important;
    background-position: center !important;
}
.event-summary ul li:nth-child(2) {
	background: url(../img/event/event_02.webp) no-repeat;
}
.event-summary ul li:nth-child(3) {
	background: url(../img/event/event_03.webp) no-repeat;
	background-position: bottom;
}
.event-summary ul li:nth-child(4) {
	background: url(../img/event/event_04.webp) no-repeat;
}
.event-summary ul li span, .event-summary ul li span strong {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 1;
}
.event-summary ul li::after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.65);
	position: absolute;
	top: 0;
	left: 0;
	mix-blend-mode: multiply;
}
.service-summary ul li span, .event-summary ul li span {
	font-size: 14px;
	line-height: 1.5em;
}
.service-summary ul li span strong, .event-summary ul li span strong {
	display: block;
	font-size: 20px;
	margin-bottom: 1rem;
}

#features {
	background: #fafafa;
}
#features, #features h2 {
	color: #0c1f2e;
}
#features .section-title div {
	color: var(--accent-color);
}
#features .service-card {
	background: #efefef;
	background-size: cover !important;
	min-height: 226px;
	text-align: center;
	padding: 40px 20px;
	overflow: hidden;
	border: none;
}
.sub .justify-content-center > div {
	padding-left: 0;
	padding-right: 0;
}
#features .justify-content-center .aos-init:nth-child(1) .service-card {
	background: url(../img/features/bg_features_01.webp);
}
#features .justify-content-center .aos-init:nth-child(2) .service-card {
	background: url(../img/features/bg_features_02.webp);
}
#features .justify-content-center .aos-init:nth-child(3) .service-card {
	background: url(../img/features/bg_features_03.webp);
}
#features .justify-content-center .aos-init:nth-child(4) .service-card {
	background: url(../img/features/bg_features_04.webp);
}
#features .service-card h3 a {
	display: block;
	line-height: 1.5em;
	font-size: 14px;
	color: #ddd;
}
#features .service-card img {
	display: block;
	width: 100%;
	height: 140px;
	object-fit: cover;
	margin: 0 auto 20px auto;
}
.sub .section-title {
	margin-top: 60px;
}
.bg_tech {
	background: url(../img/tech/bg_tech.webp) no-repeat;
	background-size: cover !important;
    background-position: center
}
#features .service-summary {
	margin-top: 20px;
}
#features .service-summary ul li {
	width: 48%;
}
#features .service-summary ul li:nth-child(odd) {
	margin-right: 2%;
}
#features .service-summary ul li span::before {
	display: none;
}
#features .service-summary ul li span strong, #features .service-summary ul li span small {
	display: block;
	font-size: 16px;
}
#features .service-summary ul li span small {
	font-size: 100%;
	color: #ddd;
	margin-top: 10px;
}
#features .service-summary ul li:nth-child(1) {
    background: url(../img/features/bg_features_01.webp) no-repeat;
}
#features .service-summary ul li:nth-child(2) {
    background: url(../img/features/bg_features_02.webp) no-repeat;
}
#features .service-summary ul li:nth-child(3) {
    background: url(../img/features/bg_features_03.webp) no-repeat;
}
#features .service-summary ul li:nth-child(4) {
    background: url(../img/features/bg_features_04.webp) no-repeat;
}

/* 背景動画 */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    object-fit: cover;
	-webkit-playsinline: true;
	mix-blend-mode: multiply;
    opacity: 0.15;
    z-index: -1;
}

#event {
	background: url(../img/event/bg_event.webp) no-repeat;
	background-attachment: fixed;
	background-size: cover !important;
	background-position: center !important;
	position: relative;
}
#event::after {
	display: block;
	content: '';
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#event .container {
	position: relative;
}
#event .container:nth-child(1) {
	margin-bottom: 2em;
}
#event h2 {
	font-weight: 900;
	text-align: center;
	background: linear-gradient(
        90deg,
        #ff4da6 0%,
        #c84dff 25%,
        #4d9fff 45%,
        #00f0ff 70%,
        #00f0ff 100% 
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 10px 20px rgba(0, 240, 255, 0.3));
}
#event .container img {
	display: block;
	width: 100%;
	max-width: 640px;
	margin: 40px auto;
}
#event table {
		width: 80% !important;
		margin: 0 10% 5% 10%;
}
#event table tr th,
#event table tr td {
  text-align: left;
  padding: 20px;
  border-bottom: 1px solid #555;
}

#event table tr th {
  width: 30%;
  border-color: #999;
}

#event table tr:last-child th,
#event table tr:last-child td {
  border: none;
  padding-bottom: 0;
}

#event table {
  width: 100%;
}

#event table tr th,
#event table tr td {
  padding: 20px 30px;
  border-bottom: 1px solid #555;
}

#event table tr th {
  border-color: #999;
}

#event table tr:last-child th,
#event table tr:last-child td {
  border: none;
  padding-bottom: 0;
}

hr {
	margin: 3rem 0;
}
	
#pes {
	background: url(../img/pes/bg_pes.webp) no-repeat;
	text-shadow: 0 0 4px rgba(27, 38, 44, 0.3), 0 0 10px rgba(27, 38, 44, 0.5);
}
#pes::before {
	display: block;
	content: '';
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
#pes h2 {
	color: #fff;
}
#pes h2::after {
	background: #fff;
}
#pes .text-center a {
	padding: 10px 45px;
    color: #fff !important;
    border: 1px solid #fff;
    border-radius: 45px;
}
#pes .text-center a:after {
	display: none;
}
#pes .about-image > div {
	background: #fcff1d;
}
#pes .about-image > div img {
	display: block;
	max-width: 320px;
	margin: 0 auto;
	padding: 90px 30px;
	box-shadow: none !important;
}

.about .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.about .about-content p {
  font-weight: 600;
  margin-bottom: 1rem;
}

.about .about-content .feature-item {
  padding: 1.25rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.about .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .about-content .feature-item i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}

.about .about-content .feature-item h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.about .about-content .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about .about-content .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: var(--contrast-color);
}

.about .about-content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.about .testimonial-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about .testimonial-section .testimonial-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.about .testimonial-section .testimonial-intro p {
  margin-bottom: 1.5rem;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons {
  display: flex;
  gap: 10px;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button i {
  font-size: 1.25rem;
}

.about .testimonial-section .testimonial-slider {
  overflow: hidden;
}

.about .testimonial-section .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.about .testimonial-section .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about .testimonial-section .testimonial-item .rating {
  color: #ffc107;
  font-size: 1rem;
}

.about .testimonial-section .testimonial-item p {
  font-style: italic;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.about .testimonial-section .testimonial-item .client-info .client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.about .testimonial-section .testimonial-item .client-info h6 {
  font-weight: 600;
}

.about .testimonial-section .testimonial-item .client-info span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-header {
  margin-bottom: 60px;
}

.services .service-header .service-intro .service-heading {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.services .service-header .service-intro .service-heading div {
  display: block;
  position: relative;
}

.services .service-header .service-intro .service-heading span {
  display: block;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services .service-header .service-intro .service-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  br {display: none;}
  .text-center {text-align: left !important;}
  #event .text-center span {display: block; text-align: center;}
  .header .logo, .header .logo h1 {width: 100%; height: 48px;}
  .header .logo img {
	max-height: 48px;
    position: absolute;
    left: 0;
	right: 0;
    margin: 0 auto;
  }
  .hero {display: block; padding-top: 100px !important;}
  .hero .main-heading h1 {letter-spacing: 1px;}
  .hero .main-heading h1 span {margin: 0.5rem 0 0 0;}
  .hero .main-heading br {display: block;}
  .hero .main-heading p:last-child {margin-bottom: 0;}
  .sub p, .sub ul, .sub ul li, .sub ol, .sub ol li, .sub dl, .sub dl dt, .sub dl dd, .sub table {font-size: 14px;}
  #past-events .row img, #corporate .row img {
	width: 100%;
	height: 230px;
	margin-bottom: 20px;
  }
  #event table {
	width: 100% !important;
    font-size: 14px;
  	table-layout: fixed;
	margin: 0 0 5% 0;
  }
  #event table tr th, #event table tr td {
  	padding: 20px 15px;
  }
  #event table tr th {
  	width: auto;
  }
  .services .service-header .service-intro .service-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
  #top #past-events img {
    max-width: 240px;
    height: auto;
  }
  .section-title {
	padding-bottom: 30px;
  }
  .section-title div {
	font-size: 24px;
  }
  .service-summary ul li span, .event-summary ul li span {
    line-height: 1.75em;
  }
  .event-summary {
  	margin-bottom: 2rem;
  }
  .event-summary ul li {
	margin-bottom: 30px;
  }
  .visual-content {
  	text-align: center;
  }
  .fluid-shape {
  	max-width: 320px !important;
  }
  #instagram {
  	position: static;
    transform: none !important;
  }
  .cta-buttons .btn {
  	margin: 1em auto 0 auto !important;
  }
  #instagram img {
	max-width: 240px;
	margin: 20px auto;
  }
  #pes .about-image > div img {
  	max-width: 200px;
  	padding: 60px 30px;
  }
  #pes h2::after {display: none;}
}

.services .service-header .service-summary p {
  margin-bottom: 25px;
  color: var(--default-color);
}

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

.services .service-header .service-summary .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

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

.services .service-header .service-summary .service-btn:hover i {
  transform: translateX(5px);
}

#policy, #csr, #carrer, #info {
	padding-bottom: 0;
}
#csr, #carrer, #info {
	padding-top: 0;
}
@media (max-width: 380px) {.hero .main-heading h1 span {letter-spacing: 0;}}
@media (max-width: 992px) {
  .services .service-header .service-summary {
    margin-top: 30px;
  }
}

.services .service-card {
  padding: 40px 40px 40px 40px;
  margin-bottom: 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.services .service-card .service-icon {
  margin-bottom: 25px;
  background-color: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 64px;
  height: 64px;
}

.services .service-card .service-icon i {
  font-size: 32px;
  color: #fff;
  transition: all 0.3s ease;
}

.services .service-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 15px;
}

.services .service-card h3 {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.services .service-card h3 span {
  display: block;
}

.services .service-card p {
  color: var(--default-color);
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.services .service-card .card-action {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.services .service-card .card-action i {
  font-size: 24px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

.services .service-card .card-action:hover i {
  transform: rotate(45deg);
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-color);
  clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.services .service-card::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  position: absolute;
  top: 0;
  left: 0;
}
.services .service-card .service-icon, .services .service-card a, .services .service-card h3 {
 position: relative;
  z-index: 1;
}

.services .service-card:hover h3 a {
  color: #ddd !important;
}

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

.services .service-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services .service-card:hover .service-icon i {
  transform: scale(1.1);
}

.services .col-lg-3 p {
  font-size: 14px;
  line-height: 1.75em;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .services .service-card {
	padding: 150px 25px 25px;
  }
  .services .service-card .service-icon {
	margin-bottom: 15px;
  }
  .services .service-card h3 {
    font-size: 18px;
  }
  #features .col-lg-3 {
	margin-bottom: 2rem;
  }
  #features .col-lg-3:last-child {
	margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  body {font-size: 0.85rem;}
  .services {
    padding: 70px 0 50px;
	}
  #features .service-card {
	max-height: 102px;
	margin-bottom: 0;
	}
  .services .service-card h3 {
	margin-bottom: 0;	
	}
  .services .service-card h3 span {
	display: block;	
  }
  #features .col-lg-3 .features_txt {
	background: rgba(0,63,157,0.035);
	padding: 1.25rem;
	border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  #features .col-lg-3 .features_txt p:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 80px;
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 80px;
}

.call-to-action .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action h2 {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto 30px auto;
}

.call-to-action p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action .features .feature-item:hover {
  transform: translateY(-2px);
}

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

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

.cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  margin: 1em auto 0 auto;
}
.call-to-action .cta-buttons .btn {
  margin: 1em 0;
}

.cta-buttons .btn.btn-primary {
  background-color: transparent;
  border-color: var(--contrast-color);
  color: var(--contrast-color);
  min-width: 180px;
  border-radius: 45px;
  position: relative;
  z-index: 1;
}

.cta-buttons .btn.btn-primary:hover, #pes .text-center a:hover {
  background: linear-gradient(135deg, #0461d5 0%,#003f9d 100%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

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

.call-to-action .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action .decoration .circle-1,
.call-to-action .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}
	
.text-center a {
  display: inline-block;
  position: relative;
}
.text-center a:after {
	content: '';
	width: 2em;
	height: 0.45em;
	border-bottom: solid 1px;
	border-right: solid 1px;
	transform: skew(45deg);
	position: absolute;
	right: -2.3em;
    top: 0.5em;
   transition: 0.5s ease-out;
}
.text-center a:hover:after {
	right: -3em;
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 2rem;
  }

  .call-to-action .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

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

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

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/

.feature-list {
  list-style: none;
  padding-left: 0;
}
.main-heading .feature-list, #about .feature-list, #corporate .feature-list {
  padding: 0.75em 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.feature-list li {
  display: flex;
  align-items: center;
  padding: 6px 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1em;
}

.feature-list li i::before {
	-webkit-text-fill-color: transparent;
    filter: drop-shadow(rgba(0, 240, 255, 0.3) 0px 10px 20px);
    background: linear-gradient(90deg, rgb(255, 77, 166) 0%, rgb(200, 77, 255) 25%, rgb(77, 159, 255) 45%, rgb(0, 240, 255) 70%, rgb(0, 240, 255) 100%) text;
}

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