:root {
  --primary-color: #005B41;
  --secondary-color: #ccce55;
  --background-color: #FFFAE6;
  --text-color: #333333;
  --accent-color: #005B41;
  --transition: all 0.3s ease;
}

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#lightboxOverlay,
#lightbox {
  display: none !important;
}

.scroll-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.scroll-nav ul {
  list-style: none;
  padding: 0;
}

.scroll-nav li {
  position: relative;
  margin: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-nav .dot {
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0, 91, 65, 0.3);
}

.scroll-nav li:hover {
  transform: translateX(-5px);
}

.scroll-nav li:hover .dot {
  transform: scale(1.5);
}

.scroll-nav .tooltip {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-nav li:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 35px;
}

.scroll-nav .tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--primary-color);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.scroll-nav li.active .dot {
  transform: scale(1.5);
  background: var(--secondary-color);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
}

.text-justify {
  text-align: justify;
}

header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  padding: 15px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px 2px #888;
}

header.fixed-header {
  background-color: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  width: 100%;
}



header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.language-selector {
  width: 120px;
}

.navbar-brand img {
  max-height: 30px;
  width: auto;
}

.carousel-item {
  transition: transform 1.2s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.splide__slide {
  margin-bottom: 20px;
}

.splide__slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.splide__slide img {
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.splide__slide img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.splide__arrow {
  background: rgba(0, 0, 0, 0.5);
  width: 2.5em;
  height: 2.5em;
}

.splide__arrow svg {
  fill: #fff;
  width: 1.2em;
  height: 1.2em;
}

.splide__pagination__page {
  background: #ccc;
}

.splide__pagination__page.is-active {
  background: var(--primary-color);
}

.recruitment-form h2,
.thaco-intro h2,
.gallery h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 25px;
}
.thaco-intro {
	color: #005b41;
}
.thaco-intro p{
	margin-bottom:0;
	color:
}
.gallery {
  /* margin-top: 20px; */
}

/* Gallery Modal Styles */
.modal-content {
  background-color: transparent;
  border: none;
}

.modal-body {
  padding: 0;
}

#modalCarousel .carousel-item img {
  max-height: 70vh;
  object-fit: contain;
}

#galleryModal .modal-header {
  border-bottom: none;
  padding: 1rem;
}

form {
  background: white;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 91, 65, 0.15);
}




.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 200px;
  margin-top: 10px;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);

}

.bg-light {
  background-color: var(--background-color) !important;
}

.social-icons {
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-icons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: white;
  border-radius: 0;
  margin: 0 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
  color: white;
}

.social-icon i {
  font-size: 28px;
}

.feature-box {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--background-color);
  height: 100%;
}

.feature-box h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

h2 {
  color: var(--primary-color);
}

.footer {
  background-color: var(--primary-color);
  color: white;
  margin-top: 2rem;
}

.hotline {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 200px;
}

.hotline:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: white;
}

.hotline i {
  margin-right: 5px;
  color: #ffffff;
}

.hotline span {
  display: inline;
}

.language-flags {
  width: 200px;
  text-align: right;
}



.fixed-buttons {
  position: fixed;
  right: 5px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.fixed-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.fixed-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  color: white;
}

.fixed-btn i {
  font-size: 20px;
}


@media (max-width: 950px) {
  .language-flags {
    width: auto;
  }

  .hotline {
    width: auto;
  }

}

@media (max-width: 768px) {
  .social-icon {
    width: 60px;
    height: 60px;
    margin: 0 5px;
  }
  
  .social-icon i {
    font-size: 20px;
  }

  .hotline {
    padding: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .hotline i {
    margin: 0;
  }

  .hotline span {
    display: none;
  }

  .video-container {
    margin-top: 20px;
  }

  .carousel-item img {
    height: auto;
  }

  .navbar-brand img {
    max-height: 20px;
    width: auto;
  }

  .recruitment-form h2,
  .thaco-intro h2,
  .gallery h2 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
  }

  .thaco-intro .lead {
    color: var(--primary-color);
    font-size: 14px;
  }
}

.video-container {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  width: 100%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.loading-screen.active {
  display: block
}

.loading-screen {
  z-index: 100000;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.lds-ring {
  display: inline-block;
  position: absolute;
  width: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
  margin-left: -32px;
  margin-top: -32px
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent
}

.lds-ring div:nth-child(1) {
  animation-delay: -.45s
}

.lds-ring div:nth-child(2) {
  animation-delay: -.3s
}

.lds-ring div:nth-child(3) {
  animation-delay: -.15s
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes zoom {
  0% {
    transform: scale(.5);
    opacity: 0
  }

  50% {
    opacity: 1
  }

  to {
    opacity: 0;
    transform: scale(1)
  }
}

@keyframes lucidgenzalo {
  0% to {
    transform: rotate(-25deg)
  }

  50% {
    transform: rotate(25deg)
  }
}

.jscroll-to-top {
  bottom: 100px
}

.fcta-zalo-ben-trong-nut svg path {
  fill: #fff
}

.fcta-zalo-vi-tri-nut {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999
}

.fcta-zalo-nen-nut,
div.fcta-zalo-mess {
  box-shadow: 0 1px 6px rgba(0, 0, 0, .06), 0 2px 32px rgba(0, 0, 0, .16)
}

.fcta-zalo-nen-nut {
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  background: #0068ff;
  border-radius: 50%;
  position: relative
}

.fcta-zalo-nen-nut::after,
.fcta-zalo-nen-nut::before {
  content: "";
  position: absolute;
  border: 1px solid #0068ff;
  background: #0068ff80;
  z-index: -1;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: zoom 1.9s linear infinite
}

.fcta-zalo-nen-nut::after {
  animation-delay: .4s
}

.fcta-zalo-ben-trong-nut,
.fcta-zalo-ben-trong-nut i {
  transition: all 1s
}

.fcta-zalo-ben-trong-nut {
  position: absolute;
  text-align: center;
  width: 60%;
  height: 60%;
  left: 10px;
  bottom: 25px;
  line-height: 70px;
  font-size: 25px;
  opacity: 1
}

.fcta-zalo-ben-trong-nut i {
  animation: lucidgenzalo 1s linear infinite
}

.fcta-zalo-nen-nut:hover .fcta-zalo-ben-trong-nut,
.fcta-zalo-text {
  opacity: 0
}

.fcta-zalo-nen-nut:hover i {
  transform: scale(.5);
  transition: all .5s ease-in
}

.fcta-zalo-text a {
  text-decoration: none;
  color: #fff
}

.fcta-zalo-text {
  position: absolute;
  top: 6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  transform: scaleX(-1);
  transition: all .5s;
  line-height: 1.5
}

.fcta-zalo-nen-nut:hover .fcta-zalo-text {
  transform: scaleX(1);
  opacity: 1
}

div.fcta-zalo-mess {
  position: fixed;
  bottom: 29px;
  right: 58px;
  z-index: 99;
  background: #fff;
  padding: 7px 25px 7px 15px;
  color: #0068ff;
  border-radius: 50px 0 0 50px;
  font-weight: 700;
  font-size: 15px
}

.fcta-zalo-mess span {
  color: #0068ff !important
}

span#fcta-zalo-tracking {
  font-family: myFirstFont;
  line-height: 1.5
}

.fcta-zalo-text {
  font-family: myFirstFont
}

.ui-dialog {
  z-index: 99999;
}
.col-pd{
	padding-right: 0;
    padding-left: 0;
}

.input-group-text{
	width:40px;
	border-radius: 0;
}
.input-group .form-control{
	border-radius: 0;
}