/* CSS Variables for Theme */
@font-face{font-display:swap;font-family:"Kuro";font-style:normal;font-weight:300;src:url(../fonts/Kuro-Light.1781aab6.woff2) format("woff2"),url(../fonts/Kuro-Light.378d1984.woff) format("woff"),url(../fonts/Kuro-Light.b44edc7a.ttf) format("truetype")}
@font-face{font-display:swap;font-family:"Kuro";font-style:normal;font-weight:900;src:url(../fonts/Kuro-Heavy.5cc85059.woff2) format("woff2"),url(../fonts/Kuro-Heavy.1bd914a6.woff) format("woff"),url(../fonts/Kuro-Heavy.dea16d3f.ttf) format("truetype")}
@font-face{font-display:swap;font-family:"Kuro";font-style:normal;font-weight:600;src:url(../fonts/Kuro-DemiBold.90bc2885.woff2) format("woff2"),url(../fonts/Kuro-DemiBold.d69da4be.woff) format("woff"),url(../fonts/Kuro-DemiBold.246b6b8e.ttf) format("truetype")}
@font-face{font-display:swap;font-family:"Kuro";font-style:normal;font-weight:bolder;src:url(../fonts/Kuro-ExtraBold.9472612b.woff2) format("woff2"),url(../fonts/Kuro-ExtraBold.72eab6d5.woff) format("woff"),url(../fonts/Kuro-ExtraBold.63dee7a1.ttf) format("truetype")}
@font-face{font-display:swap;font-family:"Kuro";font-style:normal;font-weight:700;src:url(../fonts/Kuro-Bold.63538d7d.woff2) format("woff2"),url(../fonts/Kuro-Bold.8b347c88.woff) format("woff"),url(../fonts/Kuro-Bold.8c9458e1.ttf) format("truetype")}
@font-face{font-display:swap;font-family:"Kuro";font-style:italic;font-weight:400;src:url(../fonts/Kuro-Italic.43620769.woff2) format("woff2"),url(../fonts/Kuro-Italic.4bea3c94.woff) format("woff"),url(../fonts/Kuro-Italic.de64da44.ttf) format("truetype")}
@font-face{font-display:swap;font-family:"Kuro";font-style:normal;font-weight:500;src:url(../fonts/Kuro-Medium.58eb3658.woff2) format("woff2"),url(../fonts/Kuro-Medium.4a2ced48.woff) format("woff"),url(../fonts/Kuro-Medium.34250299.ttf) format("truetype")}
@font-face{font-display:swap;font-family:"Kuro";font-style:normal;font-weight:400;src:url(../fonts/Kuro-Regular.e8e30273.woff2) format("woff2"),url(../fonts/Kuro-Regular.50b508bb.woff) format("woff"),url(../fonts/Kuro-Regular.0cbab705.ttf) format("truetype")}
/* CSS Variables for Theme */
:root {
  --primary-color: #bb8a09;
  --primary-dark: #9a7308;
  --primary-light: #d4a00f;
  --secondary-color: #ffd700;
  --text-color: #333;
  --bg-color: #ffffff;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  --overlay-bg: rgba(0, 0, 0, 0.8);
}

/* Dark Theme */
[data-theme="dark"] {
  --text-color: #ffffff;
  --bg-color: #1a1a1a;
  --card-bg: #2d2d2d;
  --border-color: #404040;
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  --overlay-bg: rgba(0, 0, 0, 0.9);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Kuro", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: all 0.3s ease;
}
.hide{
  display:none!important;
}
.clear20{
  clear: both;
  height: 20px;
}
/* Navigation Styles */
.navbar-custom {
  background-color:var(--bg-color);
  padding: 15px 0;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--primary-color);
}

.navbar-custom.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 8px 0;
  backdrop-filter: blur(15px);
  /* background-color: rgba(255, 255, 255, 0.95) !important; */
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.3s ease;
  border-bottom: 4px solid var(--primary-dark);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-custom .navbar-brand img {
  height: 85px;
  width: auto;
  transition: all 0.3s ease;
}
a.navbar-brand{
  margin-top: 0;padding-top: 0;margin-bottom: 0;padding-bottom: 0;
}
.navbar-custom.sticky .navbar-brand img {
  height: 35px;
}

.navbar-custom .navbar-nav .nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  font-size: 16px;
  margin: 0 8px 0 0;
  padding: 8px 5px !important;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-special, .navbar-custom .navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  /* background-color: rgba(187, 138, 9, 0.1); */
  transform: translateY(-2px);
  border-radius: 5px;
}
h1.nav-blink,
.service-icon-right .nav-blink::after,
.nav-special::after,.navbar-custom .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-special::after,.navbar-custom .navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Auth Button */
.btn-auth {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white !important;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 3px 10px rgba(187, 138, 9, 0.3);
}
.btn-auth.loggedin1,
.btn-auth.loggedin0{
  background: linear-gradient(45deg, #444444, #a7a7a7);
}
/* .btn-auth.loggedin1{
  background: linear-gradient(45deg, #979500, #dbd800);
} */
.btn-auth.loggedin2{
  background: linear-gradient(45deg, #181818, rgb(216, 231, 0));
}
.btn-auth.loggedin5{
  background: linear-gradient(45deg, #5a5a5a, #5a5a5a);
}
.btn-auth.loggedin3{
  background: linear-gradient(45deg, #00920c, #31d40f);
}
.btn-auth.loggedin4{
  background: linear-gradient(45deg, #7e0077, #d300c8);
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(187, 138, 9, 0.4);
  color: white !important;
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
}
.btn.btn-auth.reg {
  background: linear-gradient(45deg, var(--bs-green), var(--bs-green));
}
/* Theme Toggle Button */
#themeToggle,
#themeToggleDesktop {
  border: 2px solid rgba(51, 51, 51, 0.3);
  background: transparent;
  color: var(--text-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#themeToggle:hover,
#themeToggleDesktop:hover {
  background: rgba(187, 138, 9, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: rotate(180deg);
}

/* Dropdown Styles */
.navbar-custom .dropdown-menu,
.dropdown-menu-ter2 {
  background-color: var(--card-bg);
  border: none;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 10px 0;
  min-width: 220px;
}

.navbar-custom .dropdown-item,
.dropdown-item-ter2 {
  color: var(--text-color);
  padding: 12px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
  margin: 2px 10px;
}

ul.ter2 {
  display: none !important;
}

.dropdown-submenu:hover > ul.ter2 {
  display: block !important;
}

.navbar-custom .dropdown-item:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

/* Multi-level dropdown */
.navbar-custom .dropdown-submenu {
  position: relative;
}

.navbar-custom .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  margin-left: 5px;
}

.navbar-custom .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.navbar-custom .dropdown:hover > .dropdown-menu {
  display: block;
}

.navbar-custom .dropdown-submenu > a::after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: var(--text-color);
  margin-top: 5px;
  margin-right: -10px;
  transition: all 0.3s ease;
}

.navbar-custom .dropdown-submenu:hover > a::after {
  border-left-color: white;
}

/* Main Content */
.main-content {
  padding: 0;
  margin-top: 20px;
}

.navbar-custom.sticky ~ .container.main-content {
  margin-top: 0px;
}

/* Main Slider */
.main-slider {
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: var(--shadow); */
  position: relative;
}

.main-slider .item {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.main-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 15px;
}

.main-slider .item:hover img {
  transform: scale(1.05);
}

.slider-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: var(--overlay-bg);
  padding: 25px;
  border-radius: 10px;
  color: white;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.side-banner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  height: 190px;
}

.side-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.side-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.side-banner:hover img {
  transform: scale(1.1);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-bg);
  opacity: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.side-banner:hover .banner-overlay {
  opacity: 1;
}

.banner-text {
  color: white;
  text-align: left;
}

.banner-text h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.banner-text p {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
}

/* Service Icons Section */
.service-icons {
  margin: 0 0 60px 0;
}

.service-icon {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  margin: 10px;
  border: 1px solid var(--border-color);
  height: auto;
  min-height: 120px;
}

.service-icon-content {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.service-icon-left {
  flex-shrink: 0;
}

.service-icon-left i {
  font-size: 48px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-icon:hover .service-icon-left i {
  transform: scale(1.1);
  color: var(--primary-dark);
}

.service-icon-right {
  flex: 1;
}

.service-icon-right h5 {
  color: var(--text-color);
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.service-icon-right p {
  color: var(--text-color);
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}
.service-icons.service-icons-noslider {
  display: flex;
}
.service-icons.service-icons-noslider > .service-icon {
  flex: 1;
}

/* Responsive cho service icons */
@media (max-width: 768px) {
  .service-icon-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .service-icon-left i {
    font-size: 40px;
  }
}

/* News Section */
.news-section {
  background: var(--card-bg);
  padding: 50px 0 0;
  margin: 60px 0 0 0;
  border-radius: 20px;
}

.news-section h3 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 28px;
}

.view-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-more:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.news-item {
  background: var(--bg-color);
  border-radius: 15px;
  padding: 25px;
  margin: 10px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.news-item h6 {
  /* color: var(--bs-dark); */
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item p {
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.news-item .date {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 500;
  margin-top: auto;
}

/* About Us Section */
.about-us-section {
  margin: 60px 0;
  padding: 60px 0;
  background: var(--card-bg);
  border-radius: 20px;
}

.about-us-section h3 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 30px;
}

.about-card {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.5s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.about-card:hover .about-card-bg {
  transform: scale(1.1);
}

.individual-customers .about-card-bg,
.investment-bank .about-card-bg,
.corporate-customers .about-card-bg {
  background: none;
}

.about-card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  z-index: 2;
}

.about-card-content h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-card-content .card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
  opacity: 0.9;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 18px;
}

.about-card-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}

.about-card:hover .about-card-overlay {
  left: 0;
  background: rgba(0, 0, 0, 0.9);
}

.about-card-overlay h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-card-overlay .service-list li {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transform: translateX(-20px);
  opacity: 0;
  animation: slideInLeft 0.5s ease forwards;
}

.about-card:hover .about-card-overlay .service-list li {
  animation-delay: calc(0.1s * var(--i, 0));
}

.about-card-overlay .service-list li:nth-child(1) {
  --i: 1;
}
.about-card-overlay .service-list li:nth-child(2) {
  --i: 2;
}
.about-card-overlay .service-list li:nth-child(3) {
  --i: 3;
}
.about-card-overlay .service-list li:nth-child(4) {
  --i: 4;
}
.about-card-overlay .service-list li:nth-child(5) {
  --i: 5;
}
.about-card-overlay .service-list li:nth-child(6) {
  --i: 6;
}
.about-card-overlay .service-list li:nth-child(7) {
  --i: 7;
}
.about-card-overlay .service-list li:nth-child(8) {
  --i: 8;
}

.about-card-overlay .service-list li i {
  margin-right: 15px;
  color: var(--secondary-color);
  font-size: 16px;
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Footer */
.footer {
  background: linear-gradient(rgba(187, 138, 9, 0.8), rgba(187, 138, 9, 0.8)),
    url("../image/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer h5 {
  /* color: var(--secondary-color); */
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 20px;
}

.footer h6 {
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 16px;
}

.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer ul li:hover {
  transform: translateX(5px);
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer ul li a:hover {
  color: var(--secondary-color);
}

.footer ul li a::before {
  content: "▶";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--secondary-color);
}

.footer ul li a:hover::before {
  opacity: 1;
  left: -20px;
}

.footer .contact-info i {
  color: var(--secondary-color);
  margin-right: 15px;
  width: 20px;
  font-size: 16px;
}

.footer-logo {
  max-height: 80px;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Owl Carousel Custom Styles */
.owl-nav button {
  opacity: 0;
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--primary-color) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 20px !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  transition: all 0.3s ease !important;
  border: none !important;
  box-shadow: var(--shadow) !important;
}

.owl-nav button:hover {
  background: var(--primary-color) !important;
  color: white !important;
  transform: translateY(-50%) scale(1.1) !important;
  opacity: 1;
  pointer-events: auto;
}
.owl-carousel:hover .owl-nav button {
  opacity: 1;
}

.owl-nav .owl-prev {
  left: 20px !important;
}

.owl-nav .owl-next {
  right: 20px !important;
}

.owl-dots {
  text-align: center;
  margin-top: 25px;
}

.owl-dots .owl-dot {
  margin: 0 8px;
}

.owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  background: rgba(187, 138, 9, 0.3);
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: var(--primary-color);
  transform: scale(1.3);
}

/* Slider Section */
.slider-section {
  padding: 20px 0;
}

@media (max-width: 1600px) {
  .slider-section .container {
    max-width: 100%;
    padding: 0 15px;
  }

  .slider-section .main-slider {
    border-radius: 0;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .navbar-custom .dropdown-submenu .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-left: 20px;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    margin-top: 5px;
  }

  .navbar-custom .dropdown-submenu > a::after {
    display: none;
  }

  .main-slider .item {
    height: 300px;
  }

  .slider-content {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
  }

  .slider-content h2 {
    font-size: 20px;
  }

  .slider-content p {
    font-size: 14px;
  }

  .about-us-section {
    margin: 40px 0;
    padding: 40px 0;
  }

  .about-card {
    height: 300px;
    margin-bottom: 20px;
  }

  .about-card-content h4,
  .about-card-overlay h4 {
    font-size: 20px;
  }

  .service-list li {
    font-size: 14px;
    padding: 6px 0;
  }
}

@media (max-width: 768px) {
  .main-content {
    padding: 30px 0;
  }

  .main-slider .item {
    height: 250px;
  }

  .side-banner {
    height: 150px;
    margin-bottom: 15px;
  }

  .service-icon {
    margin-bottom: 20px;
    padding: 25px 15px;
  }

  .service-icon-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .service-icon-left i {
    font-size: 40px;
  }

  .news-section {
    padding: 40px 0;
    margin: 40px 0;
  }

  .news-item {
    height: auto;
    min-height: 160px;
  }

  .footer {
    padding: 40px 0 15px;
    background-attachment: scroll;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .about-us-section {
    margin: 30px 0;
    padding: 30px 0;
  }

  .about-us-section h3 {
    font-size: 24px;
  }

  .about-card {
    height: 280px;
  }

  .about-card-content,
  .about-card-overlay {
    padding: 20px;
  }

  .about-card-content h4,
  .about-card-overlay h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .service-list li {
    font-size: 13px;
    padding: 5px 0;
  }

  .about-card-content .card-image {
    height: 120px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .navbar-custom {
    padding: 10px 0;
  }

  .navbar-custom .navbar-brand img {
    height: 40px;
  }

  .main-slider .item {
    height: 200px;
  }

  .slider-content {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px;
  }

  .slider-content h2 {
    font-size: 18px;
  }

  .slider-content p {
    font-size: 13px;
  }

  .side-banner {
    height: 130px;
  }

  .banner-text h2 {
    font-size: 16px;
  }

  .banner-text p {
    font-size: 13px;
  }

  .service-icons {
    margin: 40px 0;
  }

  .news-section h3 {
    font-size: 24px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .about-card {
    height: 250px;
  }

  .about-card-content,
  .about-card-overlay {
    padding: 15px;
  }

  .about-card-content h4,
  .about-card-overlay h4 {
    font-size: 16px;
  }

  .service-list li {
    font-size: 12px;
  }

  .about-card-content .card-image {
    height: 100px;
  }
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Register Section */
.register-section {
  background: linear-gradient(135deg, #bb8a09, #9a7308),
    url("../image/Frame.png");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 80px 0;
  margin: 60px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(187, 138, 9, 0.9), rgba(154, 115, 8, 0.8));
  z-index: 1;
}

.register-section .container {
  position: relative;
  z-index: 2;
}

.register-content {
  color: var(--text-color);
  padding-right: 30px;
  text-align: center;
}

.register-content h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}

.register-content h3 {
  font-size: 36px;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

.btn-register {
  background: var(--bs-white);
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-register:hover {
  background: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.register-image {
  text-align: center;
  position: relative;
}

.register-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Subscription Modal Styles */
.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background: var(--primary-color);
  color: white;
  border-radius: 15px 15px 0 0;
  border-bottom: none;
}

.modal-title {
  font-weight: bold;
  font-size: 20px;
}

.btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 30px;
}

.form-label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(187, 138, 9, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.modal-footer {
  border-top: 1px solid var(--border-color);
  padding: 20px 30px;
}

.modal-footer .btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 600;
}

.modal-footer .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Responsive Design for Register Section */
@media (max-width: 768px) {
  .register-section {
    padding: 60px 0;
    margin: 40px 0;
  }

  .register-content {
    text-align: center;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .register-content h2 {
    font-size: 32px;
  }

  .register-content h3 {
    font-size: 28px;
  }

  .btn-register {
    font-size: 16px;
    padding: 12px 30px;
  }
}

@media (max-width: 576px) {
  .register-content h2 {
    font-size: 28px;
  }

  .register-content h3 {
    font-size: 24px;
  }

  .register-section {
    padding: 40px 0;
    margin: 30px 0;
  }
}

/* Mobile Controls */
.mobile-controls {
  display: flex;
  align-items: center;
}

/* Mobile Theme Toggle */
@media (max-width: 991px) {
  #themeToggle {
    border: 2px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  #themeToggle:hover {
    background: rgba(187, 138, 9, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(180deg);
  }
}

/* Mobile Navbar Toggler */
.navbar-toggler {
  border: 2px solid var(--text-color) !important;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(187, 138, 9, 0.1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 20px;
  height: 20px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.show {
  transform: translateX(0);
}

.mobile-menu-header {
  background: var(--primary-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-menu-logo {
  height: 40px;
  width: auto;
}

.mobile-menu-close {
  background: transparent;
  border: 2px solid white;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.mobile-menu-content {
  padding: 20px 0;
}

.mobile-menu-featured {
  background: var(--primary-color);
  color: white;
  padding: 20px;
  margin: 0 -15px 30px -15px;
  border-radius: 10px;
}

.mobile-menu-featured h5 {
  margin: 0;
  font-weight: bold;
  font-size: 18px;
}

.mobile-menu-items {
  margin-bottom: 30px;
}

.mobile-menu-item {
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.mobile-menu-item:hover {
  background: rgba(187, 138, 9, 0.05);
}

.mobile-menu-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.mobile-menu-link {
  color: var(--text-color);
  text-decoration: none;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  flex: 1;
  transition: all 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--primary-color);
}

.mobile-submenu-toggle {
  background: transparent;
  border: none;
  color: var(--text-color);
  padding: 18px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mobile-submenu-toggle:hover {
  color: var(--primary-color);
}

.mobile-submenu-toggle.active {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.mobile-submenu {
  background: rgba(187, 138, 9, 0.05);
  margin: 0 -15px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-submenu.show {
  max-height: 500px;
  padding: 10px 0;
}

.mobile-submenu-link {
  color: var(--text-color);
  text-decoration: none;
  padding: 12px 30px;
  font-size: 15px;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(187, 138, 9, 0.1);
}

.mobile-submenu-link:hover {
  color: var(--primary-color);
  background: rgba(187, 138, 9, 0.1);
  padding-left: 35px;
}

.mobile-submenu-item {
  position: relative;
}

.mobile-submenu-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 50px;
}

.mobile-submenu-nested {
  background: rgba(187, 138, 9, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-submenu-nested.show {
  max-height: 200px;
}

.mobile-submenu-nested-link {
  color: var(--text-color);
  text-decoration: none;
  padding: 10px 0 10px 80px;
  font-size: 14px;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(187, 138, 9, 0.1);
}

.mobile-submenu-nested-link:hover {
  color: var(--primary-color);
  background: rgba(187, 138, 9, 0.15);
  padding-left: 55px;
}

.mobile-menu-auth {
  padding: 20px 0;
  border-top: 2px solid var(--border-color);
}

/* Hide mobile menu overlay on desktop */
@media (min-width: 992px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* Mobile Register Section */
@media (max-width: 767px) {
  .register-content {
    text-align: center;
    padding-right: 0;
  }

  .register-section .row {
    justify-content: center;
  }
}

/* Mobile Main Content Adjustments */
@media (max-width: 767px) {
  .main-content .row {
    margin: 0;
  }

  .main-content .col-lg-8 {
    padding: 0 15px;
  }
}

/* Responsive Design */
@media (min-width: 1600px) {
  .slider-section>.container {
    width: 100% !important;
    max-width: unset;
    padding: 20px 20px 0 20px;
    /* margin-left: calc(-50vw + 50%);
    border-radius: 0; */
  }
}
/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.navbar-custom{
  padding: 0;;
}
/* .nav-special::after, .navbar-custom .navbar-nav .nav-link::after{
}
.nav-link.nav-special.dropdown-toggle {
  background-color: var(--bs-form-valid-border-color)!important;
  color: white !important;
}
.nav-link.nav-special.nav-khprivate {
  background-color: var(--bs-danger)!important;
  color: white !important;
}
  */

.modal-content {
  background: var(--bg-color);
}
.service-icon-right .nav-blink,
h1.nav-blink,
.upgrade-intro .nav-link.nav-blink,
.navbar-nav .nav-link.nav-blink:after,
.navbar-nav .nav-link.nav-blink {
  background:linear-gradient(90deg,var(--secondary-color),var(--primary-dark));
  background-size:200% 100%;
  background-position:100%;
  animation:bg-position-gradient 1s linear infinite;
  animation-fill-mode:backwards;
  font-weight: 700;
}
h1.nav-blink,
.service-icon-right .nav-blink,
.upgrade-intro .nav-link.nav-blink,
.navbar-nav .nav-link.nav-blink {
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 1 !important;
    font-size: 1rem;
    align-items: center;
    white-space: nowrap;
}
.navbar-nav .nav-link.nav-blink:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #a1c038, #074c31);
}

h1.nav-blink,
.navbar-nav .nav-link.nav-blink::after,
.service-icon-right .nav-blink::after{
  color:transparent!important;
  -webkit-background-clip:text;
  background-clip:text;
  opacity:1!important;
  font-size:1rem;
  align-items:center;
  font-weight:700;
  transition: all 2s ease;
  transform: translateX(-50%);
  
}

@keyframes bg-position-gradient {
  0% {
    background-position:200% 100%
  }
  to {
    background-position:0 100%
  }
}
.stock-code.st-center {
  display: flex;
   justify-content: center;
}
@media (min-width: 1920px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1600px;
  }
}
.hero-content {
  position: relative;
  min-height: 250px;
}
h1.nav-blink {
  position: absolute;
  top: -50px;
  height: auto;
  width: 100%;
}
@media (max-width: 722px) {
  .summary-text img {
    max-width: 100% !important;
    height: auto;
  }
}
@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 100%;
    }
    .navbar-custom .navbar-brand img {
    height: 65px;
    }
}