@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&family=Orbitron:wght@400..900&family=Unbounded:wght@200..900&display=swap");
:root {
  --dark-color: #060d0a;
  --primary-color: #16ffa8;
  --secondary-color: #65ff3c;
  --neon-green: #66fecb;
  --head-font-size: 36px;
  --subhead-font-size: 20px;
  --body-font-size: 14px;
}

@media (max-width: 768px) {
  :root {
    --head-font-size: 28px;
    --subhead-font-size: 16px;
    --body-font-size: 13px;
  }
}
/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-indicator span {
  color: var(--neon-green);
  font-size: 0.8rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.scroll-indicator i {
  color: var(--neon-green);
  font-size: 1.5rem;
}

/* GSAP Animation Classes */
.gsap-reveal {
  visibility: hidden;
}

.button-primary-style {
  background: rgb(218, 226, 74);
  background: -moz-linear-gradient(180deg, rgb(218, 226, 74) 0%, rgb(242, 255, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgb(218, 226, 74) 0%, rgb(242, 255, 0) 100%);
  background: linear-gradient(180deg, rgb(218, 226, 74) 0%, rgb(242, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dae24a",endColorstr="#f2ff00",GradientType=1);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: #060d0a;
  max-height: 74px;
  padding: 1.7rem 0.2rem;
  border: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.3s;
}
.button-primary-style::before, .button-primary-style::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25px;
  height: 74px;
  transition: all 0.3s;
  z-index: 2;
}
.button-primary-style::before {
  background-image: url("../images/btn-front.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  left: -25px;
}
.button-primary-style::after {
  background-image: url("../images/btn-back.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  right: -25px;
}
.button-primary-style:hover {
  filter: brightness(1.5);
}

.clipboard-icon {
  display: flex;
  background-color: rgba(8, 50, 26, 0.8);
  box-shadow: 0.5px 0.866px 0px 1px rgba(0, 0, 0, 0.25);
  padding: 4px 6px 5px 6px;
  border-radius: 4px;
  margin-left: 10px;
}
.clipboard-icon img {
  width: 15px;
}

.contact-button:hover {
  color: #060d0a;
}

.contact-button i {
  margin-right: 10px;
}

body {
  background-color: var(--dark-color);
  color: white;
  font-family: "Noto Sans Thai", sans-serif;
  background-image: url("../images/hero-bg.jpg");
  font-size: 14px;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 100%;
  line-height: 1.4em;
}

.main-navbar {
  background-color: #060606;
  padding-top: 0px;
  padding-bottom: 0px;
}
.main-navbar .navbar-brand img {
  max-height: 50px;
}
.main-navbar .navbar-toggler {
  border: none;
}
.main-navbar .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

.navbar-nav .nav-link {
  font-family: "Noto Sans Thai", sans-serif;
  color: #fff;
  margin: 0 10px;
  text-transform: uppercase;
  font-size: var(--body-font-size);
  font-weight: 700;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  display: none;
  z-index: 1001;
}
.mobile-menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--neon-green);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.mobile-menu-toggle span:nth-child(1) {
  top: 0px;
}
.mobile-menu-toggle span:nth-child(2), .mobile-menu-toggle span:nth-child(3) {
  top: 10px;
}
.mobile-menu-toggle span:nth-child(4) {
  top: 20px;
}
.mobile-menu-toggle.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}
.mobile-menu-toggle.open span:nth-child(2) {
  transform: rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.mobile-menu-toggle.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.hero-section {
  max-width: 1920px;
  margin: 0 auto;
  padding: 160px 30px 80px 30px;
  position: relative;
}
.hero-section .sub-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: var(--head-font-size);
  line-height: 1.4em;
  margin-bottom: 50px;
}
.hero-section p {
  font-family: "Noto Sans Thai", sans-serif;
  font-size: 18px;
  line-height: 1.4em;
  margin-bottom: 40px;
}

.about-section, .services-section, .references-section, .clients-section, .why-us-section {
  padding: 100px 0 20px 0;
  position: relative;
}

.section-title {
  font-size: var(--head-font-size);
  font-family: "Orbitron", sans-serif;
  background: #65ff3c;
  background: linear-gradient(to right, #65ff3c 0%, #26ff87 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-weight: 900;
}

.section-subtitle {
  font-size: var(--subhead-font-size);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}

.neon-text {
  color: var(--neon-green);
}

.title-description {
  font-size: 20px;
  line-height: 1.4em;
  color: #ffffff;
  font-weight: 600;
}

.about-section p {
  font-size: 1.14em;
  line-height: 1.5em;
}

.services-section {
  background-image: url("../images/bg-sections-1.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.services-section .service-card {
  text-align: center;
  margin-bottom: 1rem;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid transparent;
}
.services-section .service-card:hover {
  transform: scale(1.05) !important;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
  border: 1px solid #16fea8;
}
.services-section .service-card .service-icon {
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.services-section .service-card .service-icon:hover {
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.7);
}
.services-section .service-card .service-title {
  color: var(--primary-color);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
}
.services-section .service-card p {
  font-family: "Noto Sans Thai", sans-serif;
  font-size: var(--body-font-size);
  line-height: 1.2em;
  margin-bottom: 0px;
}

.references-container .reference-card {
  margin-bottom: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}
.references-container .reference-card:hover {
  transform: translateY(-5px);
}
.references-container .reference-content {
  position: relative;
  padding: 15px 15px 0rem 15px;
  background-color: var(--dark-color);
  background-image: url("../images/references-text-bg.png");
  background-position: top center;
  background-repeat: repeat-y;
  background-size: contain;
  height: auto;
  width: 100%;
  max-width: 301px;
  margin: 0 auto;
}
.references-container .reference-content::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url("../images/references-text-bg-bottom.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.references-container .reference-title {
  color: var(--neon-green);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.load-more {
  clip-path: polygon(6% 0, 100% 0, 100% 79%, 95% 100%, 0 100%, 0 19%);
  cursor: pointer;
  color: #c8c8c8;
  font-size: 18px;
  padding: 14px 26px 12px 26px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  box-shadow: none;
  text-decoration: none;
  background: #3b5748;
  background: -moz-linear-gradient(180deg, #3b5748 0%, #33493d 100%);
  background: -webkit-linear-gradient(180deg, #3b5748 0%, #33493d 100%);
  background: linear-gradient(180deg, #3b5748 0%, #33493d 100%);
}
.load-more:hover {
  background: #416954;
  background: -moz-linear-gradient(180deg, #416954 0%, #4a7e63 100%);
  background: -webkit-linear-gradient(180deg, #416954 0%, #4a7e63 100%);
  background: linear-gradient(180deg, #416954 0%, #4a7e63 100%);
}

.references-hidden {
  display: none;
}

.clients-section {
  background-image: url("../images/bg-sections-2.png");
  background-position: center center;
  background-repeat: no-repeat;
}

.clients-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
.clients-container .client-logo-wrapper {
  flex: 0 0 calc(20% - 20px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.clients-container .client-logo-wrapper .client-logo {
  transition: all 0.3s;
  max-width: 100%;
}
.clients-container .client-logo-wrapper .client-logo:hover {
  filter: brightness(1.5);
  opacity: 1;
  transform: scale(1.1);
}

.why-us-section .accordion-item {
  border: none;
  border-radius: 0 !important;
}

.why-us-section .accordion-button {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--neon-green);
  background-color: #000000;
  border: 1px solid #113215 !important;
  margin-bottom: 0;
  transition: all 0.3s ease;
  padding: 30px 30px 30px 30px !important;
}

.why-us-section .accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.why-us-section .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.why-us-section .accordion-button:not(.collapsed) {
  border: 1px solid #16fea8 !important;
  border-bottom: none !important;
  box-shadow: none;
}

.why-us-section .accordion-button:focus {
  box-shadow: none;
}

.why-us-section .accordion-button:hover {
  box-shadow: none;
}

.why-us-section .accordion-collapse .accordion-body {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #113215 !important;
  border-top: none !important;
  font-size: 14px;
  padding: 0px 30px 30px 30px !important;
}

.why-us-section .accordion-collapse.show .accordion-body {
  border: 1px solid #16fea8 !important;
  border-top: none !important;
}

.accordion-button::after {
  background-image: url(../images/chevron-up-solid.svg);
  opacity: 0.4;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../images/chevron-up-solid.svg);
  transform: rotate(180deg);
  opacity: 1;
}

.career-section {
  position: relative;
  background-color: #081b10;
  background-image: url("../images/career-section-bg.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
}

.career-section .button-primary-style {
  margin-top: 30px;
  min-height: 74px;
  padding: 1.7rem 2.5rem;
}

.footer {
  padding: 3rem 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}
.footer .footer-logo {
  margin-bottom: 40px;
  transition: all 0.3s;
}
.footer .footer-logo:hover {
  filter: drop-shadow(0 0 8px var(--neon-green));
}
.footer .footer-contact {
  margin-bottom: 40px;
}
.footer .contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e941;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 40px;
}
.footer .footer-address {
  font-size: 16px;
}
.footer .footer-address i {
  color: var(--primary-color);
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 15px;
  transition: all 0.3s;
  display: inline-block;
}
.social-icons a:hover {
  color: var(--neon-green);
  transform: translateY(-5px);
}
.social-icons i {
  font-size: 36px;
}

.copyright {
  background-color: #000000;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 0.8rem;
  color: #fff;
  margin-top: 40px;
}

.mobile-footer-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  z-index: 999;
  border-top: 1px solid rgba(0, 255, 157, 0.3);
}
.mobile-footer-nav .mobile-nav-list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.mobile-footer-nav .mobile-nav-list .mobile-nav-item-wrapper {
  flex: 1;
  text-align: center;
}
.mobile-footer-nav .mobile-nav-list .mobile-nav-item-wrapper .mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  padding: 5px 0;
}
.mobile-footer-nav .mobile-nav-list .mobile-nav-item-wrapper .mobile-nav-item i {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--neon-green);
}
.mobile-footer-nav .mobile-nav-list .mobile-nav-item-wrapper .mobile-nav-item:hover, .mobile-footer-nav .mobile-nav-list .mobile-nav-item-wrapper .mobile-nav-item:active, .mobile-footer-nav .mobile-nav-list .mobile-nav-item-wrapper .mobile-nav-item.active {
  color: var(--neon-green);
}

/* Add padding to the footer to prevent content from being hidden behind the mobile nav */
@media (max-width: 768px) {
  .mobile-footer-nav {
    display: block;
  }
  footer {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 991.98px) {
  .mobile-footer-nav {
    display: block;
  }
  footer {
    padding-bottom: 80px;
  }
}
.back-to-top {
  display: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-color);
  background-color: var(--secondary-color);
  padding: 6px 6px 4px 8px;
  border-radius: 6px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 3;
  border: none;
  box-shadow: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-2px);
  }
}
.back-to-top i {
  animation: bounce 1.5s infinite;
}

@media screen and (min-width: 992px) {
  .main-navbar .navbar-brand img {
    max-height: 90px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 6px;
    padding-left: 6px;
    margin-left: 6px;
    margin-right: 6px;
  }
}
@media screen and (min-width: 1200px) {
  .about-section .about-content {
    padding-left: 30px;
  }
}
@media screen and (min-width: 1600px) {
  .hero-section {
    max-width: 1920px;
    padding: 200px 100px 160px 200px;
  }
  .hero-section .hero-content {
    padding-right: 40px;
  }
}
@media screen and (max-width: 991.98px) {
  .navbar-nav .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #242424;
  }
  .navbar-nav .nav-link:first-child {
    margin-top: 15px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .clients-container .client-logo-wrapper {
    flex: 0 0 calc(33.333% - 20px);
  }
  .career-section .career-img {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  .career-section .button-primary-style {
    margin-top: 30px;
    margin-bottom: 30px;
    min-height: auto;
    padding: 1.25rem 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
  .about-section, .services-section, .references-section, .clients-section, .why-us-section {
    padding-bottom: 40px;
  }
  .title-description {
    font-size: 16px;
  }
  .hero-section .sub-title {
    font-size: 1.6em;
    margin-bottom: 15px;
  }
  .hero-section {
    padding: 80px 15px 60px 15px;
  }
  .hero-section p {
    font-size: 16px;
  }
  .hexagon-container {
    margin-bottom: 30px;
  }
  .button-primary-style {
    font-size: 16px;
    max-height: auto;
    padding: 1rem 0.2rem;
  }
  .button-primary-style::before, .button-primary-style::after {
    content: "";
    width: 20px;
    height: 59px;
  }
  .button-primary-style::before {
    left: -20px;
  }
  .button-primary-style::after {
    right: -20px;
  }
  .services-section .service-card {
    margin-bottom: 0rem;
    padding: 1rem 0rem;
  }
  .services-section .service-card .service-title {
    font-size: 1rem;
    min-height: 40px;
    margin-bottom: 0.5rem;
  }
  .services-section .service-card p {
    font-size: 13px;
  }
  .services-section .service-card .service-icon img {
    width: 75px;
  }
  .references-container .reference-card {
    margin-bottom: 1rem;
  }
  .references-container .reference-card:hover {
    transform: translateY(-5px);
  }
  .references-container .reference-content {
    padding-left: 5px;
    padding-right: 5px;
    background-size: 100%;
    min-height: 105px;
  }
  .references-container .reference-content::after {
    bottom: -25px;
  }
  .references-container .reference-content .reference-description {
    font-size: 12px;
    margin-bottom: 0;
  }
  .references-container .reference-title {
    font-size: 14px;
  }
  footer {
    padding: 2rem 0 0 0;
    position: relative;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-contact {
    margin-bottom: 20px;
  }
  .footer .contact-button {
    margin-bottom: 20px;
  }
  .footer-address {
    font-size: 14px;
  }
  .social-icons i {
    font-size: 28px;
  }
  .copyright {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .clients-container .client-logo-wrapper {
    flex: 0 0 calc(33.333% - 15px);
    margin-bottom: 5px;
  }
}