/* ===== CSS Custom Properties ===== */
:root {
  --primary: #0d4a43;
  --primary-dark: #1c83fa;
  --accent: #ff6b35;
  --text: #333;
  --light: #fff;
  --gray: #f5f5f5;
  --border: #eee;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: var(--font-main);
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  color: var(--text);
  background: #effffd;
  position: relative;
}
img {
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
}

/* ===== Layout ===== */
.container {
  width: min(100% - 2rem, 1250px);
  margin-inline: auto;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.4rem;
}
p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.highlight {
  color: var(--accent);
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  padding: 0.2rem 1.2rem;
  background: transparent;
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  border: 2px solid var(--primary);
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
}

/* ===== Header ===== */
.header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  position: fixed;
  left: 0px;
  right: 0px;
  top: 20px;
  height: 65px;
  display: flex;
  align-items: center;
  max-width: 1250px;
  margin: 0 auto;
  border-radius: 100px;
  border-bottom: 1px solid #dcdcdc;
  background: #fff0e3b5;
  padding: 0px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo img {
  height: 100%;
  display: block;
}
.nav ul {
  display: flex;
  gap: 2rem;
}
.nav a {
  font-weight: 600;
  transition: var(--transition);
}
.nav a:hover {
  color: var(--primary);
}

.support-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0d4a43;
  font-size: 18px;
  font-weight: 500;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 23%;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(rgba(211, 47, 47, 0.9), rgba(183, 28, 28, 0.8)),
    url("../images/banner.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
}
#hero img {
  max-width: 100%;
}
#hero .pc-banner {
  width: 100%;
}

.hero h1 {
  margin-bottom: 1rem;
}

.marqueDiv {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  background: #0d4a43;
  width: 100%;
  border-radius: 0px;
  color: #fff;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 5px 10px;
}

.marque-content {
  display: flex;
  margin: 0 auto;
  max-width: 1250px;
}
.badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}
.badges img {
  height: 60px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ===== Tables ===== */
.table-wrapper {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: transparent !important;
}
th,
td {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  border: 2px solid #0d4a43;
}
th {
  background: #0d4a43;
  color: white;
  font-weight: 600;
}
/* tbody tr:hover {
  background: #2b8eff1c;
} */
.note {
  padding: 0;
}
.note p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

/* ===== Steps ===== */
.steps {
  padding: 20px 0px;
}

.steps-grid {
  display: flex;
  gap: 2rem;
  grid-template-columns: repeat(
    3,
    minmax(0, 1fr)
  ); /* Desktop / tablet: 3 cột */
}

.step {
  padding: 10px 10px;
  text-align: center;
  box-shadow: 0px 5.1px 10.19px 0px #00000040 inset;
  transition: var(--transition);
  background: linear-gradient(180deg, #093d39 0%, #146056 52.37%, #093d39 100%);
  border-radius: 16px;
  border: 2px solid #ffffff;
  position: relative;
  box-shadow: 0px 5.1px 10.19px 0px #00000040 inset;
}
.step:hover {
  scale: 1.05;
}
.steps .steps-items {
  width: 100%;
  text-align: center;
}

.steps img {
  margin: 0 auto;
}

.steps-items > img {
  margin: 0 auto 10px auto;
  max-width: 90px;
  height: auto;
}

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

.step h3 {
  border-radius: 30px;
  padding: 10px;
  color: #0d4a43;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  background: #ffffff;
}

.step p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 0 !important;
  min-height: 95px;
}

/* ===== Features ===== */
.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}
.feature {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.feature h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
}

/* ===== Footer ===== */
.footer {
  background: #f0f4f7;
  padding: 0;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}
.footer h4 {
  color: white;
  margin-bottom: 1rem;
}
.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* ===== LỢI ÍCH KHI HỢP TÁC SECTION ===== */
.benefits {
  padding: 2rem 0rem;
  padding-top: 0rem;
}
.section-btn {
  text-align: center;
  margin-bottom: 0;
}
.section-btn img {
  cursor: pointer;
}
.benefits .section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #0d4a43;
  margin-bottom: 2rem;
  position: relative;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.deco-left,
.deco-right {
  display: flex;
}

.simple-para {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 19px 0px;
}
.simple-para p {
  margin-bottom: 0rem;
  color: #4e4e4e;
  font-weight: 600;
  font-size: 22px;
  line-height: normal;
  text-align: center;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 4fr));
  gap: 1rem;
  max-width: 1400px;
  padding-top: 30px;
  margin: 0 auto;
}

.benefit-item:hover {
  transform: translateY(-2px);
}
.benefit-item {
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0px 4px 9px 0px #062b2780;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item:hover {
  scale: 1.05;
}
.cert-item img:hover {
  scale: 1.05;
}
.nav-link:hover {
  scale: 1.05;
}

.benefit-item .icon {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
}

.text-item {
  display: grid;
  justify-content: flex-start;
  padding-top: 30px;
}

.benefit-item h3 {
  color: #0d4a43;
  padding: 5px 0px;
  font-weight: 800;
  font-size: 22px;
  display: inline-block;
  text-align: center;
}

.benefit-item p {
  font-size: 14px;
  color: #444;
  margin: 0;
  text-align: center;
  font-weight: 500;
  line-height: normal;
}

.benefit-item p strong {
  color: #0d4a43;
  font-weight: 600;
}

.agent {
  padding: 1rem 0rem;
}

.agent-title-bg {
  position: relative;
}

.agent-title-bg h4 {
  position: absolute;
  top: 5px;
  left: 40px;
  font-size: 17.5px;
  font-weight: 800;
  color: #0d4a43;
}
.agent .agent-para {
  padding: 10px 0px;
}
.agent-para p {
  font-size: 16px;
  color: #000;
  margin-bottom: 0;
  line-height: normal;
  text-align: justify;
}

.bonus-table {
  padding: 1rem 0rem;
}

.commissionBonus {
  padding: 1rem 0rem;
}

.commision-border {
  padding-top: 10px;
  padding-bottom: 10px;
}
.commis-calculator {
  border-radius: 10px;
  text-align: center;
  padding: 20px 10px;
}
.commis-calculator h3 {
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  color: #34344b;
  padding-bottom: 10px;
}
.commis-calculator p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #4b5563;
  margin-bottom: 4px;
}
.commis-calculator button {
  border: 0;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 75px;
  color: #f7ff5b;
  margin: 0 auto;
  background: #0d4a43;
  box-shadow: 0px 10.53px 15.79px -3.16px #0000001a;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}

.commis-calculator span {
  display: block;
}

/* video section css  */
.activated-agents {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 100px;
  background: #0d4a43;
}
.activated-agents h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #fff;

  padding: 10px 10px;
}
.activated-agents h4 span {
  color: #ffbf00;
}

.vid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  row-gap: 1rem;
}
.vid-item {
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: flex-start;
}

.video-container {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.video-placeholder {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.videos .section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #0d4a43;
  margin-bottom: 2rem;
  position: relative;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.video-placeholder:hover .placeholder-image {
  opacity: 0.9;
}

#videoPlayer {
  border-radius: 10px;
  display: none;
}

/* Footer Banner Section */
.footer-banner {
  padding: 40px 0;
  border-bottom: 1px solid #333;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
}

.banner-left {
  display: flex;
}
.compadderss {
  display: flex;
}

.banner-right {
  display: flex;
  gap: 10px;
  background: transparent;
  border-radius: 10px;
  padding: 5px;
  align-items: center;
}
.players-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.banner-center {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.badge {
  width: 389px;
  height: 68px;
  margin-bottom: 10px;
}
.title {
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 0;
  color: #343434;
}

.subtitle {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #343434;
}

.kjclogo {
  width: 175px;
  height: 59px;
}

.lefimg {
  width: 230px;
  height: 153px;
}

.partnership-title {
  font-weight: 900;
  font-size: 20px;
  color: #343434;
  padding-bottom: 5px;
}

.partnership-desc {
  font-size: 14px;
  color: #343434;
  font-weight: 400;
  margin-bottom: 0px;
}

.partnership-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.footer-nav {
  background: #1a1a1a;
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.nav-link {
  color: #343434;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0d4a43;
}

.nav-separator {
  color: #666666;
  font-size: 14px;
  line-height: 1;
}

.footer-certificates {
  background: #1a1a1a;
  padding: 30px 0;
}

.certs-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.certs-grid {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.cert-item {
  width: 40px;
  height: 40px;
}

.cert-item img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: contain;
}

.mbfoooter {
  display: none;
}

.mb-banner {
  display: none;
}

.bonus-table .bonus-border {
  padding: 10px 0px;
}
.bonus-table .agent-para {
  padding-bottom: 10px;
}
.commis-bons {
  padding: 10px 0px;
}

/* Tele bot */
.tele-bot-div {
  position: fixed;
  right: 15px;
  bottom: 16%;
  z-index: 9;
}

.tele-bot-div .tele-bot {
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.tele-bot-div .bot-content {
  width: 300px;
  /* background: #fff; */
  border-radius: 10px;
  box-shadow: 0px 0px 7.1px 0px #25c4af80;
  border: 2px solid #ffffff;
  padding: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  display: block; /* PC: luôn hiện sẵn */
}

.bot-content {
  background-image: url("../images/tg-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  /* height: 100px; */
}

.tele-bot-div .bot-img {
  position: absolute;
  right: 0;
  bottom: -70px;
}

.tele-bot-bottom {
  position: fixed;
  right: 15px;
  bottom: 2%;
  z-index: 9;
}
.tele-bot-bottom .tele-bot {
  width: 50px;
  height: 50px;
  cursor: pointer;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: #f2fbff;
  z-index: 1001;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 20px;
  overflow-y: auto;
}

.side-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar.open {
  left: 0;
}

.close-btn {
  position: absolute;
  top: 0px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  z-index: 1002;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.sidebar-nav li {
  margin-bottom: 15px;
}

.sidebar-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  display: block;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s;
}

.sidebar-nav a:hover {
  background: var(--gray);
}

.sidebar-support {
  margin: 10px 0;
  padding: 10px 0px;
  border-top: 1px solid var(--border);
}

.sidebar-support .item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
}

.sidebar-auth {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.sidebar-auth .btn-primary {
  margin: 0;
  width: 100%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.mobileshow {
  display: none;
}

.header.mb {
  display: none;
}
.header.pc {
  display: block;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: var(--radius);
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}
.close-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgb(255, 255, 255);
  font-size: 30px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.close-icons:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Promo Modal Specific */
.promo-content {
  background: transparent;
  border-radius: 20px;
  width: auto;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.promo-main {
  position: relative;
  height: 80%;
}

.promo-main img {
  display: flex;
  border-radius: 20px;
}

.promo-footer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: block;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.no-show {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

#closePromo {
  color: white;
  background: #0d4a43;
  border: none;
  padding: 10px 40px;
  border-radius: 100px;
  font-weight: bold;
  cursor: pointer;
}

/* Calculator Modal Specific */
.calc-content {
  width: 750px;
  padding: 0px;
  text-align: center;
}

.calc-content h2 {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
}

.model-header {
  background: #0d4a43;
  color: #fff;
  display: flex;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  justify-content: center;
  padding: 16px 40px;
}

.inputs-section {
  margin-bottom: 20px;
}
.calc-body {
  padding: 10px 20px;
  overflow-y: auto;
  max-height: calc(90vh - 70px);
}
.input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.input-group {
  flex: 1;
  text-align: left;
}

.section-heading h3 {
  color: #0d4a43;
  font-size: 16px;
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 5px;
}

.input-group label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  background: transparent;
}

.ket-qua {
  text-align: left;
  margin-bottom: 20px;
}

.ket-qua h3 {
  color: #0d4a43;
  text-align: left;
  margin-bottom: 15px;
}

.result-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.result-item {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result-item.item1 {
  background: #f0f6ff;
  border: 1.02px solid #c2daff;
}
.result-item.item2 {
  background: #f1fdf4;
  border: 1.02px solid #a7ffbd;
}
.result-item.item3 {
  background: #faf5ff;
  border: 1.02px solid #e1c3ff;
}
.result-item.item4 {
  background: #f9fafb;
  border: 1.02px solid #f0f0f0;
}
.result-item.item1:hover,
.result-item.item2:hover,
.result-item.item3:hover,
.result-item.item4:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.result-item.full-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: unset;
}

.result-item label {
  font-size: 12px;
  color: #999;
  margin-bottom: 0px;
  display: block;
}

.result-item span {
  font-size: 16px;
  font-weight: bold;
  color: #0d4a43;
  display: block;
}

.trang-thai {
  text-align: left;
  margin-bottom: 20px;
}

.trang-thai p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.condition-btn {
  background: #0d4a43;
  border: 1px solid #0d4a43;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

.tong-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d4a43;
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
}

.close-modal-btn {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

/* slider ranger  */
.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #0d4a43;
  cursor: pointer;
  border: 1px solid #fff;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #0d4a43;
  cursor: pointer;
}

.input-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.input-layout {
  width: 100%;
}

/* ------------------ Toggle Button ------------------ */
.calc-toggle-wrapper {
  text-align: center;
  margin-top: 12px;
}

.calc-toggle-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.calc-toggle-btn:hover {
  background-color: #e0e0e0;
}

.calc-toggle-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px #f7931e50;
}

.calc-toggle-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

/* ------------------ Calculation Details Section ------------------ */
.calc-details-section {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 12px;
}

.calc-details-header {
  background: linear-gradient(to right, #f9f9f9, #f0f0f0);
  padding: 8px 12px;
  border-bottom: 1px solid #ddd;
}

.calc-details-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #0d4a43;
}

.calc-details-title-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  color: #f7931e;
}

/* ------------------ Boxes ------------------ */
.calc-details-content {
  padding: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.calc-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  text-align: left;
}

.calc-box-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  font-size: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}
.dot.red {
  background: #0d4a43;
}
.dot.blue {
  background-color: #000;
}
.dot.green {
  background-color: #000;
}
.dot.purple {
  background-color: #000;
}
.dot.black {
  background-color: #000;
}

/* Highlight text */
.highlight-blue {
  font-weight: bold;
  color: #2563eb;
}

.font-medium {
  font-weight: 700;
}

/* ------------------ Mono Calculation Box ------------------ */
.calc-mono-box {
  background-color: #f9f9f9;
  border-radius: 6px;
  padding: 8px;
  font-family: monospace;
  font-size: 13px;
}

.calc-mono-box .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.calc-mono-box .row.red {
  color: #dc2626;
  font-weight: 800;
}

.calc-mono-box .row.result-green {
  font-weight: bold;
  font-size: 16px;
  color: #16a34a;
}

.bold {
  font-weight: bold;
}

.divider {
  margin: 6px 0;
  border-color: #dbdbdb2e;
}

/* ------------------ Commission Table ------------------ */
.commission-table {
  background-color: #f9f9f9;
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 12px;
}

.table-title {
  font-size: 12px;
  color: #555;
  font-weight: 500;
  margin-bottom: 6px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 3fr));
  gap: 6px;
}

.grid-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px;
  font-size: 14px;
}

.grid-item .label {
  font-weight: 500;
  margin-bottom: 2px;
}

.grid-item .desc {
  color: #555;
  font-size: 14px;
}

/* ------------------ Stats Grid ------------------ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 2fr));
  gap: 6px;
  margin-bottom: 12px;
}

.stats-item {
  background-color: #fce9ff;
  border-radius: 6px;
  padding: 8px;
}

.stats-item .label {
  font-size: 12px;
  color: #555;
  margin-bottom: 4px;
}

.stats-item .value {
  font-size: 16px;
  font-weight: bold;
  color: #7c3aed;
}

/* ------------------ Commission Level ------------------ */
.commission-level-box {
  background: #fce9ff;
  border-radius: 6px;
  padding: 8px;
  border: 1px solid #ffccf9;
  margin-bottom: 12px;
}

.commission-level-box .label {
  font-size: 12px;
  color: #555;
  margin-bottom: 2px;
}

.commission-level-box .value {
  font-size: 14px;
  font-weight: bold;
  color: #7c3aed;
}

/* ------------------ Warning Box ------------------ */
.warning-box {
  background-color: #ffeded;
  border: 1px solid #ff8888;
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 12px;
}

.warning-title {
  font-size: 12px;
  color: #dc2626;
  font-weight: 500;
}

.warning-text {
  font-size: 11px;
  color: #dc2626;
  margin-top: 2px;
}

/* ------------------ Total Commission Box ------------------ */
.total-commission-box {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  color: #000;
}

.total-commission-box.white .calc-box-title {
  color: #fff;
}

.total-inner {
  background-color: #0d4a43;
  border-radius: 6px;
  padding: 8px;
}

.total-inner .text-center {
  text-align: center;
  color: #fff;
}

.total-inner .small {
  font-size: 12px;
  opacity: 0.9;
}

.total-inner .formula {
  font-family: monospace;
  font-size: 16px;
  font-weight: 500;
}

.total-inner .sub {
  font-size: 10px;
  opacity: 0.75;
  margin-top: 2px;
}

.total-inner .total {
  font-size: 20px;
  font-weight: bold;
  margin-top: 4px;
}

.common-bg-for-all {
  max-width: 1250px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #0d4a43;
  border-radius: 20px;
}

.agent img.title1 {
  width: auto;
}
.commission img.title2 {
  width: auto;
}
.bonus-table img.title3 {
  width: auto;
}
.commissionBonus img.title4 {
  width: auto;
}
.commissionBonus img.title5 {
  width: auto;
}

.agent img.mb-title1 {
  display: none;
}
.commission img.mb-title2 {
  display: none;
}
.bonus-table img.mb-title3 {
  display: none;
}
.commissionBonus img.mb-title4 {
  display: none;
}
.commissionBonus img.mb-title5 {
  display: none;
}

.banner-pc {
  display: block;
  width: 100%;
}
.banner-mb {
  display: none;
}

.home-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.videoparaformb {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .videoparaformb {
    display: block;
  }
  .tele-bot-bottom {
    display: none;
  }

  .banner-pc {
    display: none;
  }
  .banner-mb {
    display: block;
    width: 100%;
  }
  .deco-left,
  .deco-right {
    display: none;
  }
  .agent img.title1 {
    display: none;
  }
  .commission img.title2 {
    display: none;
  }
  .bonus-table img.title3 {
    display: none;
  }
  .commissionBonus img.title4 {
    display: none;
  }
  .commissionBonus img.title5 {
    display: none;
  }

  .agent img.mb-title1 {
    display: block;
    padding-bottom: 10px;
  }
  .commission img.mb-title2 {
    display: block;
    padding-bottom: 10px;
  }
  .bonus-table img.mb-title3 {
    display: block;
    padding-bottom: 10px;
  }
  .commissionBonus img.mb-title4 {
    display: block;
    padding-bottom: 10px;
  }
  .commissionBonus img.mb-title5 {
    display: block;
    padding-bottom: 10px;
  }

  .activated-agents {
    max-width: 100%;
  }
  .activated-agents h4 {
    font-size: 14px;
  }

  .common-bg-for-all {
    background: transparent;
    border-radius: 0;
    border: 0;
    max-width: 100%;
  }

  table.styled-table th,
  table.styled-table td {
    border-radius: 3px !important;
  }

  table.styled-table thead th {
    border-radius: 3px !important;
  }

  .agent .agent-para {
    border: 2px solid #0d4a43;
    border-radius: 10px;
    padding: 10px 10px;
  }

  .commision-border {
    border: 2px solid #0d4a43;
    padding: 10px;
    border-radius: 10px;
  }

  .bonus-table .bonus-border {
    border: 2px solid #0d4a43;
    padding: 10px 10px;
    border-radius: 10px;
  }

  .commis-bons {
    border: 2px solid #0d4a43;
    border-radius: 10px;
    padding: 10px 10px;
  }

  .header {
    left: 15px;
    right: 15px;
    top: 10px;
    max-width: 100%;
    padding: 4px 0px;
  }

  .mbreghed {
    border-radius: 20px;
    padding: 4px;
    background: #ffffff;
    border: 0.7px solid #0d4a43;
    font-weight: 700;
    font-style: Bold;
    font-size: 8px;
    text-align: center;
    text-transform: uppercase;
    color: #0d4a43;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-nav {
    display: none;
  }

  .header .container {
    padding: 0.2rem 0;
  }
  .home-btn-wrap {
    text-align: center;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .commis-calculator button {
    font-size: 12px;
  }

  .footer_grid {
    border: 2px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0px 1.7px 4.35px 0px #58c3b55c;
    background: #ffffff03;
    border-right-width: 0;
    border-bottom-width: 0;
  }

  .steps {
    padding-bottom: 0px;
  }

  .section-btn img {
    max-width: 180px;
  }
  table.styled-table th,
  table.styled-table td {
    font-size: 12px;
  }
  .header.mb {
    display: block;
    height: auto;
  }
  .header.pc {
    display: none;
  }
  .input-flex {
    display: block;
  }

  .mb .mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .header a.logo img {
    height: auto !important;
  }
  .commis-bons {
    margin-bottom: 20px;
  }
  .mobileshow {
    display: block !important;
  }
  .tele-bot-div {
    display: block;
  }

  .tele-bot-div .bot-content {
    display: none;
  }

  .mb-banner {
    display: block;
    width: 100%;
  }

  /* Auth buttons trên mobile – nếu có, full width */
  .auth-btn {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .section-btn {
    scale: 0.7;
  }

  .benefits {
    padding: 1rem 0rem;
    padding-top: 0px;
  }

  .benefits .section-title {
    font-size: 22px;
    margin-bottom: 1rem;
  }

  .hide-for-mb {
    display: none;
  }
  .videos .section-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 1rem;
  }
  .simple-para p {
    font-size: 12px;
  }

  .videos .simple-para {
    padding-top: 0;
  }
  .vid-item .icon img {
    width: 140px;
    height: auto;
  }
  .vid-item .icon {
    display: none;
  }

  .vid-grid {
    grid-template-columns: auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .steps-items {
    display: block;
    align-items: center;
    gap: 10px;
    text-align: left;
  }

  .steps-items > img {
    max-width: 60px;
    height: auto;
    margin: 0;
    flex-shrink: 0;
    align-self: center;
  }

  .step {
    text-align: left;
    padding: 8px;
    min-height: 310px;
  }

  .step h3 {
    margin: 0;
    background: white;
    color: #0d4a43;
    padding: 10px 6px;
    font-size: 11px;
    line-height: 15px;
    text-align: center;
    min-height: 65px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 8.16px 0px #ffffff;
  }

  .step p {
    font-size: 12px;
    min-height: auto;
    text-align: justify;
    padding: 6px 0px;
    line-height: normal;
    font-weight: 500;
  }

  .agent-title-bg h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    position: static;
  }

  th,
  td {
    padding: 0.2rem;
    font-weight: 400;
    text-transform: lowercase;
    line-height: normal;
  }

  .commissionBonus {
    padding: 0rem;
  }

  .btn-primary {
    padding: 6px 3px;
    font-size: 9px;
    line-height: normal;
  }
  .marqueDiv {
    position: static;
    width: 100%;
    margin-top: 0px;
    border-radius: 0;
  }
  .marque-content {
    display: flex;
    margin: 0 auto;
    max-width: 100%;
    font-size: 12px;
    display: flex;
    align-items: center;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 1rem;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
    row-gap: 3rem;
  }

  .benefit-item .icon {
    top: -25px;
  }

  .benefit-item .icon img {
    width: 50px;
    height: 50px;
  }
  .text-item {
    padding-top: 16px;
  }

  .benefit-item h3 {
    font-size: 16px;
  }

  .benefit-item p {
    font-size: 10px;
    text-align: justify;
    color: #000000;
  }

  .footer {
    display: none;
  }
  .mbfoooter {
    display: block;
  }

  .mbfoooter .mb-img {
    position: relative;
  }

  /* FOOTER MOBILE: chữ ôm hình, tràn xuống dưới */
  .footer_item {
    display: block;
    width: 100%;
    margin: 10px auto;
    overflow: hidden;
    padding: 10px 12px;
  }

  .footer_values {
    width: 100%;
  }

  .footer_item .footer_title h5 {
    color: #25c4af;
    font-weight: 700;
    line-height: normal;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .footer_item .footer_desc .truncate {
    font-weight: 400;
    color: #666666;
    font-size: 11px;
    text-align: justify;
    line-height: normal;
    margin-bottom: 2px;
  }

  .footer_item .footer_image {
    float: right;
    width: 40%;
    margin-left: 12px;
    margin-bottom: 4px;
  }

  .footer_item .footer_image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .footer_item .footer_desc p {
    margin: 0;
    line-height: 1.4;
  }

  .social-icons {
    border-radius: 10px;
    padding: 6px 10px;
    margin: 10px 0px;
    box-shadow: 0px 1.7px 4.35px 0px #58c3b55c;
    background: #ffffff03;
    border: 2px solid #ffffff;
    border-bottom-width: 0;
    border-right-width: 0;
  }
  .social-icons .allicons {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .social-icons .socia {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
  }

  .social-icons .socia img {
    width: 26px;
    height: 26px;
  }

  .social-icons .san-choi {
    display: flex;
    align-items: center;
  }
  .links {
    padding: 10px 0px;
  }
  .innerlink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .innerlink p {
    margin-bottom: 0;
    font-size: 11px;
    color: #666666;
  }
  footer.mbfoooter {
    margin-top: 40px;
    padding-bottom: 30px;
    padding-top: 20px;
    background: #f0f4f7;
  }

  .comp-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
  }
  .comp-logo img {
    width: 30px;
  }

  .header-right .support-item,
  .header-right .auth-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .sidebar {
    width: 80%;
    max-width: 300px;
  }

  .san-choi img {
    width: 190px;
  }

  .promo-content {
    width: 100%;
    height: auto;
    padding: 0px;
    padding-bottom: 50px;
  }
  .promo-main img {
    width: 100%;
  }
  .no-show {
    font-size: 14px;
  }
  #closePromo {
    padding: 4px 20px;
    font-size: 12px;
  }

  .calc-content {
    width: 100%;
  }

  .input-row {
    flex-direction: column;
    gap: 10px;
  }

  .result-row {
    flex-direction: column;
  }

  /* Home button mobile tweak */

  .home-btn-icon {
    width: 16px;
    height: 16px;
  }
}

/* Medium devices / mobile landscape (481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .steps-grid {
    gap: 1rem;
  }
  .footer_grid {
    position: absolute;
    top: 110px;
  }
  .footer_values .footer_title h5 {
    font-size: 18px;
  }
  .footer_values .footer_desc .truncate {
    font-size: 16px;
  }
  .footer_image img {
    width: 100%;
  }
  footer.mbfoooter {
    margin-bottom: 100px;
  }
  .social-icons .socia img {
    width: 40px;
    height: 40px;
  }

  .social-icons .socia {
    gap: 20px;
  }
}

/* Large mobile / small tablet (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .benefits .section-title {
    justify-content: center;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
    gap: 1rem;
    row-gap: 3rem;
  }

  .header.pc .auth-btn {
    display: flex;
    gap: 12px;
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vid-item .icon img {
    width: 260px;
    height: auto;
  }

  .step p {
    font-size: 14px;
    min-height: 160px;
  }

  .star-bg img {
    width: auto;
  }
  .footer_grid {
    position: absolute;
    top: 140px;
  }
  .footer_values .footer_title h5 {
    font-size: 20px;
  }
  .footer_values .footer_desc .truncate {
    font-size: 18px;
  }
  .footer_image img {
    width: 100%;
  }
  footer.mbfoooter {
    margin-bottom: 150px;
  }
  .social-icons .socia img {
    width: 40px;
    height: 40px;
  }

  .social-icons .socia {
    gap: 20px;
  }
}

/* Hero slider */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
}

.hero-prev {
  left: 16px;
}

.hero-next {
  right: 16px;
}

.hero-dots {
  display: none;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero-dot.active {
  background: #fff;
}

.roMan {
  display: inline-block;
}
@media (min-width: 768px) {
  .roMan {
    display: none;
  }
}

table.styled-table tr th {
  text-transform: uppercase;
}

/* ===== HOME BUTTON – dùng chung PC + Mobile ===== */

.home-btn-shell {
  display: inline-block;
  /* padding: 3px; */
  border-radius: 999px;
}

.home-btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-btn-icon svg {
  width: 100%;
  height: 100%;
}

.home-btn-icon svg path {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

/* bảng ngoài + bảng trong */
.table-wrapper {
  display: inline-block;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}
table tr th {
  font-size: 12px;
}
table.styled-table {
  border-collapse: initial;
  width: 100%;
}
table.styled-table th,
table.styled-table td {
  border: 1px solid #0d4a43;
  font-weight: bold;
  border-radius: 10px;
}
table.styled-table thead th {
  background: #0d4a43;
  color: #fff;
  border-radius: 10px;
}

/* ===== AUTH BUTTONS – ĐĂNG KÝ / ĐĂNG NHẬP ===== */

/* Khung bọc 2 nút */
.auth-btn {
  display: flex;
  gap: 12px;
  width: 60%;
  margin: 0 auto;
}

/* Mỗi phần tử con (wrapper của button) chiếm 1/2 */
.auth-btn > * {
  flex: 1 1 0;
}

/* Chính cái nút */
.auth-btn .btn-primary {
  width: 100%;
  padding: 5px 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #0d4a43;
  box-shadow: 2px 4px 7px #1482ff80;
}

.authpc {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile: giữ layout flex nhưng full chiều ngang, không bẹt quá */
@media (max-width: 768px) {
  .auth-btn {
    width: 100%;
    align-items: center;
  }
}

/* đảm bảo mặc định luôn hiển thị */
#teleBotContent {
  position: relative;
  display: block; /* mặc định hiện khi vào trang */
}

.tele-bot-close {
  position: absolute;
  top: -30px;
  right: 0px;
  border: none;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}

.tele-bot-close:hover {
  color: #333;
}

/* để user biết icon tele bấm được */
.tele-bot {
  cursor: pointer;
}

/* auth ở section home */
.home-btn-wrap .auth-btn {
  display: flex;
  gap: 12px;
  width: 60%;
  margin: 0 auto;
}

/* Giữ cho mobile vẫn full width nếu muốn */
@media (max-width: 768px) {
  .btn-primary {
    border: none;
    background: none;
    font-size: 14px;
    font-weight: bold;
  }
  #loginBtn,
  #loginBtnMobile {
    background: none !important;
    font-size: 14px;
  }
  .home-btn-wrap .auth-btn {
    display: flex;
    gap: 8px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: nowrap;
  }
}

/* ===== OVERRIDE: TRANG CHỦ & ĐĂNG NHẬP BẰNG NHAU (PC + MOBILE) ===== */

/* Thu gọn nội dung: cắt còn 3 dòng, hiển thị ... */
.toggle-link {
  text-decoration: underline;
  font-style: italic;
  cursor: pointer;
  color: #25c4af;
  font-size: 11px;
}

/* Thu gọn nội dung: chỉ khi THU GỌN mới cắt 3 dòng */
.truncate {
  display: block;
  overflow: visible; /* MỞ RỘNG: để text ôm float và tràn xuống dưới hình */
}

.truncate.collapsed {
  display: -webkit-box; /* THU GỌN: dùng line-clamp */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* số dòng giữ lại */
  overflow: hidden;
}

/* Rocket/Ticket style */
#teleBottomIco {
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
  animation: floatUpDown 1.5s ease-in-out infinite;
  box-shadow: 0px 5.21px 5.21px 0px #00000040;
  border-radius: 100px;
}

#teleBottomIco:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0px 0px 26.03px 0px #25c4af80;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.authpc div {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.authpc div img {
  display: block;
  width: 100%;
  height: auto;
}

/* Simple classic hover */
.authpc div:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0px 0px 26.03px 0px #25c4af80;
  border-radius: 13px;
}

.home-btn-core {
  transition: transform 0.25s ease-in-out;
}

.home-btn-core:hover {
  transform: translateY(-3px) scale(1.03);
}

.commis-calculator {
  transition: transform 0.25s ease-in-out;
}

.commis-calculator:hover {
  transform: translateY(-3px) scale(1.03);
}
