
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: #212529;
  background-color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
}

img {
  width: 100%;
}

a {
  color: #13BEF3;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #13BEF3, transparent 25%);
  text-decoration: none;
}

.text-white {
  color: #fff;
}

p {
  font-size: 14px;
  color: #535353;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #37373f;
}

.color-light-blue {
  color: #13BEF3;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#13BEF3 50%, color-mix(in srgb, #13BEF3, transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, #13BEF3, transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid #13BEF3;
  transform: scale(20);
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
	overflow: hidden;
  width: auto;
	padding: 1rem 0;
	position: relative;
	z-index: 0;
  margin: 0 .5rem;
}

.btn:hover {
  border: unset;
}

.btn-white {
  color: #1B1464;
  background: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 45px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-out-line-white {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 45px;
  margin: 0;
  border-radius: 50px;
  width: fit-content;
  transition: all .3s ease-in-out;
}

.btn-out-line-white:before {
  background: #fff;
	content: "";
	width: 0%;
  left: 0;
	height: 100%;
	position: absolute;
	z-index: -1;
	border-radius: 50px;
	transition: all .3s ease-in-out;
}

.btn-out-line-white:hover {
  color: #1B1464;
  border: 2px solid #fff;
}

.btn-out-line-white:hover:before {
	width: 100%;
}

.btn-light-blue,
.btn-light-blue:focus {
  color: #ffffff;
  background: #13BEF3;
  font-size: 18px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  border: unset;
  width: fit-content;
  transition: all .3s ease-in-out;
}

.btn-light-blue:before {
  background: #959595;
	content: "";
	width: 0%;
  left: 0;
	height: 100%;
	position: absolute;
	z-index: -1;
	border-radius: 50px;
	transition: all .3s ease-in-out;
}

.btn-light-blue:hover,
.btn-light-blue:focus:hover {
  color: #ffffff;
  background: #13BEF3;
}

.btn-light-blue:hover:before {
	width: 100%;
}



.btn-padding {
  padding: 8px 50px;
}

.line-clamp {
  display: -webkit-box;
  max-width: 100%;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.li1 {
  font-size: 14px;
  color: #535353;
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


@media (max-width: 1368px) {
  .btn-light-blue, .btn-light-blue:focus {
      font-size: 16px;
      padding: 5px 26px;
  }

  .btn-white {
    font-size: 16px;
    padding: 6px 45px;
  }

  .btn-out-line-white {
    font-size: 16px;
    padding: 6px 45px;
  }

}


@media (max-width: 1024px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .btn-out-line-white {
    padding: 6px 20px;
  }

}


@media (max-width: 432px) {
  .btn-light-blue, .btn-light-blue:focus {
    font-size: 14px;
    padding: 5px 20px;
  }

  .btn-white {
    font-size: 14px;
    padding: 5px 25px;
  }
}
/* 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: #ffffff;
  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 #13BEF3;
  border-top-color: #ffffff;
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #212529;
  background-color: #ffffff;
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  width: 150px;
  margin-right: 30px;
}



.header .nav-left {
  display: flex;
}

.header .nav-right {
  display: flex;
}

.header .nav-right .lang {
  margin: auto;
}

.header .nav-right svg {
  width: 30px;
  margin-right: 20px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .navmenu ,.header .navmenu-desktop {
    order: 3;
  }
}

@media (max-width: 432px) {
  .header .logo img {
    width: 100px;
  }

  .header .nav-right svg {
    width: 25px;
    margin-right: 20px;
  }

}

@media (max-width: 320px) {
  .header .logo img {
    width: 80px;
    margin-right: 10px;
  }

  .header .nav-right svg {
    margin-right: 10px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

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

  .navmenu-desktop li {
    position: relative;
  }

  .navmenu-desktop>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu-desktop>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu-desktop a,
  .navmenu-desktop a:focus {
    color: #1B1464;
    font-size: 15px;
    padding: 0 2px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu-desktop a:hover:before,
  .navmenu-desktop li:hover>a:before,
  .navmenu-desktop .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu-desktop li:hover>a,
  .navmenu-desktop .active,
  .navmenu-desktop .active:focus {
    color: #13BEF3;
  }

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

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

  .navmenu-desktop .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #1B1464;
  }

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

  .navmenu-desktop .dropdown ul a:hover,
  .navmenu-desktop .dropdown ul a.active,
  .navmenu-desktop .dropdown ul li:hover>a {
    color: #13BEF3;
  }

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

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

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #7f7f90;
    font-size: 28px;
    line-height: 0;
    margin-left: 15px;
    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: #ffffff;
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #1B1464;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #13BEF3;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    color: #1B1464;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #ffffff;
    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;
  }

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.site-footer {
  background: #1B1464;
  color: #fff;
  font-size: 14px;
  position: relative;
}

/* TOP */
.footer-top {
  padding: 80px 0 50px;
}

.footer-top h3 {
  color: #fff;
  font-size: 14px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.footer-icon {
  width: 25px;
  margin-right: 10px;
}

.footer-company {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.footer-info {
  color: #fff;
  font-weight: 200;
  margin-bottom: 2rem;
}

.footer-info svg {
  width: 25px;
  margin-right: 10px;
}

/* SOCIAL */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-menu {
  text-align: center;
  padding-bottom: 40px;
}

.footer-menu a {
  margin: 0 15px;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
  font-size: 14px;
}

.footer-menu a:hover {
  opacity: 1;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #f1f1f1;
  color: #535353;
  font-size: 13px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  flex-wrap: wrap;
}

.footer-bottom-inner .text-darkblue {
  color: #1B1464;
}

.footer-bottom a {
  margin-right: 15px;
  color: #535353;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .footer-menu {
    line-height: 2.2;
  }

  .footer-bottom-inner {
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .footer-bottom-inner {
      justify-content: center;
  }

  .footer-info {
    margin-bottom: 0rem;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #ffffff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid #13BEF3;
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #13BEF3, transparent 20%);
  color: #ffffff;
}

.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 {
  --background-color: color-mix(in srgb, #212529, transparent 96%);
  color: #212529;
  background-color: #ffffff;
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  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, #212529, transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #212529;
  background-color: #ffffff;
  padding: 100px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 56px;
  }
}

@media (max-width: 600px) {
  section,
  .section {
    padding: 60px 0;
  }
}

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

.section-title h2 {
  font-size: 13px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, #212529, transparent 50%);
  display: inline-block;
  text-transform: uppercase;
}

.section-title p {
  color: #37373f;
  margin: 10px 0 0 0;
  font-size: 48px;
  font-weight: 500;
}

.section-title p .description-title {
  color: #13BEF3;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 0;
  align-items: center;
}

.video-hero{
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
}

.video-bg{
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 120%; /* เผื่อขยับ */
  object-fit: cover;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.hero h1 {
  margin: 0;
  font-size: 55px;
  font-weight: 600;
  color: #fff;
}

.hero p {
  color: #fff;
  margin: 30px 0;
  font-size: 24px;
  font-weight: 400;
  width: 50%;
}

.hero .btn-get-started {
  color: #ffffff;
  background: #13BEF3;
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}



.hero .btn-get-started:hover {
  color: #ffffff;
  background: color-mix(in srgb, #13BEF3, transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #212529;
  font-weight: 500;
}

.hero .btn-watch-video i {
  color: #13BEF3;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #13BEF3;
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, #13BEF3, transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero .hero-text {
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  z-index: 1;
}

.hero .hero-text.contact-banner {
  top: 30%;
  transform: translateY(-30%);
  width: 100%;
}

.hero .hero-social {
  position: absolute;
  top: 80%;
  right: 17%;
  z-index: 1;
}

.hero .hero-social a {
  margin-right: 30px;
}

.hero .hero-social svg {
  width: 35px;

}

.head-office-section {
  background: #fff;
}

.contact-title {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #1B1464;
}

.contact-title span {
  color: #13BEF3;
}

.company-title {
    margin: 0 0 1rem;
    font-size: 24px;
    font-weight: 600;
    color: #1B1464;
}

.office-block {
  margin-bottom: 28px;
}

.office-block h4,
.follow-us h4 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 600;
    color: #1B1464;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.info-icon {
  flex: 0 0 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}

.info-icon svg {
  width: 25px;
  height: auto;
  fill: #1B1464;
  display: block;
}

.info-text, .info-text a {
  font-size: 16px;
  font-weight: 400;
  color: #535353;
}

.follow-us {
  margin-top: 50px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-list a {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-list a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.social-list a svg {
  width: 35px;
  height: 35px;
  fill: #fff;
  display: block;
}

.office-map-section{
background:#F4F6F7;
}

/* Tabs */

.office-map-tabs{
display:flex;
gap:20px;
margin-bottom:40px;
}

.office-tab{
  border:0;
  background:#fff;
  padding:10px 32px;
  border-radius:999px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  color:#1B1464;
  transition:.25s;
}

.office-tab.active{
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.office-tab:hover{
transform:translateY(-2px);
}

/* Map */

.office-map-box{
width:100%;
height:560px;
overflow:hidden;
}

.office-map-box iframe{
width:100%;
height:100%;
border:0;
display:block;
}

/* Tab Content */

.office-map-pane{
display:none;
}

.office-map-pane.active{
display:block;
}

/* Responsive */

@media(max-width:992px){
  .office-map-box{
    height:420px;
  }
}

@media(max-width:600px){
  .office-map-tabs{
    gap:12px;
  }

  .office-map-box{
    height:320px;
  }
}



@media (max-width: 1920px) {
  .hero .hero-social {
    right: 14%;
  }
}

@media (max-width: 1664px) {
  .hero .hero-social {
    right: 9%;
  }
}

@media (max-width: 1620px) {
  .hero .hero-social {
    right: 9%;
  }
}

@media (max-width: 1536px) {
  .hero .hero-social {
    right: 6%;
  }
}

@media (max-width: 1504px) {
  .hero .hero-social {
    right: 6%;
  }
}

@media (max-width: 1440px) {
  .hero .hero-social {
    right: 3%;
  }
}

@media (max-width: 1368px) {
  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    margin: 20px 0;
    font-size: 20px;
  }

  .hero .hero-social {
    right: 7%;
  }

  .hero .hero-social svg {
    width: 25px;
  }
}

@media (max-width: 1280px) {
  .hero .hero-social {
    right: 4%;
  }
}

@media (max-width: 1024px) {
  .hero .hero-social {
    right: 1%;
    top: 90%;
  }

  .video-hero {
    height: 70vh;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    width: 80%;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }

}

@media (max-width: 432px) {
  .hero h1 {
    font-size: 20px;
    line-height: 25px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.25;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.strategic-location {
  position: relative;
  background: #fff;
}

.strategic-location.glass{
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(12px); /* Safari */
  z-index: 1;
}

.strategic-location .content {
  width: 60%;
  margin-left: 100px;
}


.strategic-location .content h2 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2rem;
}

.strategic-location .content h3 {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
}

.strategic-location .content p {
  color: #fff;
  font-weight: 300;
}


.strategic-location .location {
  margin-bottom: 2rem;
}

.home-page.about-us {
  position: relative;
  height: 200vh;
}

.home-page.about-us .content {
  width: 50%;
  padding: 3rem 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reveal-item .content{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
  display: none;
}

.reveal-item .content.show {
  display: block;
  opacity: 1;
}

.home-page.about-us .content h2 {
  margin-bottom: 2rem;
  font-size: 40px;
  font-weight: 600;
  color: #1B1464;
  line-height: 1.4;
}

.home-page.about-us .img-left {
  position: absolute;
  top: 25%;
}

.home-page.about-us .img-left2 {
  position: absolute;
  bottom: 4%;
}

.home-page.about-us .img-right {
  position: absolute;
  top: 10%;
  right: 5%;
}

.home-page.about-us .img-right2 {
  position: absolute;
  top: 60%;
  right: 5%;
}

.home-page.about-us .img-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.home-page.about-us .img-left img, .home-page.about-us .img-left2 img, .home-page.about-us .img-right img , .home-page.about-us .img-right2 img {
  width: 250px;
}

.home-page.about-us .img-center img {
  width: 350px;
}

.home-page.business {
  position: relative;
  background: url('../images/bg/Group-4983.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-page.business h2 {
  color: #fff;
  font-size: 35px;
}

.home-page.business p {
  color: #fff;
  margin-bottom: 3rem;
}

.home-page.business .mySwiper {
  margin-top: 13rem;
  margin-left: 15%;
}

.home-page.business .mySwiper .business-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 15px;
}

.home-page.business .mySwiper .business-item .business-content h3 {
  color: #fff;
  font-size: 20px;
}

.home-page.business .mySwiper .business-item .business-content {
  position: relative;
  height: 220px;
}

.home-page.business .mySwiper .business-item .business-content p {
  color: #fff;
  font-size: 12px;
  -webkit-line-clamp: 4;
}

.home-page.business .mySwiper .business-item .business-content .button {
  position: absolute;
  bottom: 15px;
}

.home-page.business .mySwiper .business-item img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

.home-page.highlight-projects {
  position: relative;
  padding: 80px 0;
}

.home-page.highlight-projects .title {
    font-size: 35px;
    font-weight: 600;
    color: #1B1464;
}

.home-page.highlight-projects .title span {
  color: #13BEF3;
}

.home-page.highlight-projects .desc {
  width: 80%;
  color: #535353;
  margin: 20px 0 40px;
}

.home-page.highlight-projects .nav-wrap {
  display: flex;
  gap: 10px;
}

.home-page.highlight-projects .swiper-button-next:after, .home-page.highlight-projects .swiper-button-prev:after {
  display: none;
}

.home-page.highlight-projects .swiper-button-next, .home-page.highlight-projects .swiper-button-prev {
  width: 45px;
}

.home-page.highlight-projects .swiper-button-prev, .home-page.highlight-projects .swiper-rtl .swiper-button-next {
    left: 16%;
    top: 75%;
    right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: 20%;
    right: auto;
    top: 75%;
}

.home-page.highlight-projects .projectSwiper {
  padding-left: 40px;
}

.home-page.highlight-projects .projectSwiper .swiper-slide {
  width: 340px;
}

.home-page.highlight-projects .project-card {
  position: relative;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
}

.home-page.highlight-projects .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page.highlight-projects .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    right: 24px;
    color: #fff;
    z-index: 2;
    background: transparent linear-gradient(319deg, #13BEF300 0%, #13BEF300 33%, #13BEF3C2 67%, #13BEF3E3 100%) 0% 0% no-repeat padding-box;
}

.home-page.highlight-projects .overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    right: 24px;
    color: #fff;
    z-index: 2;
    background: transparent linear-gradient(319deg, #1B146400 0%, #1B146400 33%, #1B1464C2 67%, #1B1464E3 100%) 0% 0% no-repeat padding-box;
}

.home-page.highlight-projects .overlay h4, .home-page.highlight-projects .overlay2 h4 {
  font-size: 18px;
  margin-bottom: 1rem;
  color: #fff;
}

.home-page.highlight-projects .overlay p, .home-page.highlight-projects .overlay2 p {
  font-size: 14px;
  color: #fff;
}

.home-page.highlight-projects .logo {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
}

.home-page.highlight-projects .logo img {
  border-radius: 50%;
}

.home-page.highlight-projects .project-card.blue::after {
  background: linear-gradient(
    180deg,
    rgba(0,120,255,0.2),
    rgba(0,120,255,0.75)
  );
}

.home-page.highlight-projects .content-left {
  padding-left: 16%;
}

.home-page.news {
  position: relative;
  background: #F4F6F7;
}

.home-page.news h2 {
  font-size: 35px;
  font-weight: 600;
  color: #1B1464;
}

.home-page.news .content{
  margin-bottom: 3rem;
}

.home-page.news h3 {
  -webkit-line-clamp: 1;
  font-size: 20px;
  color: #1B1464;
}

.home-page.news p {
  -webkit-line-clamp: 2;
  margin-bottom: 0;
}

.home-page.news .latest-news img {
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.home-page.news h4 {
  font-size: 12px;
  font-weight: 400;
  color: #1B1464;
}

.home-page.news .other-news {
  margin-left: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: .5px solid #ccc;
}

.home-page.news .other-news h3 {
  -webkit-line-clamp: 2;
}

.home-page.news .other-news img {
  border-radius: 15px;
}

.home-page.news .other-news:first-child {
  padding-top: 0;
}


.home-page.news .other-news:last-child {
  border-bottom: 0 solid #ccc;
}

.home-page.contact {
  background: #1B1464;
  position: relative;
}

.home-page.contact .contact-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}

.home-page.contact .contact-title span {
  color: #13BEF3;
}

.home-page.contact .contact-tel {
  margin-top: 20px;
  opacity: 0.8;
  color: #fff;
}

.home-page.contact .contact-tel svg {
  width: 25px;
  margin-right: 10px;
}

.home-page.contact .contact-form label {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.home-page.contact .contact-form .form-control {
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.home-page.contact .contact-form .form-control::placeholder {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 400;
}

.home-page.contact .contact-form .form-control:focus {
  box-shadow: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.home-page.contact .contact-form .form-check-label {
  font-size: 13px;
  opacity: 0.8;
}

.home-page.contact .contact-form .form-check-input {
    border-color: #707070;
    border-radius: 50%;
}

.page-navigator{
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  position: absolute;
  top: 5%;
}

.page-navigator a{
  color: #ffffff;
  text-decoration: none;
  transition: opacity .2s ease;
  font-size: 12px;
}

.page-navigator a:hover{
  opacity: .8;
}

.page-navigator .dot{
  color: #ffffff;
  font-size: 10px;
  transform: translateY(-1px);
}

.page-navigator .current{
  color: #ffffff;
  font-size: 12px;
}

.service-section {
  background: #f3f3f3;
}

.service-title {
  font-size: 32px;
  font-weight: 600;
  color: #1B1464;
}

.service-title span {
  color: #13BEF3;
}

.service-item {
  text-align: left;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
}

.service-item-title {
  font-size: 20px;
  font-weight: 500;
  color: #13BEF3;
  margin-bottom: 1rem;
}

.service-item-desc {
  font-size: 16px;
  color: #535353;
  max-width: 90%;
  margin-bottom: 0;
}

.board-section {
  background: #1B1464;
}

.board-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 4rem;
}

.board-title span {
  color: #13BEF3;
}

.board-card {
  background: #3a3493;
  border-radius: 16px;
  padding: 20px 25px 22px;
  text-align: center;
  height: 100%;
}

.board-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 14px;
}

.board-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.board-info {
  padding: 0 6px;
}

.board-name {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
}

.board-position {
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
}

.org-structure-section {
  background: #F4F6F7;
}

.org-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 4rem;
  color: #1f1b78;
}

.org-title span {
  color: #13BEF3;
}

.org-image-wrap {
  position: relative;
}

.org-chart-img {
  width: 100%;
  display: block;
}

.org-zoom-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 50px;
  height: 50px;
  border: 0;
  transition: all 0.25s ease;
  z-index: 2;
  background: #F4F6F7;
}

.org-zoom-btn:hover {
  transform: scale(1.08);
}

.org-zoom-btn svg {
  width: 50px;
  height: 50px;
}

.org-modal .modal-content {
  background: rgba(15, 14, 45, 0.96);
  border: 0;
  border-radius: 0;
}

.org-modal .modal-body {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-modal-image-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
}

.org-modal-img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
}

.org-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s ease;
}

.org-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.org-modal-close svg {
  width: 18px;
  height: 18px;
}

.partner-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 4rem;
  color: #1B1464;
}

.partner-title span {
  color: #13BEF3;
}

.partner-swiper-wrap {
}

.partner-item {
}

.partner-item img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.partner-button-prev,
.partner-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #1B1464;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.partner-button-prev:hover,
.partner-button-next:hover {
  background: #1B1464;
  color: #ffffff;
}

.partner-button-prev {
  left: 0;
}

.partner-button-next {
  right: 0;
}

.partner-button-prev svg,
.partner-button-next svg {
  width: 14px;
  height: 14px;
}

.gc-network-section {
  padding-top: 0;
}

.gc-logo-wrap {
  margin-bottom: 28px;
}

.gc-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gc-network-title {
    margin: 0 auto 1rem;
    width: 80%;
    font-size: 32px;
    font-weight: 600;
    color: #1B1464;
}

.gc-network-title span {
  color: #1fb7ec;
}

.gc-network-desc {
  width: 65%;
  margin: 0 auto;
  font-size: 16px;
  color: #535353;
}

.story-block {
  margin-bottom: 3rem;
}

.story-block p {
  font-weight: 300;
  font-size: 16px;
}

.point-map {
  position: absolute;
  top: 0;
  width: 100%;
}

.point-land {
  cursor: pointer;
  transition: r .25s ease, filter .25s ease;
}

.point-land:hover, .point-land.active {
  r: 9;
  filter: drop-shadow(0 0 4px rgba(0,0,0,.25));
  stroke-dasharray:none !important;
}

.land-panel{
  width: 100%;
  max-width: 390px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.18);
  position: absolute;
  left: 60%;
  top: 10%;
}

.land-panel-inner{
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 15px;
}

.land-panel-top{
  padding: 15px;
  background: #fff;
  border-radius: 18px 18px 0 0;
}

.land-top-list,
.land-top-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.land-top-detail {
}

.back-to-land {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    color: #1d1b72;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
}

.back-to-land svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.land-top-detail .land-close-btn {
    width: 28px;
    height: 28px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #1d1b72;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.land-top-detail .land-close-btn svg {
    width: 18px;
    height: 18px;
}

.land-search-wrap{
  position: relative;
  flex: 1;
}

.land-search-icon{
  position: absolute;
  top: 50%;
  left: 12px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  color: #8c8c8c;
}

.land-search-input{
  width: 100%;
  height: 30px;
  border: 1.5px solid #535353;
  border-radius: 999px;
  background: #fff;
  padding: 0 16px 0 34px;
  font-size: 14px;
  color: #000;
  outline: none;
}

.land-search-input::placeholder{
  color: #535353;
}

.land-close-btn{
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #1B1464;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.land-close-btn svg{
  width: 18px;
  height: 18px;
}

.land-panel-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.land-result-count{
  font-size: 14px;
  font-weight: 700;
  color: #1B1464;
}

.land-filter-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #13BEF3;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.land-filter-btn svg{
  width: 14px;
  height: 14px;
}

.land-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 3px;
  padding: 15px;
}

.land-list::-webkit-scrollbar{
  width: 6px;
}
.land-list::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.15);
  border-radius: 10px;
}

.land-card{
  background: #f5f5f5;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(0,0,0,.08);
  cursor: pointer;
}

.land-card-head{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.land-checkbox-wrap{
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.land-checkbox-wrap input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.land-checkbox{
  width: 14px;
  height: 14px;
  border: 1.5px solid #808080;
  background: #fff;
  display: block;
}

.land-checkbox-wrap input:checked + .land-checkbox{
  background: #13BEF3;
  border-color: #13BEF3;
  box-shadow: inset 0 0 0 2px #fff;
}

.land-card-title-wrap{
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.land-dot-sold{
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #13BEF3;
  border: 1.5px #000;
  border-style: dashed;
  display: inline-block;
  flex-shrink: 0;
}

.land-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px #000;
  border-style: dashed;
  display: inline-block;
  flex-shrink: 0;
}

.land-dot-off{
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #1B1464;
  border: 1.5px #fff;
  border-style: dashed;
  display: inline-block;
  flex-shrink: 0;
}

.land-card-title{
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #1B1464;
  line-height: 1.2;
}

.land-card-body{
  display: grid;
  grid-template-columns: 1.3fr .95fr;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.land-card-image{
  min-height: 135px;
}

.land-card-image img{
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
}

.land-card-info{
  display: flex;
  flex-direction: column;
}

.land-info-block{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
  font-weight: 500;
  color: #535353;
}

.land-date{
  font-size: 14px;
  border-top: 1px solid #d0d0d0;
}

.land-size{
  font-size: 14px;
  border-top: 1px solid #d0d0d0;
}

.land-desc {
  padding: 10px 10px 8px;
  border-top: 1px solid #d0d0d0;
}

.land-desc p{
  font-size: 11px;
  line-height: 1.35;
  color: #535353;
  width: 100%;
  margin: 0;
}

.land-pagination{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
  display: none;
}

.land-page-numbers{
  display: flex;
  align-items: center;
  gap: 8px;
}

.land-page-btn,
.land-page-nav{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

.land-page-nav{
  background: #8c8c8c;
  color: #fff;
}

.land-page-nav.is-next{
  background: #13BEF3;
}

.land-page-nav svg{
  width: 18px;
  height: 18px;
}

.land-page-btn{
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}

.land-page-btn.is-muted{
  background: #9a9a9a;
}

.land-page-btn.is-active,
.land-page-btn.is-active-alt{
  background: #13BEF3;
}
.property-card {
  background: #f7f7f7;
  display: none;
  max-height: 60vh;
  overflow-y: auto;
  padding: 12px;
}

.property-card::-webkit-scrollbar{
  width: 6px;
}

.property-card::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.15);
  border-radius: 10px;
}

.property-card-inner {
  border-radius: 18px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.property-header {
    padding: 16px 18px 14px;
    border-bottom: 1px solid #cfcfcf;
}

.property-title {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1B1464;
}

.property-body {
    padding: 15px 18px 18px;
}

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

.property-address p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 400;
    color: #535353;
    max-width: 205px;
    width: 100%;
}

.go-to-pin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1B1464;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    margin-top: 2px;
    transition: 0.25s ease;
}

.go-to-pin:hover {
    color: #1B1464;
    opacity: 0.8;
}

.go-to-pin svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    flex-shrink: 0;
    transform: translateY(1px);
}

.listed-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.4;
    color: #555;
}

.listed-date .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #13BEF3;
    flex-shrink: 0;
    display: inline-block;
}

.listed-date span {
    font-weight: 700;
    color: #555;
}

.listed-section-title {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    color: #1B1464;
}

.detail-list {
    margin-bottom: 18px;
}

.detail-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: start;
    gap: 8px 18px;
    margin-bottom: 8px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row .label {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
    color: #535353;
}

.detail-row .value {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
    color: #535353;
    text-align: left;
}

.property-image-wrap {
    position: relative;
    margin-bottom: 14px;
}

.property-swiper {
    position: relative;
    overflow: hidden;
}

.property-swiper .swiper-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #13BEF3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: 0.25s ease;
}

.swiper-btn:hover {
    background: #12a7db;
}

.swiper-btn.prev {
    left: 12px;
}

.swiper-btn.next {
    right: 12px;
}

.swiper-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bottom-section-title {
    margin: 0;
    text-underline-offset: 2px;
}

.bottom-section-title h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1B1464;
}

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

.bottom-section-title ol {
  padding-left: 12px;
}

.bottom-section-title p, .bottom-section-title ol li {
  font-size: 12px;
  font-weight: 400;
  color: #535353;
  width: 100%;
}



.cta-box {
    text-align: center;
    padding: 15px 0 0 0;;
}

.cta-title {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #1B1464;
}

.cta-desc {
    margin: 0 0 20px;
    font-size: 14px !important;
    line-height: 1.6;
    color: #535353 !important;
    margin-left: auto;
    margin-right: auto;
    width: 100% !important;
    margin: 1rem 0 !important;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1B1464;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.cta-phone svg {
    width: 16px;
    height: 16px;
}

.cta-phone:hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 26px;
    background: #F4F6F7;
    color: #1B1464;
    border-radius: 999px;
    text-decoration: none;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 26px;
    background: #13BEF3;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 999px;
    text-decoration: none;
    transition: 0.25s ease;
}

.cta-btn:hover {
    background: #12a9de;
    color: #fff;
}

.filter-box {
    width: 100%;
    display: none;
    padding: 12px 12px 0 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,.08);
}

.filter-box-inner {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 18px;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 14px;
    border-bottom: 1px solid #d1d1d1;
}

.filter-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1B1464;
}

.filter-reset {
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    color: #1B1464;
    cursor: pointer;
    line-height: 1.2;
}

.filter-reset:hover {
    opacity: 0.8;
}

.filter-body {
    padding: 18px 14px 14px;
}

.filter-group {
    margin-bottom: 26px;
}

.filter-group:last-of-type {
    margin-bottom: 24px;
}

.filter-label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #1B1464;
}

.filter-range-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.filter-input-wrap {
    position: relative;
}

.filter-input {
    width: 100%;
    height: 38px;
    border: 0;
    border-bottom: 1px solid #bfbfbf;
    background: transparent;
    padding: 0 24px 0 6px;
    font-size: 14px;
    font-weight: 400;
    color: #535353;
    outline: none;
    border-radius: 0;
    box-shadow: none;
}

.filter-input::placeholder {
    color: #535353;
    opacity: 1;
}

.filter-unit {
    position: absolute;
    right: 2px;
    bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #535353;
    line-height: 1;
    pointer-events: none;
}

.filter-status {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1B1464;
    user-select: none;
}

.filter-check input {
    display: none;
}

.filter-check .checkmark {
    width: 15px;
    height: 15px;
    border: 1px solid #7f7f7f;
    background: transparent;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.filter-check .checkmark.round {
    border-radius: 50%;
}

.filter-check .checkmark.square {
    border-radius: 0;
}

.filter-check input:checked + .checkmark.square::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #13BEF3;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-check input:checked + .checkmark.round::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 7px;
    height: 7px;
    background: #13BEF3;
    border-radius: 50%;
}

.filter-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 14px 14px;
    margin-top: 165px;
}

.filter-btn {
    height: 40px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    cursor: pointer;
    transition: 0.25s ease;
}

.filter-btn-cancel {
    background: #ececec;
    color: #1B1464;
}

.filter-btn-cancel:hover {
    background: #e2e2e2;
}

.filter-btn-apply {
    background: #13BEF3;
    color: #fff;
}

.filter-btn-apply:hover {
    background: #12a9de;
}

.dot-blue {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #13BEF3;
    border: 1.5px #000;
    border-style: dashed;
    display: inline-block;
    flex-shrink: 0;
}

.dot-white {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #FFF;
    border: 1.5px #000;
    border-style: dashed;
    display: inline-block;
    flex-shrink: 0;
}

.project-overview-sec {
    background: #fff;
}

.project-overview-title {
    margin: 0 0 24px;
    text-align: center;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1464;
    text-transform: uppercase;
}

.project-overview-content {
    position: relative;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.project-overview-content.collapsed {
    max-height: 340px;
}

.project-overview-content.expanded {
    max-height: 2000px;
}

.project-overview-inner {
    color: #535353;
    font-size: 15px;
    line-height: 1.6;
}

.project-overview-inner h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    color: #1b1464;
}

.project-overview-inner h3:not(:first-child) {
    margin-top: 18px;
}

.project-overview-inner ol {
    margin: 0 0 8px 20px;
    padding: 0;
}

.project-overview-inner li {
    margin-bottom: 2px;
}

.project-overview-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 95px;
    background: linear-gradient(to bottom, rgba(243,243,243,0) 0%, #fff 78%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.project-overview-content.expanded .project-overview-fade {
    opacity: 0;
}

.project-overview-toggle {
    width: 46px;
    height: 46px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.project-overview-toggle .arrow {
    width: 25px;
    height: 25px;
    border-right: 7px solid #1b1464;
    border-bottom: 7px solid #1b1464;
    transform: rotate(45deg);
    display: block;
    transition: transform 0.3s ease;
}

.project-overview-toggle .arrow-1 {
    margin-top: -2px;
}

.project-overview-toggle .arrow-2 {
    margin-top: -8px;
}

.project-overview-toggle.is-open {
  margin-top: 4rem;
}

.project-overview-toggle.is-open .arrow {
    transform: rotate(-135deg);
}

.project-overview-toggle.is-open .arrow-1 {
    margin-top: 2px;
}

.project-overview-toggle.is-open .arrow-2 {
    margin-top: -5px;
}

.project-overview-cta {
    margin-top: 70px;
    text-align: center;
}

.project-overview-btn {
    min-width: 145px;
    height: 40px;
    padding: 10px 26px;
    border-radius: 999px;
    background: #13BEF3;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.project-overview-btn:hover {
    background: #12a9de;
    color: #fff;
}

/* LEFT */
.nr-faq-heading {
    font-size: 30px;
    font-weight: 600;
    color: #1b1464;
    margin-bottom: 16px;
}

.nr-faq-contact-text {
    color: #535353;
    font-size: 16px;
    line-height: 1.7;
}

.nr-faq-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #535353;
    text-decoration: none;
    margin-top: 10px;
}

.nr-faq-phone:hover {
  color: #535353;
}

.nr-faq-phone svg {
    width: 18px;
    height: 18px;
    color: #1b1464;
}

.nr-faq-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    height: 40px;
    border-radius: 999px;
    background: #13BEF3;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s;
}

.nr-faq-contact-btn:hover {
    background: #12a9de;
}

/* ACCORDION */
.nr-faq-accordion .nr-faq-item {
    border: 0;
    border-bottom: 1px solid #ccc;
}

.nr-faq-btn {
    background: transparent !important;
    box-shadow: none !important;
    padding: 20px 0;
    font-weight: 500;
    font-size: 18px;
    color: #535353;
    position: relative;
}

.nr-faq-btn::after {
    display: none;
}

/* ปุ่ม + */
.nr-faq-btn::before {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #13BEF3;
    color: #fff;
    font-size: 50px;
    font-weight: 200;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ตอนเปิด */
.nr-faq-btn:not(.collapsed)::before {
    content: "–";
    background: #999;
}

.nr-faq-body {
    padding: 0 40px 20px 0;
    color: #535353;
    font-size: 15px;
    line-height: 1.7;
}

.accordion {
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
}

.accordion-button:not(.collapsed) {
  color: #535353;
}

.home.sustainability-section {
    position: relative;
    min-height: 500px;
    background: url('/frontend/images/bg/forest.jpg') center center / cover no-repeat;
    color: #535353;
}

.home.sustainability-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,1) 20%,
        rgba(255,255,255,0.7) 70%,
        rgba(255,255,255,0.3) 80%,
        rgba(255,255,255,0) 100%
    );
}

.home.sustainability-section .content {
  position: relative;
  z-index: 1;
}

.home .sustain-title {
    font-size: 35px;
    font-weight: 600;
    color: #1B1464;
    margin-bottom: 3rem;
}

.home .sustain-desc {
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto 25px;
}

.home .sustain-highlight {
    font-size: 28px;
    font-weight: 600;
    color: #1B1464;
    margin-bottom: 3rem;
}

.home .sustain-highlight span {
    color: #13BEF3;
}

@media (max-width: 1664px) {
  .home-page.business .mySwiper {
    margin-left: 10%;
  }

  .home-page.highlight-projects .content-left {
    padding-left: 11%;
  }

  .home-page.highlight-projects .swiper-button-prev, .home-page.highlight-projects .swiper-rtl .swiper-button-next {
    left: 11%;
  }

  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: 15%;
  }
}

@media (max-width: 1536px) {
  .home-page.business .mySwiper {
    margin-left: 7%;
  }

  .home-page.highlight-projects .content-left {
    padding-left: 8%;
  }

  .home-page.highlight-projects .swiper-button-prev, .home-page.highlight-projects .swiper-rtl .swiper-button-next {
    left: 8%;
  }

  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: 12%;
  }
}


@media (max-width: 1440px) {
  .home-page.business .mySwiper {
    margin-left: 4%;
  }

  .home-page.highlight-projects .content-left {
    padding-left: 5%;
  }

  .home-page.highlight-projects .swiper-button-prev, .home-page.highlight-projects .swiper-rtl .swiper-button-next {
    left: 5%;
  }

  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: 9%;
  }

}


@media (max-width: 1368px) {
  .home-page.business .mySwiper {
    margin-left: 8%;
  }

  .home-page.highlight-projects .content-left {
    padding-left: 9%;
  }

  .home-page.highlight-projects .swiper-button-prev, .home-page.highlight-projects .swiper-rtl .swiper-button-next {
    left: 9%;
  }

  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: 13%;
  }
}


@media (max-width: 1280px) {
  .home-page.about-us .content h2 {
      font-size: 30px;
  }

  .home-page.about-us .content {
    width: 45%;
  }

  .home-page.business .mySwiper {
    margin-left: 5%;
  }

  .home-page.highlight-projects .content-left {
    padding-left: 6%;
  }

  .home-page.highlight-projects .swiper-button-prev, .home-page.highlight-projects .swiper-rtl .swiper-button-next {
    left: 6%;
  }

  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: 11%;
  }
}

@media (max-width: 1199.98px) {

  .section-title {
    font-size: 46px;
  }

  .company-title {
    font-size: 28px;
  }

  .info-text {
    font-size: 18px;
  }
}


@media (max-width: 1024px) {
  .strategic-location .content {
      width: 100%;
      margin-left: 0px;
  }

  .home-page.about-us {
    height: 150vh;
  }

  .home-page.about-us .img-left img, .home-page.about-us .img-left2 img, .home-page.about-us .img-right img, .home-page.about-us .img-right2 img {
    width: 200px;
  }

  .home-page.about-us .img-right {
      position: absolute;
      top: 5%;
      right: 5%;
  }

  .home-page.about-us .img-left {
      position: absolute;
      top: 25%;
  }

  .home-page.about-us .img-right2 {
    top: 45%;
  }

  .home-page.about-us .img-center {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
  }


  .home-page.business .mySwiper {
    margin-left: 2%;
  }

  .home-page.highlight-projects .content-left {
    padding-left: 3%;
  }

  .home-page.highlight-projects .swiper-button-prev, .home-page.highlight-projects .swiper-rtl .swiper-button-next {
    left: 3%;
  }

  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: 8%;
  }

  .land-list, .property-card {
    max-height: 360px;
  }

  .filter-footer {
    margin-top: 2rem;
  }
}

@media (max-width: 991.98px) {
  .head-office-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .company-title {
    font-size: 26px;
  }
  
  .service-section {
  }

  .service-item-desc {
    max-width: 100%;
  }

  .org-modal .modal-body {
    padding: 24px;
  }

  .partner-swiper-wrap {
    padding: 0 40px;
  }

  .gc-logo-wrap {
    margin-bottom: 24px;
  }

  .gc-logo {
    max-width: 190px;
  }

  .board-card {
    padding: 15px 20px 22px;
  }

  .contact-title {
    margin-bottom: 2rem;
  }

  .search-icon {
    display: none;
  }
}

@media (max-width: 884px) {
  .home-page.about-us .img-right2 {
    top: 45%;
  }

  .home-page.highlight-projects .nav-wrap {
    display: none;
  }

  .home-page.business .mySwiper {
    margin-left: 10%;
  }

  .home-page.highlight-projects .content-left, .home-page.highlight-projects .projectSwiper {
    padding-left: 11%;
  }

  .home-page.news .mb-news {
    margin-bottom: 2rem;
  }

  .land-panel {
    max-width: 330px;
  }

  .land-list, .property-card {
    max-height: 299px;
  }
}

@media (max-width: 834px) {
  .home-page.about-us .img-center img {
      width: 300px;
  }

  .home-page.business .mySwiper {
    margin-left: 6%;
  }

  .home-page.highlight-projects .content-left, .home-page.highlight-projects .projectSwiper {
    padding-left: 7%;
  }
}

@media (max-width: 820px) {
  .home-page.business .mySwiper {
      margin-top: 5rem;
  }

  .gc-network-title, .gc-network-desc {
    width: 100%;
  }

  .land-panel {
    max-width: 300px;
  }

  .land-list, .property-card {
    max-height: 260px;
  }
}

@media (max-width: 768px) {
  .home-page.business .mySwiper {
      margin-left: 3%;
  }

  .home-page.highlight-projects .content-left, .home-page.highlight-projects .projectSwiper {
    padding-left: 4%;
  }

  .gc-network-title, .partner-title, .org-title, .board-title, .service-title {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .strategic-location .content h2 {
    font-size: 20px;
  }

  .strategic-location .content h3 {
    font-size: 18px;
  }

  .home-page.about-us .content h2 {
    font-size: 25px;
  }

  .home-page.about-us .content {
    width: 90%;
  }

  .home-page.business h2 {
    font-size: 30px;
  }

  .home-page.news .other-news {
    margin-left: 0;
  }

  .home-page.highlight-projects .title, .home-page.news h2, .home-page.news h2, .home-page.news h2, .home-page.contact .contact-title, .home .sustain-title {
    font-size: 30px;
  }

  .home-page.highlight-projects {
    padding: 60px 0;
  }

  .home-page.news .content {
    margin-bottom: 1rem;
  }

  .home-page.news h3 {
    font-size: 16px;
  }

  .story-block {
    margin-bottom: 2rem;
  }

  .story-block p {
    font-size: 14px;
  }

  .partner-title, .org-title, .board-title {
      font-size: 30px;
  }

  .service-title {
    font-size: 24px;
  }

  .service-item-title {
    font-size: 18px;
  }

  .service-item-desc {
    font-size: 16px;
  }

  .board-title, .org-title, .partner-title {
    margin-bottom: 2rem;
  }

  .gc-network-title {
    font-size: 20px;
  }

  .gc-network-desc {
    font-size: 14px;
  }

  .point-map svg {
    height: 400px;
    object-position: left;
    object-fit: cover;
  }

  .land-panel {
    position: relative;
    left: 0;
    top: 0;
    border-radius:0;
    max-width: 100%;
  }

  .land-list, .property-card {
    max-height: 500px;
  }

  .nr-faq-btn {
    padding: 20px 50px 20px 0;
  }

  .page-navigator {
    top: 30px;
  }
}

@media (max-width: 575.98px) {

  .section-title {
    font-size: 34px;
  }

  .company-title {
    font-size: 23px;
  }

  .office-block h4,
  .follow-us h4 {
    font-size: 19px;
  }

  .info-row {
    gap: 14px;
    margin-bottom: 14px;
  }

  .info-icon {
    flex: 0 0 30px;
    width: 30px;
  }

  .info-icon svg {
    width: 24px;
    height: 24px;
  }

  .info-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .social-list a {
    width: 48px;
    height: 48px;
  }

  .service-item-title {
    font-size: 17px;
  }

  .service-item-desc {
    font-size: 14px;
  }

  .board-card {
    padding: 14px 14px 20px;
    border-radius: 14px;
  }

  .board-name {
    font-size: 16px;
  }

  .board-position {
    font-size: 14px;
  }

  .org-modal-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .partner-swiper-wrap {
    padding: 0 34px;
  }

  .partner-button-prev,
  .partner-button-next {
    width: 34px;
    height: 34px;
  }

  .partner-button-prev svg,
  .partner-button-next svg {
    width: 12px;
    height: 12px;
  }

  .gc-logo {
    max-width: 160px;
  }

  .gc-network-title {
    font-size: 22px;
  }

  .gc-network-desc {
    font-size: 14px;
  }
}

@media (max-width: 540px) {
  .home-page.business .mySwiper {
      margin-left: 0;
  }
}

@media (max-width: 480px) {
  .home-page.about-us .img-left img, .home-page.about-us .img-left2 img, .home-page.about-us .img-right img, .home-page.about-us .img-right2 img {
    width: 150px;
  }

  .home-page.about-us .img-center img {
    width: 280px;
  }
}

@media (max-width: 448px) {
  .gc-network-title {
    font-size: 20px;
  }

  .header .logo img {
    width: 120px;
  }
}

@media (max-width: 432px) {
  .home-page.about-us .content h2 {
    font-size: 20px;
  }

  .gc-network-title {
    font-size: 18px;
  }

  .org-zoom-btn, .org-zoom-btn svg {
    width: 30px;
    height: 30px;
  }

  .board-name {
    font-size: 14px;
  }

  .board-position {
    font-size: 12px;
  }

  .service-title {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
    .home-page.about-us .img-center img {
        width: 200px;
    }

    .home-page.about-us .img-left img, .home-page.about-us .img-left2 img, .home-page.about-us .img-right img, .home-page.about-us .img-right2 img {
        width: 110px;
    }

    .header .logo img {
        width: 90px;
    }
}
















