/**
* Template Name: iLanding
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: Nov 12 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Inter",  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 { 
      --primary: #153898;
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d83fd; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

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

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --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);
}

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
--------------------------------------------------------------*/
.topbar{
  padding: 4px;
}
.header {
  top: 25px;
  --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;
}
/* Khi scroll */
.header.is-sticky {
  top: 0;   
}
.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

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

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  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: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

  .navmenu .dropdown: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;
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.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 70%);
}

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

@media (max-width: 1199px) {

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

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

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

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 160px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

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

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

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

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

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

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

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

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

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
:root{
  --footer-grad: linear-gradient(135deg, rgba(13,131,253,0.08), rgba(126,63,242,0.08));
  --footer-border: rgba(0,0,0,0.06);
  --footer-surface: var(--surface-color, #fff);
  --footer-text: var(--default-color, #212529);
  --footer-accent: var(--accent-color, #0d83fd);
}

/* Container spacing */
.site-footer {
  color: var(--footer-text);
  background: var(--footer-grad);
  position: relative;
  overflow: clip;
}

/* Glass card feel */
.footer-top {
  padding: 48px 0 32px;
  backdrop-filter: saturate(1.2);
}
.footer-brand .text-accent { color: var(--footer-accent); }
.footer-title {
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 12px;
  color: var(--heading-color, #2d465e);
}

/* Links */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 6px 0; }
.footer-links a {
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}
.footer-links a:hover { opacity: 1; transform: translateX(2px); }

/* Contact list */
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: baseline; margin: 6px 0; }
.footer-contact i { width: 18px; text-align: center; color: var(--footer-accent); }

/* Social icons */
.btn.btn-icon {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--footer-surface); border: 1px solid var(--footer-border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn.btn-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.footer-mini li {
  list-style: none;
  display: inline-block;
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid rgba(0,0,0,0.15);
}

.footer-mini li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}


/* Newsletter */
.newsletter-wrap {
  display: flex; align-items: center; gap: 8px;
  background: var(--footer-surface);
  border: 1px solid var(--footer-border);
  border-radius: 14px; padding: 8px 8px 8px 12px;
}
.newsletter-input {
  flex: 1; border: 0; outline: 0; background: transparent; padding: 8px 6px;
}
.newsletter-btn {
  display: inline-flex; align-items: center; border: 0; outline: 0; cursor: pointer;
  background: var(--footer-accent); color: #fff; border-radius: 10px; padding: 8px 12px;
  font-weight: 600; transition: transform .15s ease, filter .15s ease;
}
.newsletter-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.xsmall { font-size: 12px; }

/* Divider glass */
.footer-divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--footer-border), transparent);
}

/* Bottom bar */
.footer-bottom { padding: 14px 0; backdrop-filter: blur(2px); }

/* Dark background section compatibility */
.dark-background .site-footer { background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04)); }



/***********************************
  LANDING PAGE CONTACT – LIGHT THEME
  (match :root --primary / --secondary / --light)
***********************************/

/* ============ Contact Wrapper ============ */
.et-contact-form{
    background: url(../img/bg-contact.webp) no-repeat center;
    position: relative;
    padding: 0;
    background-attachment: fixed !important;
    background-size: cover !important;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* text accent */
.et-contact-form .text-gold{
  color: var(--primary);
}

/* form wrapper (glass light) */
.et-contact-form form{
  padding: 10px;
  border-radius: 14px;
}

/* ============ Inputs ============ */
.et-contact-form .form-floating-cus{
  position: relative;
}

/* inputs / select / textarea */
.et-contact-form .form-floating-cus > .form-control,
.et-contact-form .form-floating-cus > .form-select,
.et-contact-form .form-floating-cus > textarea.form-control{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  color: #0f172a;
  font-size: 14px;
  height: 58px;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
  transition:
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    transform .22s ease;
}

/* padding */
.et-contact-form .form-floating-cus > .form-control,
.et-contact-form .form-floating-cus > textarea.form-control{
  padding: .9rem 1rem;
}

/* textarea */
.et-contact-form .form-floating-cus > textarea.form-control{
  height: 140px !important;
  min-height: 140px;
  resize: vertical;
  padding-top: 1.2rem;
}

/* hover subtle */
.et-contact-form .form-floating-cus > .form-control:hover,
.et-contact-form .form-floating-cus > .form-select:hover,
.et-contact-form .form-floating-cus > textarea.form-control:hover{
  border-color: rgba(139,0,0,.22);
}

/* focus */
.et-contact-form .form-floating-cus > .form-control:focus,
.et-contact-form .form-floating-cus > .form-select:focus,
.et-contact-form .form-floating-cus > textarea.form-control:focus{
  border-color: var(--primary);
  box-shadow:
    0 0 0 .18rem rgba(139,0,0,.14),
    0 18px 42px rgba(0,0,0,.08);
  background: #fff;
  transform: translateY(-1px);
}

/* label */
.et-contact-form .form-floating-cus > label{
  color: #64748b;
  padding: .9rem 1rem;
  pointer-events: none;
  transition: all .2s ease;
}

/* hide placeholder */
.et-contact-form .form-floating-cus > .form-control::placeholder,
.et-contact-form .form-floating-cus > textarea.form-control::placeholder{
  color: transparent;
}

/* select caret polish */
.et-contact-form .form-floating-cus > .form-select{
  padding-right: 2.2rem;
}

/* ============ Button ============ */
.et-contact-form .btn-gold{
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  padding: 14px 18px;
  box-shadow: 0 14px 34px rgba(139,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.et-contact-form .btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(139,0,0,.24);
  filter: saturate(1.05);
}

/* secondary button (outline) */
.et-contact-form .btn-outline-dark-soft{
  background: #fff;
  border: 1px solid rgba(15,23,42,.14);
  color: #0f172a;
  border-radius: 14px;
  font-weight: 900;
  padding: 14px 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.et-contact-form .btn-outline-dark-soft:hover{
  transform: translateY(-2px);
  border-color: rgba(139,0,0,.22);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
}

/* ============ Responsive ============ */
@media (max-width: 767.98px){
  .et-contact-form{
    padding: 52px 0;
  }
  .et-contact-form .form-floating-cus > .form-control,
  .et-contact-form .form-floating-cus > .form-select{
    height: 52px;
    border-radius: 12px;
  }
}
/* ===============================
   CONTACT BUTTON – SKY BLUE THEME
================================ */

.btn-contact{
  /* palette xanh da trời nhẹ */
  --btn-main: #3b82f6;      /* blue-500 */
  --btn-accent: #60a5fa;   /* blue-400 */
  --btn-glow: rgba(59,130,246,.35);

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 28px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    var(--btn-main),
    var(--btn-accent)
  );
  color: #ffffff;

  font-weight: 800;
  font-size: 15px;
  letter-spacing: .03em;
  text-transform: uppercase;

  border: none;
  cursor: pointer;
  overflow: hidden;

  box-shadow:
    0 14px 36px rgba(59,130,246,.28),
    inset 0 0 0 1px rgba(255,255,255,.35);

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
}

/* ánh sáng lướt nhẹ */
.btn-contact::before{
  content:'';
  position:absolute;
  top:0;
  left:-130%;
  width:130%;
  height:100%;
  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,.6),
      transparent
    );
  transform: skewX(-20deg);
  transition: left .7s ease;
}

/* hover */
.btn-contact:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 54px rgba(59,130,246,.35),
    inset 0 0 0 1px rgba(255,255,255,.45);
  filter: saturate(1.05);
}

.btn-contact:hover::before{
  left:130%;
}

/* click */
.btn-contact:active{
  transform: translateY(0) scale(.97);
  box-shadow:
    0 10px 22px rgba(59,130,246,.28);
}

/* focus (accessibility) */
.btn-contact:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 4px rgba(59,130,246,.25),
    0 22px 54px rgba(59,130,246,.35);
}

/* loading state (optional) */
.btn-contact.is-loading{
  pointer-events:none;
  opacity:.85;
}

.btn-contact.is-loading::after{
  content:'';
  width:18px;
  height:18px;
  border:2px solid rgba(255,255,255,.6);
  border-top-color:#fff;
  border-radius:50%;
  animation: btnSpin .8s linear infinite;
}

/* spinner */
@keyframes btnSpin{
  to{ transform: rotate(360deg); }
}

/* mobile */
@media (max-width:576px){
  .btn-contact{
    width:100%;
    justify-content:center;
  }
}



/* Testimonials */
.testimonials{
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border-top: 1px solid rgba(15,23,42,.06);
}

.testimonials .t-meta{
  display:inline-block;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:.85rem;
  color:#64748b;
  margin-bottom:.6rem;
}

.testimonials .t-title{
  font-weight:900;
  line-height:1.15;
  margin-bottom:.75rem;
  color:#0f172a;
}

.testimonials .t-desc{
  max-width:720px;
  margin:0 auto;
  color:#64748b;
}

/* wrapper */
.t-wrap{
  position: relative;
  padding: 6px 0 0;
}

/* cards */
.t-card{
  height: 100%;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 46px rgba(0,0,0,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.t-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(0,0,0,.08);
  border-color: rgba(59,130,246,.25);
}

.t-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 12px;
}

.t-stars{
  display:flex;
  gap:4px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #f59e0b; /* amber-ish for stars */
}

.t-badge{
  font-size: 12px;
  font-weight: 800;
  color: #2563eb;
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.20);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.t-quote{
  margin: 0 0 14px 0;
  color: #334155;
  line-height: 1.7;
  font-weight: 600;
  position: relative;
}

.t-quote::before{
  content:"“";
  position:absolute;
  left:-6px;
  top:-16px;
  font-size: 46px;
  color: rgba(59,130,246,.18);
  font-weight: 900;
  line-height: 1;
}

.t-person{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top: 8px;
}

.t-avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(15,23,42,.10);
}

.t-name{
  font-weight: 900;
  color:#0f172a;
  line-height: 1.2;
}

.t-sub{
  font-size: 13px;
  color:#64748b;
  font-weight: 700;
}
.t-sub p{
  margin: 0 !important;
}

/* Swiper spacing */
.t-swiper{
  padding-bottom: 42px;
}

.swiper-slide{
  height: auto;
}

/* Pagination */
.t-pagination .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  opacity: .35;
}

.t-pagination .swiper-pagination-bullet-active{
  opacity: 1;
  transform: scale(1.2);
}

/* Nav buttons (custom) */
.t-controls{
  position:absolute;
  right: 10px;
  top: -54px;
  display:flex;
  gap:10px;
}

.t-prev, .t-next{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
}

.t-prev:hover, .t-next:hover{
  transform: translateY(-2px);
  border-color: rgba(59,130,246,.25);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
}

.t-prev::before, .t-next::before{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width: 10px;
  height: 10px;
  border-right: 3px solid #2563eb;
  border-bottom: 3px solid #2563eb;
  transform: rotate(135deg);
}

.t-next::before{
  transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 991.98px){
  .t-controls{ position: static; justify-content:flex-end; margin-bottom: 10px; }
}

/*********************
SERVICES
**********************/
:root{
  --services-primary:#0d83fd;
  --services-primary-soft:rgba(13,131,253,.14);
  --services-border:rgba(0,0,0,.08);
  --services-text:#111;
  --services-muted:rgba(17,17,17,.65);
  --services-shadow:0 14px 34px rgba(0,0,0,.08);
  --services-shadow-hover:0 18px 42px rgba(0,0,0,.10);
}

/* section spacing (optional) */
#services.services.section{
  position:relative;
}

/* ---------- Tabs bar ---------- */
.services-tabs{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  padding:6px;
  margin:0 auto;
  max-width:980px;
}

/* Mobile: allow horizontal scroll (looks cleaner if names are long) */
@media (max-width: 575.98px){
  .services-tabs{
    justify-content:flex-start;
    flex-wrap:nowrap;
    overflow:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .services-tabs::-webkit-scrollbar{ display:none; }
}

.services-tabs .nav-item{ margin:0; }

.services-tabs .nav-link{
  border:1px solid var(--services-border);
  border-radius:999px;
  padding:10px 14px;
  font-weight:800;
  font-size:.95rem;
  background:#fff;
  color:var(--services-text);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  position:relative;
  line-height:1;
  white-space:nowrap;
}

/* subtle indicator dot */
.services-tabs .nav-link::after{
  content:"";
  width:6px;height:6px;
  border-radius:999px;
  background:transparent;
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  transition:background .18s ease;
}

.services-tabs .nav-link:hover{
  border-color:rgba(13,131,253,.35);
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  transform:translateY(-1px);
}

/* Active */
.services-tabs .nav-link.active{
  background:var(--services-primary);
  border-color:var(--services-primary);
  color:#fff;
  box-shadow:0 12px 26px rgba(13,131,253,.25);
}

.services-tabs .nav-link.active::after{
  background:rgba(255,255,255,.9);
}

/* Focus ring */
.services-tabs .nav-link:focus,
.services-tabs .nav-link:focus-visible{
  outline:0;
  box-shadow:0 0 0 .22rem var(--services-primary-soft);
}

/* ---------- Tab content wrapper ---------- */
.services-tabs-content{
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}

/* ---------- Panel ---------- */
.services-panel{
  border:1px solid var(--services-border);
  border-radius:18px;
  padding:22px;
  background:linear-gradient(180deg, rgba(13,131,253,.04), rgba(255,255,255,1) 42%);
  box-shadow:var(--services-shadow);
}

@media (max-width: 575.98px){
  .services-panel{ padding:18px; border-radius:16px; }
}

.services-panel:hover{
  box-shadow:var(--services-shadow-hover);
}

/* Head: title/desc + CTA align nicely */
.services-panel-head{
  padding-bottom:14px;
  margin-bottom:16px;
  border-bottom:1px dashed rgba(0,0,0,.10);
}

.services-panel-head h3{
  font-size:1.25rem;
  font-weight:900;
  margin:0 0 6px 0;
}

.services-panel-head p{
  margin:0;
  color:var(--services-muted);
  line-height:1.55;
}

/* Body typography safety (in case content comes from CMS) */
.services-panel-body{
  color:var(--services-text);
}
.services-panel-body p{
  color:var(--services-muted);
  line-height:1.75;
}
.services-panel-body h4,
.services-panel-body h5{
  font-weight:900;
  margin:0 0 10px 0;
}

/* ---------- List card (if you use services-list-card in content) ---------- */
.services-list-card{
  border:1px solid var(--services-border);
  border-radius:16px;
  padding:18px;
  background:#fff;
  box-shadow:0 12px 26px rgba(0,0,0,.05);
  transition:transform .18s ease, box-shadow .18s ease;
}

.services-list-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,.08);
}

.services-list-title{
  font-weight:900;
  margin:0 0 10px 0;
}

/* list */
.services-list{
  margin:0;
  padding-left:1.1rem;
}
.services-list li{
  margin-bottom:.55rem;
  line-height:1.65;
  color:var(--services-muted);
}

/* optional: 2 columns if you add class "services-list-2col" in content */
@media (min-width: 992px){
  .services-list-2col{
    column-count:2;
    column-gap:28px;
  }
  .services-list-2col li{ break-inside:avoid; }
}

/* ---------- CTA button ---------- */
.btn-services-cta{
  border-radius:999px;
  padding:10px 16px;
  font-weight:900;
  border:1px solid rgba(13,131,253,.25);
  background:#fff;
  color:var(--services-primary);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.btn-services-cta:hover{
  background:var(--services-primary);
  border-color:var(--services-primary);
  color:#fff;
  box-shadow:0 14px 30px rgba(13,131,253,.22);
  transform:translateY(-1px);
}

.btn-services-cta:focus,
.btn-services-cta:focus-visible{
  outline:0;
  box-shadow:0 0 0 .22rem var(--services-primary-soft);
}

/* ---------- Fix Bootstrap tab-pane spacing jump (nice transition) ---------- */
.tab-pane{ animation: servicesFade .18s ease; }
@keyframes servicesFade{
  from{ opacity:.0; transform:translateY(4px); }
  to{ opacity:1; transform:translateY(0); }
}


/*********************
DOCTOR
**********************/
:root{
  --doc-primary:#0d83fd;
  --doc-text:#0f172a;
  --doc-muted:rgba(15,23,42,.68);
  --doc-border:rgba(2,6,23,.10);
  --doc-shadow: 0 14px 40px rgba(2,6,23,.08);
}

/* Title giữ nhẹ nhàng */
.doctors .doctors-meta{
  display:inline-block;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:.82rem;
  opacity:.75;
  margin-bottom:.55rem;
}
.doctors .doctors-title{
  font-weight:900;
  line-height:1.12;
  margin-bottom:.75rem;
}
.doctors .doctors-description{
  max-width:760px;
  margin:0 auto;
  opacity:.85;
}

/* Card mới */
.doc-soft-card{
  height:100%;
  display:flex;
  gap:16px;
  align-items:stretch;

  background:#fff;
  border:1px solid var(--doc-border);
  border-radius:20px;
  box-shadow: var(--doc-shadow);
  overflow:hidden;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.doc-soft-card:hover{
  transform: translateY(-3px);
  border-color: rgba(13,131,253,.22);
  box-shadow: 0 20px 60px rgba(2,6,23,.12);
}

/* Ảnh: bo tròn mềm + không rối */
.doc-soft-media{
  flex:0 0 38%;
  min-width:220px;
  background: linear-gradient(135deg, rgba(13,131,253,.10), rgba(0,0,0,.02));
  padding:14px;
  display:flex;
}
.doc-soft-media img{
  width:100%;
  height:100%;
  min-height:220px;
  object-fit:cover;
  border-radius:16px;
  display:block;
}

/* Nội dung */
.doc-soft-body{
  flex:1 1 auto;
  padding:16px 18px 18px;
  display:flex;
  flex-direction:column;
}

.doc-soft-name{
  font-size:1.15rem;
  font-weight:900;
  margin:0 0 6px 0;
  color:var(--doc-text);
}
.doc-soft-role{
  margin:0;
  color:var(--doc-muted);
  font-weight:700;
  font-size:.92rem;
}

.doc-soft-desc{
  margin-top:8px;
  color:rgba(15,23,42,.86);
  line-height:1.75;

  /* justify đẹp */
  /* text-align: justify; */
  /* text-justify: inter-word; */

  /* ngắt từ mượt, tránh khoảng trắng “lỗ chỗ” */
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;

  overflow-wrap: anywhere;   /* xử lý từ dài/URL */
  word-break: normal;
}

.doc-soft-link{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:900;
  text-decoration:none;
  color:var(--doc-primary);
  padding-top:12px;
}
.doc-soft-link:hover{
  text-decoration:underline;
}

/* Responsive */
@media (max-width: 991.98px){
  .doc-soft-card{
    flex-direction:column;
  }
  .doc-soft-media{
    flex:1 1 auto;
    min-width:unset;
  }
  .doc-soft-media img{
    min-height:260px;
  }
}


/*********************
FAQS
**********************/
.faq .faq-meta{
  display:inline-block;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.85rem;
  opacity:.75;
  margin-bottom:.6rem;
}

.faq .faq-title{
  font-weight:800;
  line-height:1.15;
  margin-bottom:.75rem;
}

.faq .faq-description{
  max-width:720px;
  margin:0 auto;
  opacity:.85;
}

/* Accordion */
.faq-accordion .faq-item{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  overflow:hidden;
  margin-bottom:12px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.faq-accordion .faq-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
  border-color: rgba(13,110,253,.18);
}

.faq-accordion .accordion-button{
  padding: 16px 18px;
  font-weight: 800;
  background: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus{
  box-shadow:none;
}

.faq-accordion .accordion-button:not(.collapsed){
  color: inherit;
  background: #fff;
}

/* remove bootstrap chevron */
.faq-accordion .accordion-button::after{
  display:none;
}

.faq-q{
  display:flex;
  align-items:center;
  gap:12px;
}

.faq-q i{
  color: var(--bs-primary);
  opacity: .95;
}

/* right icon */
.faq-icon{
  margin-left:auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(13,110,253,.10);
  color: var(--bs-primary);
  transition: transform .18s ease, background-color .18s ease;
}

.faq-button[aria-expanded="true"] .faq-icon{
  transform: rotate(45deg); /* plus -> x */
  background: rgba(13,110,253,.14);
}

.faq-body{
  padding: 0 18px 16px 18px;
  opacity: .9;
}

/* Side card */
.faq-sidecard{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 18px 46px rgba(0,0,0,.08);
  position: sticky;
  top: 110px;
}

.faq-sidebadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:10px 12px;
  background: rgba(13,110,253,.08);
  color: var(--bs-primary);
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-side-title{
  font-weight: 900;
  margin: 0 0 8px 0;
}

.faq-side-text{
  margin: 0 0 14px 0;
  opacity: .85;
}

/* Buttons (same premium style as doctors) */
.faq-side-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-bottom: 14px;
}

.faq-btn{
  border-radius:999px;
  padding:10px 14px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.faq-btn i{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:14px;
}

.faq-btn-primary{
  background: var(--bs-primary);
  color:#fff;
  box-shadow:0 10px 26px rgba(13,110,253,.20);
}

.faq-btn-primary i{
  background: rgba(255,255,255,.18);
}

.faq-btn-primary:hover{
  transform: translateY(-2px);
  box-shadow:0 16px 34px rgba(13,110,253,.28);
  color: var(--accent-color);
}

.faq-btn-ghost{
  background:#fff;
  color:#111;
  border-color: rgba(0,0,0,.10);
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}

.faq-btn-ghost i{
  background: rgba(13,110,253,.10);
  color: var(--bs-primary);
}

.faq-btn-ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(13,110,253,.22);
  box-shadow:0 16px 34px rgba(0,0,0,.08);
}

.faq-side-note{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(0,0,0,.12);
  opacity: .9;
}

/* Responsive */
@media (max-width: 991.98px){
  .faq-sidecard{
    position: static;
    top: auto;
  }
}
/* =====================================================
   TOPBAR – MARQUEE – CLEAN BUSINESS STYLE
   ===================================================== */

/* ===== TOPBAR BASE ===== */
.topbar {
  font-size: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 6px 0;
  z-index: 999;
}

/* ===== MARQUEE (COL-6 ONLY) ===== */
.topbar-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

/* Fade 2 bên */
.topbar-marquee::before,
.topbar-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 32px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.topbar-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.topbar-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* Track */
.topbar-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-left: 100%;
  animation: topbar-marquee 20s linear infinite;
}

/* Hover thì dừng */
.topbar-marquee:hover .topbar-track {
  animation-play-state: paused;
}

/* Item */
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s ease;
}

.topbar-item i {
  font-size: 13px;
  color: #0d6efd;
}

.topbar-item:hover {
  color: #0d6efd;
}

/* Divider */
.topbar-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 14px;
  background: rgba(0,0,0,.12);
  margin-left: 12px;
}

/* Animation */
@keyframes topbar-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .topbar-track {
    animation-duration: 16s;
    gap: 14px;
  }
}


/*********************
FOOTER BAGES
*********************/
.footer-badges {
    margin-top: 20px;
}

.badge-item {
    padding: 10px 5px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
}

.badge-item img {
    height: 40px;      /* nhỏ lại vừa trong col-4 */
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
    opacity: 0.9;
}

.badge-item span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: #ccc;       /* nếu footer nền tối */
}






/*******************
ACHIVEMENTS 
*******************/
/* ====== Clinic / Cardiology Flipster Section ====== */
.wrap-system{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.wrap-content{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Title */
.title-main .about-title{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #0b3a6f;
  background: rgba(13,110,253,.10);
  border: 1px solid rgba(13,110,253,.18);
}

.section-name-color{
  color: #0b3a6f !important;
  letter-spacing: .01em;
}

/* Flipster container spacing */
#et-flipster{ margin-top: 18px; }
#et-flipster ul{ list-style: none; padding: 0; margin: 0; }
#et-flipster .flipster__container{ padding: 14px 0 8px; }

/* Card */
#et-flipster .box-system{
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
  transform: translateZ(0);
}

/* Image */
#et-flipster .pic-system{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

#et-flipster .pic-system img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(.95) contrast(1.02);
  transition: transform .55s ease, filter .35s ease;
}

/* A clean “current” highlight instead of flashy effects */
#et-flipster .flipster__item--current .box-system{
  border-color: rgba(13,110,253,.35);
  box-shadow: 0 18px 45px rgba(13,110,253,.14), 0 10px 30px rgba(15,23,42,.08);
}

#et-flipster .flipster__item--current .pic-system img{
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}

/* Centered Overlay Text */
/* Overlay nằm dưới ảnh nhưng text center */
#et-flipster .info-system{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 14px 16px;
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.55) 100%
  );

  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease;
}

#et-flipster .flipster__item--current .info-system{
  opacity: 1;
  transform: translateY(0);
}

#et-flipster .info-system h5{
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
}


/* Flipster buttons -> clean medical style */
#et-flipster .flipster__button{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 12px 26px rgba(15,23,42,.12);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

#et-flipster .flipster__button:hover{
  transform: translateY(-1px);
  border-color: rgba(13,110,253,.35);
  box-shadow: 0 16px 34px rgba(13,110,253,.14), 0 12px 26px rgba(15,23,42,.12);
}

#et-flipster .flipster__button svg{
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 767px){
  .wrap-system{ padding-top: 28px; padding-bottom: 28px; }
  #et-flipster .pic-system img{ height: 200px; }
  #et-flipster .info-system h5{ font-size: 14px; }
  #et-flipster .flipster__button{ width: 40px; height: 40px; }
}









/*** About Start ***/

.about {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.about-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
}

.about-left {
    position: relative;
    flex: 1 1 0%;
    width: 50%;
}

.about-left::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 150%;
    right: 16px;
    height: 80%;
    border-radius: 87px 0px 0px 0px;
    background: var(--primary);
}

.about-slider-left {
    width: 100%;
}

.about-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    text-align: center;
    height: 380px;
}

.about-item .size-full {
    display: block;
    width: 100%;
    height: 100%;
}

.about-item img {
    border-radius: 6px;
    object-fit: cover;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
}

.about-box-content {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-gradient {
    position: absolute;
    inset: 0;
    transform: translate(0, 100%) scale(1, 1);
    background: linear-gradient(180deg, rgba(236, 11, 18, 0) 49.04%, rgba(236, 11, 18, 0.359423) 65.38%, rgba(0, 0, 0, 0.84) 100%);
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}

.about-box-content .box-content {
    position: relative;
    z-index: 10;
    transform: translate(0, 100%) scale(1, 1);
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}

.about-box-content .box-content a {
    display: block;
    padding: 16px;
    color: white;
}

.about-item:hover .about-gradient,
.about-item:hover .box-content {
    transform: translate(0, 0);
}

.about-control {
    padding: 18px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.about-control .nav-slider {
    width: 40px;
    height: 40px;
    border: 0.6px solid #A9A9A9;
    border-radius: 100%;
}

.about-control .nav-slider:hover {
    background: white;
    border-color: var(--secondary);
}

.nav-slider:hover svg path {
    stroke: var(--secondary);
}

.about-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    flex-shrink: 0;
}

.title-wrapper h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 24px;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.title-wrapper h6 {
    color: var(--primary);
    line-height: 28px;
    margin-bottom: 0;
}

.title-wrapper h2 label {
    background: linear-gradient(90deg,rgba(188, 38, 38, 1) 0%, rgba(0, 84, 166, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.group-image {
    position: absolute;
    top: 40%;
    left: 80%;
    z-index: -1;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 200px;
    height: 200px;
    opacity: .1;
}

.group-image img {
    display: block;
    position: absolute;
}

.group-image img:first-child {
    top: 0;
    left: 0;
    width: 100%;
    animation: rotation360 10s linear infinite;
}

.group-image img:last-child {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotation360 {
    0% {
        transform: rotate(0deg);
    }

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

@media (min-width: 1024px) {

    .about-wrapper {
        flex-direction: row;
    }

    .about-left::before {
        right: 10%;
        height: 100%;
        border-radius: 0 250px 250px 0px;
    }

    .about-slider {
        padding-top: 85px;
        
    }

    .about-right {
        max-width: 480px;
    }

    .group-image {
        width: 290px;
        height: 290px;
    }
}

@media (max-width: 991px) {

    .about-left {
        width: 100%;
    }

    .about-left::before {
        border-radius: 0 250px 250px 0px;
        right: -6%;
    }
}

@media (max-width: 767px) {

    .about-left {
        width: 100%;
    }

    .title-wrapper h2 {
        font-size: 22px;
    }

    .about-wrapper {
        flex-direction: column-reverse;
    }

}

/*** About End ***/