/*--------------------------------------------------------------
# Design Tokens
--------------------------------------------------------------*/
:root {
  /* Brand */
  --clr-pink:         #e80368;
  --clr-pink-dark:    #c8025a;
  --clr-purple:       #9E76B4;
  --clr-purple-dark:  #7d5a93;
  --clr-ink-deep:     #434175;
  --clr-ink:          #444444;
  --clr-ink-subtle:   #666666;

  /* Surfaces */
  --clr-bg:           #ffffff;
  --clr-surface:      #f8f8ff;
  --clr-surface-alt:  #eeeef5;
  --clr-border:       #e8e8f5;

  /* Easing */
  --ease-out-quart:   cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:    cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-index scale */
  --z-dropdown:    100;
  --z-header:      200;
  --z-overlay:     300;
  --z-nav-mobile:  400;
  --z-float:       500;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'THSarabunNew';
  color: var(--clr-ink);
}

a {
  color: var(--clr-pink);
}

a:hover {
  color: var(--clr-pink-dark);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'THSarabunNew';
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: var(--z-float);
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--clr-purple);
  color: #fff;
  transition: background 0.4s var(--ease-out-quart);
}

.back-to-top i:hover {
  background: var(--clr-pink);
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: padding 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart), border-color 0.4s var(--ease-out-quart);
  z-index: var(--z-header);
  padding: 14px 0;
  background: #fff;
  border-bottom: 1px solid rgba(67, 65, 117, 0.1);
}

#header.header-scrolled, #header.header-inner-pages {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(67, 65, 117, 0.1);
  border-bottom-color: transparent;
}

#header .logo {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}


@media (max-width: 992px) {
  #header {
    padding: 10px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 6px 0 6px 20px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: var(--clr-ink-deep);
  transition: color 0.25s var(--ease-out-quart);
  font-size: 14px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}

/* Animated underline indicator */
.nav-menu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--clr-pink);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-out-quart);
}

.nav-menu > ul > li > a:hover,
.nav-menu .active > a,
.nav-menu > ul > li:hover > a {
  color: var(--clr-pink);
}

.nav-menu > ul > li > a:hover::after,
.nav-menu .active > a::after {
  transform: scaleX(1);
}

.nav-menu a:focus-visible {
  outline: 2px solid var(--clr-pink);
  outline-offset: 3px;
  border-radius: 2px;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 16px);
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  padding: 6px 0;
  background: #fff;
  border-radius: 10px;
  border-top: 2px solid var(--clr-pink);
  box-shadow: 0 8px 32px rgba(67, 65, 117, 0.14);
  transition: opacity 0.25s var(--ease-out-quart), top 0.25s var(--ease-out-quart), visibility 0.25s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 500;
  text-transform: none;
  color: var(--clr-ink-deep);
  transition: color 0.2s var(--ease-out-quart), background 0.2s var(--ease-out-quart);
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: var(--clr-pink);
  background: rgba(232, 3, 104, 0.04);
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}


/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 14px;
  top: 12px;
  z-index: calc(var(--z-nav-mobile) + 1);
  border: 0;
  background: var(--clr-surface);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.25s var(--ease-out-quart), color 0.25s var(--ease-out-quart);
  outline: none;
  cursor: pointer;
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid var(--clr-pink);
  outline-offset: 2px;
}

.mobile-nav-toggle i {
  color: var(--clr-ink-deep);
}

.mobile-nav-toggle:hover {
  background: rgba(232, 3, 104, 0.08);
}

.mobile-nav-toggle:hover i {
  color: var(--clr-pink);
}

.mobile-nav {
  position: fixed;
  top: 58px;
  right: 12px;
  bottom: auto;
  left: 12px;
  z-index: var(--z-nav-mobile);
  overflow-y: auto;
  background: #fff;
  transition: opacity 0.25s var(--ease-out-quart), transform 0.25s var(--ease-out-quart), visibility 0.25s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  border-radius: 14px;
  padding: 8px 0 12px;
  box-shadow: 0 8px 40px rgba(67, 65, 117, 0.16);
  border-top: 2px solid var(--clr-pink);
  max-height: calc(100vh - 80px);
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: var(--clr-ink-deep);
  padding: 11px 22px;
  font-weight: 500;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  outline: none;
  transition: color 0.2s var(--ease-out-quart), background 0.2s var(--ease-out-quart);
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: var(--clr-pink);
  background: rgba(232, 3, 104, 0.04);
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 0;
  margin-left: 22px;
}

.mobile-nav .drop-down li a::before {
  content: '–';
  margin-right: 8px;
  opacity: 0.35;
  font-style: normal;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: var(--z-overlay);
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(36, 35, 70, 0.5);
  backdrop-filter: blur(2px);
  overflow: hidden;
  display: none;
  transition: opacity 0.25s var(--ease-out-quart);
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-active .mobile-nav-toggle {
  background: var(--clr-pink);
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: white;
  border-bottom: 2px solid white;
}

#hero .container {
  padding-top: 80px;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #434175;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero ul {
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

#hero ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

#hero ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #5a5af3;
}

#hero .btn-get-started, #hero .btn-get-quote {
  font-family: 'THSarabunNew';
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  margin-bottom: 15px;
  border-radius: 3px;
  transition: 0.5s;
  border-radius: 50px;
}

#hero .btn-get-started {
  background: var(--clr-purple);
  color: #fff;
  border: 2px solid #6a6aac;
  margin-right: 10px;
}

#hero .btn-get-started:hover {
  background: var(--clr-purple-dark);
  border-color: var(--clr-purple-dark);
}

#hero .btn-get-quote {
  color: var(--clr-pink);
  border: 2px solid var(--clr-pink);
}

#hero .btn-get-quote:hover {
  background: var(--clr-pink);
  color: #fff;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero {
    text-align: center;
  }
  #hero ul {
    text-align: left;
    font-size: 14px;
  }
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started, #hero .btn-get-quote {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: var(--clr-surface-alt);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--clr-purple);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--clr-pink);
  bottom: 0;
  left: calc(50% - 25px);
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 50px;
  margin-bottom: 20px;
  color: #434175;
}

.about .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #5a5af3;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding-top: 0;
}

.why-us .box {
  padding: 40px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.why-us .box span {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #b9b9fa;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #434175;
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: var(--clr-purple);
  padding: 40px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0 60px;
}

.counts .count-box {
  padding: 30px 20px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: var(--clr-pink);
  padding: 12px;
  color: #fff;
  border-radius: 50px;
}

.counts .count-box span {
  font-size: 26px;
  display: block;
  font-weight: 600;
  color: #0c0ca8;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #434175;
  transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 60px 0;
}

.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.features .icon-box i {
  font-size: 18px;
  padding-right: 10px;
  line-height: 1;
}

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

.features .icon-box h3 a {
  color: #434175;
  transition: ease-in-out 0.3s;
}

.features .icon-box:hover h3 a {
  color: #5a5af3;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #5a5af3;
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: top 0.5s var(--ease-out-expo), left 0.5s var(--ease-out-expo);
  z-index: 5;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: bottom 0.5s var(--ease-out-expo), right 0.5s var(--ease-out-expo);
  z-index: 5;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #434175;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #434175;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #5a5af3;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #1313ee;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

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

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.team .member .social a {
  transition: color 0.3s;
  color: #434175;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #5a5af3;
}

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

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

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

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #5a5af3;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #5a5af3;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

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

.pricing .btn-buy {
  background: #434175;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
  border: none;
}

.pricing .btn-buy:hover {
  background: #5a5af3;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .btn-buy {
  background: #5a5af3;
}

.pricing .featured .btn-buy:hover {
  background: #7272f5;
}

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

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

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

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0 100px;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  color: #5a5af3;
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #5a5af3;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #5a5af3;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #5a5af3;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: #fff;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 5px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #5a5af3;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #5a5af3;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #7272f5;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f1f1f7;
  min-height: 40px;
  margin-top: 90px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  color: var(--clr-purple);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #565396;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #5a5af3 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

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

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

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

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

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #eeeef5;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: var(--clr-pink);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: 'THSarabunNew';
  color: var(--clr-ink-subtle);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--clr-ink-deep);
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--clr-pink);
  font-size: 14px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: var(--clr-ink-subtle);
  transition: color 0.3s var(--ease-out-quart);
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--clr-pink);
}

#footer .footer-newsletter {
  font-size: 15px;
}

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #b9b9fa;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #5a5af3;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #7272f5;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .credits a {
  transition: 0.3s;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #deddec;
  color: var(--clr-purple);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: background 0.3s var(--ease-out-quart), color 0.3s var(--ease-out-quart);
}

#footer .social-links a:hover {
  background: var(--clr-pink);
  color: #fff;
  text-decoration: none;
}



.responsive {
  width: 100%;
  height: auto;
}

video {
  /* override other styles to make responsive */
  width: 100%    !important;
  height: auto   !important;
}

.btn-pink{color:#fff;background-color:#e80368;;border-color:#e80368;}
.btn-pink:hover{color:#fff;background-color:#e80368;;border-color:#e80368;}
.btn-pink.focus,
.btn-pink:focus{color:#fff;background-color:#e80368;;border-color:#e80368;;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}
.btn-pink.disabled,.btn-info:disabled{color:#fff;background-color:#e80368;;border-color:#17a2b8}
.btn-pink:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>
.btn-pink.dropdown-toggle{color:#fff;background-color:#e80368;;border-color:#e80368;}
.btn-pink:not(:disabled):not(.disabled).active:focus,
.btn-pink:not(:disabled):not(.disabled):active:focus,.show>
.btn-pink.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}

/*--------------------------------------------------------------
# Logo Link
--------------------------------------------------------------*/
#header .logo a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-quart), filter 0.3s var(--ease-out-quart);
}

#header .logo a:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
  filter: drop-shadow(0 2px 6px rgba(232, 3, 104, 0.35));
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-icon {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(232, 3, 104, 0.25));
}

#header .logo a:hover {
  text-decoration: none;
}

.logo-wordmark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1;
  color: var(--clr-pink);
  font-family: "Poppins", sans-serif;
  transition: color 0.25s var(--ease-out-quart);
}

#header .logo a:hover .logo-wordmark {
  color: var(--clr-pink-dark);
}

.logo-accent {
  color: var(--clr-purple);
}

.logo-subtitle {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--clr-purple);
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  opacity: 0.75;
  transition: opacity 0.25s var(--ease-out-quart);
}

#header .logo a:hover .logo-subtitle {
  opacity: 1;
}

.logo-subtitle--th {
  font-family: 'THSarabunNew', sans-serif;
  text-transform: none;
  letter-spacing: 0.3px;
  font-size: 11px;
}

/*--------------------------------------------------------------
# Hero Banner
--------------------------------------------------------------*/
.hero-banner {
  position: relative;
  padding-top: 68px;
  overflow: hidden;
}

.hero-banner img {
  display: block;
}

.hero-badge {
  display: none;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(232, 3, 104, 0.88);
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.hero-badge span {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.hero-badge strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero-badge {
    display: block;
  }
}

@media (max-width: 991px) {
  .hero-banner {
    padding-top: 60px;
  }
}

/*--------------------------------------------------------------
# Info Cards Section
--------------------------------------------------------------*/
.info-cards-section {
  padding: 60px 0;
  background: var(--clr-surface);
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px 28px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s var(--ease-out-quart), border-color 0.3s var(--ease-out-quart);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 4px solid transparent;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(158, 118, 180, 0.2);
  border-bottom-color: var(--clr-pink);
}

.info-card .card-number {
  font-size: 52px;
  font-weight: 700;
  color: #eeeef8;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  letter-spacing: -2px;
}

.info-card .card-icon {
  font-size: 40px;
  color: var(--clr-purple);
  margin-bottom: 14px;
  line-height: 1;
}

.info-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.5;
}

.info-card .card-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: auto;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-card-primary {
  background: var(--clr-pink);
  color: #fff;
}

.btn-card-primary:hover {
  background: var(--clr-pink-dark);
  color: #fff;
  text-decoration: none;
}

.btn-card-secondary {
  background: var(--clr-purple);
  color: #fff;
}

.btn-card-secondary:hover {
  background: var(--clr-purple-dark);
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Curriculum Section
--------------------------------------------------------------*/
.curriculum-section {
  padding: 60px 0;
}

.doc-link-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(232, 3, 104, 0.12);
  border-top: 3px solid var(--clr-pink);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: var(--clr-ink);
  transition: color 0.25s var(--ease-out-quart), box-shadow 0.25s var(--ease-out-quart), transform 0.25s var(--ease-out-quart);
  height: 100%;
}

.doc-link-card:hover {
  color: var(--clr-pink);
  box-shadow: 0 6px 24px rgba(232, 3, 104, 0.13);
  text-decoration: none;
  transform: translateY(-2px);
}

.doc-link-card i {
  font-size: 26px;
  color: var(--clr-pink);
  flex-shrink: 0;
  margin-top: 2px;
}

.doc-link-card span {
  font-size: 15px;
  line-height: 1.55;
}

.rules-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-purple);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--clr-border);
}

/*--------------------------------------------------------------
# Videos Section
--------------------------------------------------------------*/
.videos-section {
  padding: 60px 0;
}

.video-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
  height: 100%;
}

.video-card video {
  display: block;
  width: 100% !important;
  height: auto !important;
  background: #000;
}

.video-card .embed-responsive {
  width: 100%;
}

.video-card .video-caption {
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--clr-pink), var(--clr-purple));
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/*--------------------------------------------------------------
# FAQ New Section
--------------------------------------------------------------*/
.faq-new-section {
  padding: 60px 0;
}

.faq-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(158, 118, 180, 0.18);
  border-top: 3px solid var(--clr-purple);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #333;
  transition: color 0.3s var(--ease-out-quart), box-shadow 0.3s var(--ease-out-quart), transform 0.3s var(--ease-out-quart), border-color 0.3s var(--ease-out-quart);
  height: 100%;
}

.faq-card:hover {
  color: var(--clr-pink);
  box-shadow: 0 8px 28px rgba(232, 3, 104, 0.15);
  text-decoration: none;
  transform: translateY(-4px);
  border-top-color: var(--clr-pink);
}

.faq-card-icon {
  font-size: 44px;
  color: var(--clr-purple);
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.3s var(--ease-out-quart);
}

.faq-card:hover .faq-card-icon {
  color: var(--clr-pink);
}

.faq-card-body {
  flex: 1;
}

.faq-card-body h4 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
}

.faq-card-body p {
  margin: 0;
  font-size: 14px;
  color: var(--clr-ink-subtle);
}

.faq-card-arrow {
  font-size: 20px;
  color: #ccc;
  flex-shrink: 0;
  transition: color 0.3s var(--ease-out-quart), transform 0.3s var(--ease-out-quart);
}

.faq-card:hover .faq-card-arrow {
  color: var(--clr-pink);
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Footer (updated)
--------------------------------------------------------------*/
#footer .footer-top .footer-contact h3 span {
  color: var(--clr-purple);
}

/*--------------------------------------------------------------
# Responsive Utilities
--------------------------------------------------------------*/
@media (max-width: 576px) {
  .info-card {
    padding: 24px 20px 20px;
  }

  .info-card .card-number {
    font-size: 40px;
  }

  .info-card .card-icon {
    font-size: 32px;
  }

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

  .faq-card-body h4 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    padding-top: 65px;
  }

  .hero-banner img {
    max-height: none;
  }
}

/*--------------------------------------------------------------
# Page Breadcrumbs (sub-pages)
--------------------------------------------------------------*/
.page-breadcrumbs {
  margin-top: 68px;
  background: linear-gradient(135deg, var(--clr-purple) 0%, var(--clr-pink) 100%);
  padding: 18px 0;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.38);
  color: #fff;
  text-decoration: none;
}

.page-title {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .page-breadcrumbs {
    margin-top: 66px;
  }
}

@media (max-width: 576px) {
  .breadcrumb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .page-title {
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
# PDF Viewer Section
--------------------------------------------------------------*/
.pdf-viewer-section {
  padding: 28px 0 52px;
}

.pdf-viewer-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.1);
}

.pdf-embed-container {
  width: 100%;
  height: 80vh;
  min-height: 520px;
  background: #e8e8e8;
}

.pdf-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.pdf-actions {
  padding: 16px 24px;
  background: #f8f8ff;
  border-top: 1px solid #ebebf5;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--clr-pink), var(--clr-purple));
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s var(--ease-out-quart);
  box-shadow: 0 4px 14px rgba(232, 3, 104, 0.28);
}

.btn-download:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 3, 104, 0.4);
}

.btn-home-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: #f0f0f8;
  color: #666;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s;
}

.btn-home-pill:hover {
  background: #e4e4f5;
  color: #444;
  text-decoration: none;
}

@media (max-width: 768px) {
  .pdf-embed-container {
    height: 65vh;
    min-height: 400px;
  }

  .pdf-actions {
    padding: 12px 16px;
    gap: 10px;
  }

  .btn-download,
  .btn-home-pill {
    font-size: 14px;
    padding: 9px 18px;
  }
}

@media (max-width: 480px) {
  .pdf-embed-container {
    height: 58vh;
    min-height: 340px;
  }

  .pdf-actions {
    flex-direction: column;
  }

  .btn-download,
  .btn-home-pill {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Vision / Accordion Section
--------------------------------------------------------------*/
.vision-accordion-section {
  padding: 28px 0 52px;
}

.vision-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 14px;
}

.vision-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 22px;
  background: var(--clr-surface);
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--clr-purple);
  font-family: 'THSarabunNew', sans-serif;
  cursor: pointer;
  transition: color 0.25s var(--ease-out-quart), background 0.25s var(--ease-out-quart);
}

.vision-toggle:hover,
.vision-toggle[aria-expanded="true"] {
  color: var(--clr-pink);
  background: #fff5f9;
}

.vision-toggle i:first-child {
  color: #28a745;
  font-size: 18px;
  flex-shrink: 0;
}

.vision-toggle-arrow {
  margin-left: auto;
  font-size: 16px;
  transition: transform 0.3s var(--ease-out-quart);
  flex-shrink: 0;
}

.vision-toggle[aria-expanded="true"] .vision-toggle-arrow {
  transform: rotate(180deg);
}

.vision-card-body {
  padding: 20px 24px;
  text-align: center;
}

.vision-card-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Language Toggle
--------------------------------------------------------------*/
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(67, 65, 117, 0.15);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  line-height: 1;
  border: 1.5px solid transparent;
  font-family: "Open Sans", sans-serif;
  transition: background 0.25s var(--ease-out-quart), color 0.25s var(--ease-out-quart), border-color 0.25s var(--ease-out-quart);
}

.lang-btn.active {
  background: var(--clr-pink);
  color: #fff;
  border-color: var(--clr-pink);
}

.lang-btn:not(.active) {
  color: var(--clr-purple);
  border-color: var(--clr-purple);
}

.lang-btn:not(.active):hover {
  background: var(--clr-purple);
  color: #fff;
  text-decoration: none;
}

.lang-btn.active:hover {
  text-decoration: none;
  color: #fff;
}

.lang-btn:focus-visible {
  outline: 2px solid var(--clr-pink);
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .lang-toggle {
    margin-right: 54px;
    margin-left: 0;
    padding-left: 12px;
    border-left-color: rgba(67, 65, 117, 0.1);
  }
}

/*--------------------------------------------------------------
# Reduced Motion
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .info-card:hover,
  .doc-link-card:hover,
  .faq-card:hover,
  .why-us .box:hover,
  .video-card,
  .btn-download:hover {
    transform: none !important;
  }
}