/* ======================================================
   GLOBAL CONTAINER WIDTH
====================================================== */

body {
  margin: 0;
}
.container {
  max-width: 1200px !important;
}
section {
  overflow: visible;
}
@media (min-width: 768px) {
  .ms-md-6 {
    margin-left: 80px !important;
  }
}
@media (min-width: 992px) {
  #mgNavbar > .navbar-nav.ms-md-6 {
    margin-left: 80px !important;
  }
}

.ms-7 {
  margin-left: 120px !important;
}
.navbar-nav {
  gap: 20px; /* controls space between menu items */
}

/* ======================================================
   NAVBAR DESIGN 
====================================================== */
.mg-navbar {
  /* background: #2b1c0f; */
  background-color: #fff;
  padding: 0 !important;
  border-bottom: 2px solid rgba(212, 164, 55, 0.3);
  position: relative;
  z-index: 9999;
}

/* NAV LINKS */
.mg-navbar .nav-link {
  /* color: #e8c46a; */
  color: #7a5418;
  font-weight: 600;
  font-size: 16px;
  /* padding: 8px 18px; */
}
.mg-navbar .nav-link:hover,
.mg-navbar .nav-link:active,
.mg-navbar .nav-link:focus,
.mg-navbar .nav-link.active {
  color: #d4a437 !important;
  text-shadow: 0 0 6px rgba(255, 215, 117, 0.6);
}

/* LOGO SIZE */
.mg-logo {
  height: 100px;
}

/* ======================================================
   FIX DROPDOWN POSITION (Remove big top space)
====================================================== */
.navbar-expand-lg .navbar-nav .dropdown-menu {
  top: 95px !important;
  border-radius: 0 !important;
  border: none !important;
  position: absolute;
  z-index: 999;
}

/* ======================================================
   DESKTOP HOVER DROPDOWN + CENTERED WIDTH
====================================================== */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block !important;
    margin-top: 0;
  }

  /* Center & resize to 75% width */
  .dropdown.position-static .dropdown-menu {
    width: 75% !important;
    left: 50% !important;
    transform: translateX(-50%);
    /* background: #2b1c0f !important; */
    border-top: 2px solid #d4a437;
    border-bottom: 2px solid #d4a437;
  }
}
@media (max-width: 991px) {
  .mg-mega {
    display: none;
    position: relative !important;
    padding: 20px !important;
    background: #fff;
    border-radius: 12px;
  }
  .mg-mega.show {
    display: block;
  }
}

/* ======================================================
   MEGA DROPDOWN INNER WRAPPER
====================================================== */
.mg-mega {
  padding: 15px 0 !important; /* Reduced unnecessary padding */
}

/* Remove spacing between column items */
.mg-mega .row {
  margin: 0 !important;
  padding: 0 !important;
  row-gap: 0 !important;
  column-gap: 0 !important;
}

/* ======================================================
   FEATURE BOXES (Daily, Weekly, Monthly, Yearly)
====================================================== */
.mg-feature-box {
  display: block;
  padding: 10px 5px !important; /* compact spacing */
  border-radius: 12px;
  /* color: #e8c46a; */
  color: #7a5418;
  transition: 0.25s ease-in-out;
  text-decoration: none !important;
}

.mg-feature-box:hover {
  border-color: #d4a437;
  background: rgba(212, 164, 55, 0.12);
  box-shadow: 0 0 15px rgba(212, 164, 55, 0.25);
  transform: translateY(-3px);
}

/* ICONS */
.mg-feature-box i {
  color: #d4a437;
  font-size: 34px !important; /* reduced size */
}
.mg-feature-box:hover i {
  color: #ffd875;
}

/* TITLE + DESCRIPTION */
.mg-feature-box h6 {
  margin-top: 5px !important;
  margin-bottom: 2px !important;
  font-weight: 600;
  text-decoration: none !important;
}
.mg-feature-box small {
  font-size: 13px;
  opacity: 0.85;
  text-decoration: none !important;
}

/* ======================================================
   DOWNLOAD APP BUTTON
====================================================== */
.button {
  background: linear-gradient(90deg, #7a5418, #d4a437);
  color: #fff;
  border: 1px solid #d4a437;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.button:hover {
  background: linear-gradient(90deg, #d4a437, #7a5418);
  box-shadow: 0 0 10px rgba(212, 164, 55, 0.5);
}

/* ======================================================
   MOBILE STYLING
====================================================== */
@media (max-width: 991px) {
  .mg-navbar {
    padding: 10px 15px;
  }
  .mg-logo {
    height: 80px;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    top: 0 !important;
    position: relative !important;
    width: 100% !important;
  }
  .mg-mega {
    padding: 20px 10px !important;
  }
  .mg-feature-box {
    margin-bottom: 15px !important;
  }
}
/* ============================
   HERO BANNER (WITH IMAGE)
============================ */
.mg-hero {
  background: url("../images/banner.png") center/cover no-repeat;
  padding: 70px 0;
  /* border-bottom: 2px solid rgba(212, 164, 55, 0.3); */
  height: 85vh;
}

/* TITLE */
.mg-hero-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff; /* dark brown */
  margin-bottom: 15px;
}
.mg-hero-title span {
  color: #b8860b; /* warm gold */
}

/* SUBTITLE */
.mg-hero-subtitle {
  font-size: 16px;
  line-height: 1.5;
  max-width: 420px;
  color: #ffffff;
  margin-bottom: 25px;
}

/* BUTTON (REUSE YOUR GOLD BUTTON) */
.button {
  background: linear-gradient(90deg, #7a5418, #d4a437);
  color: #fff;
  border: 1px solid #d4a437;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

/* RIGHT IMAGE */
.mg-hero-coin {
  width: 100%;
  /* max-width: 300px; */
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mg-hero {
    /* padding: 50px 0 60px; */
    text-align: center;
    height: auto;
  }

  .mg-hero-title {
    font-size: 28px;
  }
  .mg-hero-subtitle {
    margin: 0 auto 20px;
  }
  .mg-hero-coin {
    display: none;
    /* width: 55%;
    margin-top: 20px; */
  }
}
/* steps */
.mg-steps {
  /* background: #2b1c0f; */
  padding: 70px 0;
  color: #fff;
}

.mg-title {
  font-size: 34px;
  font-weight: 700;
  color: #d4a437; /* gold */
}

.mg-step-card {
  background: url("../images/banner.png") center/cover no-repeat;
  /* background: #3a2616; */
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid rgba(212, 164, 55, 0.4);
  transition: 0.3s;
  height: 100%;
}

.mg-step-card:hover {
  transform: translateY(-8px);
  border-color: #d4a437;
  box-shadow: 0 0 18px rgba(212, 164, 55, 0.3);
}

.mg-icon {
  font-size: 48px;
  color: #d4a437;
  margin-bottom: 15px;
}

.mg-step-card h3 {
  font-size: 20px;
  color: #d4a437;
  margin-bottom: 12px;
}

.mg-step-card p {
  font-size: 15px;
  color: #e9e3d8;
  font-weight: bold;
}
/* .mg-step-card {
  position: relative;
  height: 280px;
  border-radius: 12px;
  border: 1px solid rgba(212, 164, 55, 0.4);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
} */

/* Dark overlay for readability */
.mg-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Text styling */
.mg-step-content {
  position: relative;
  padding: 20px;
  color: #fff;
  z-index: 2;
}

.mg-step-content h3 {
  font-size: 20px;
  color: #d4a437;
  margin-bottom: 8px;
}

/* Add your images here */
.step-bg-1 {
  background-image: url("../images/step1.png");
}

.step-bg-2 {
  background-image: url("../images/step2.png");
}

.step-bg-3 {
  background-image: url("../images/step3.png");
}

/* Hover effect */
.mg-step-card:hover {
  transform: translateY(-8px);
  transition: 0.4s;
  border-color: #d4a437;
  box-shadow: 0 0 18px rgba(212, 164, 55, 0.3);
}
/* .gold-section {
  background-image: url("../images/bg1.jpg");
  background: linear-gradient(to bottom, #faf6ef, #e8d5a8);
  padding: 70px 0;
  text-align: center;
} */
.gold-section {
  background-image: url("../images/bg2.png");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: bottom center;
  /* background-color: #faf6ef;  */
  /* padding: 10px 0; */
  text-align: center;
  position: relative;
}

.gold-section .title {
  font-size: 48px;
  font-weight: 700;
  color: #5b4633;
}
.gold-section .highlight {
  color: #c8952e;
}

.gold-section .subtitle {
  font-size: 18px;
  margin-top: 10px;
  color: #6b5644;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.features .item {
  width: 250px;
}

.features .icon {
  font-size: 35px;
  display: block;
  margin-bottom: 10px;
}

.divider {
  margin: 50px auto;
  width: 180px;
  height: 2px;
  background: #c8952e;
  position: relative;
}
.divider::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  background: #faf6ef;
  padding: 0 10px;
  color: #c8952e;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 16px;
  color: #5b4633;
}
/* Fade up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.features .item {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.features .item:nth-child(1) {
  animation-delay: 0.6s;
}
.features .item:nth-child(2) {
  animation-delay: 0.8s;
}
.features .item:nth-child(3) {
  animation-delay: 1s;
}
@keyframes goldGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px #d4a437);
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px #d4a437);
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px #d4a437);
  }
}

.features .icon {
  animation: goldGlow 2.5s infinite ease-in-out;
}
@keyframes floatCoin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

.mg-hero-coin {
  animation: floatCoin 3.5s infinite ease-in-out;
}
@keyframes dividerGlow {
  0% {
    text-shadow: 0 0 0px #c8952e;
  }
  50% {
    text-shadow: 0 0 8px #c8952e;
  }
  100% {
    text-shadow: 0 0 0px #c8952e;
  }
}

.divider::after {
  animation: dividerGlow 3s infinite ease-in-out;
}
.mg-step-card {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.mg-step-card.show {
  opacity: 1;
  transform: translateY(0);
}
.mg-saving-tabs {
  padding: 80px 0;
}

.mg-title {
  font-size: 36px;
  font-weight: 700;
  color: #5b4633;
}

.mg-subtitle {
  color: #6b5644;
  margin-bottom: 40px;
}

/* -------------------------
   TAB BUTTONS
------------------------- */
.mg-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.mg-tab {
  padding: 10px 25px;
  border-radius: 25px;
  border: 1px solid #d4a437;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.mg-tab:hover {
  background: #d4a437;
  color: #fff;
}

.mg-tab.active {
  background: linear-gradient(90deg, #7a5418, #d4a437);
  color: #fff;
  box-shadow: 0 0 12px rgba(212, 164, 55, 0.4);
}

/* -------------------------
   TAB CONTENT AREA
------------------------- */
.mg-tab-box {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.mg-tab-box.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* IMAGES */
.mg-tab-img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mg-tab-buttons {
    flex-wrap: wrap;
  }
  .mg-tab-img {
    margin-bottom: 20px;
  }
}
/* Wrapper to allow positioning text on image */
.mg-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* The text on top of the image */
.mg-img-text {
  position: absolute;
  top: 50%;
  right: 40px; /* adjust this */
  transform: translateY(-50%);
  text-align: left;
  width: 35%; /* adjust width based on your image’s empty space */
}

/* Text styling */
.mg-img-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #5b4633;
  margin-bottom: 10px;
}

.mg-img-text p {
  font-size: 16px;
  color: #6b5644;
  line-height: 1.5;
}

/* Make text come below image on mobile */
/* @media (max-width: 768px) {
  .mg-img-text {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }
} */
/* ============================
   TESTIMONIAL SECTION
============================ */
.mg-testimonials {
  padding: 80px 0;
  background-image: url("../images/bg1.jpg");
  text-align: center;
}

.mg-test-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.mg-test-subtitle {
  margin-bottom: 50px;
  color: #f0cf4c;
  font-size: 16px;
}

/* ============================
   Testimonial Cards
============================ */
.mg-test-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.mg-test-card {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 164, 55, 0.25);
  transition: 0.3s ease;
}

.mg-test-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(212, 164, 55, 0.35);
  border-color: #d4a437;
}

/* User Info */
.mg-test-user {
  text-align: center;
}

.mg-test-user img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #d4a437;
}

.mg-test-user h4 {
  margin-top: 10px;
  margin-bottom: 3px;
  font-size: 18px;
  font-weight: 700;
  color: #5b4633;
}

.mg-test-user span {
  font-size: 14px;
  color: #b89a56;
}

/* Text */
.mg-test-text {
  margin-top: 15px;
  font-size: 15px;
  color: #6b5644;
  line-height: 1.6;
  font-style: italic;
}
/* FAQ Section */
.mg-faq {
  /* margin-top: 70px; */
  padding: 70px 0;
  /* background-image: url("../images/bg2.png"); */
  /* margin-bottom: 70px; */
}

.mg-faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #5b4633;
}

.mg-faq-subtitle {
  font-size: 16px;
  color: #6b5644;
  margin-bottom: 40px;
}

/* Accordion */
.mg-faq-accordion .accordion-item {
  border: 1px solid rgba(212, 164, 55, 0.4);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.mg-faq-accordion .accordion-button {
  background: #fff;
  color: #5b4633;
  font-weight: 600;
  padding: 18px;
  font-size: 17px;
  transition: 0.3s;
}

.mg-faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #7a5418, #d4a437);
  color: #fff;
  box-shadow: none;
}

.mg-faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.mg-faq-accordion .accordion-body {
  background: #fff;
  color: #6b5644;
  font-size: 15px;
  padding: 18px 20px;
  line-height: 1.7;
}

/* ===========================
    FOOTER
=========================== */
/* Footer Background */
.mg-footer {
  background: #2b1c0f;
  padding: 70px 0 25px;
  color: #e8d6b9;
}

/* Left Logo Section */
.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 15px;
  color: #d7c9a8;
  margin-bottom: 20px;
  max-width: 300px;
}

/* Social Icons */
.footer-social a {
  font-size: 22px;
  color: #d4a437;
  margin-right: 15px;
  transition: 0.3s;
}
.footer-social a:hover {
  color: #ffd875;
}

/* Column Titles */
.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #e8c46a;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #d7c9a8;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #ffd875;
  padding-left: 5px;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  margin-bottom: 12px;
  font-size: 15px;
}
.footer-contact i {
  color: #d4a437;
  margin-right: 8px;
}

/* Download Button */
.footer-download {
  display: inline-block;
  background: linear-gradient(90deg, #7a5418, #d4a437);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 10px;
  text-decoration: none;
}
.footer-download:hover {
  background: linear-gradient(90deg, #d4a437, #7a5418);
  box-shadow: 0 0 10px rgba(212, 164, 55, 0.5);
}

/* Copyright */
.footer-bottom {
  text-align: center;
  color: #bfa671;
  margin-top: 40px;
  font-size: 14px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
/* CLEAN & FIXED MOBILE FOOTER */
@media (max-width: 768px) {
  /* Make columns stack */
  .mg-footer .footer-col,
  .mg-footer .footer-left {
    width: 100% !important;
    flex: 0 0 100%;
    margin-bottom: 30px;
    /* text-align: center; */
  }

  /* Center logo */
  .footer-logo {
    margin: 0 auto 20px;
  }

  /* Center social icons */
  .footer-social a {
    margin-right: 10px;
  }

  /* Make links left aligned under center layout */
  .footer-links li,
  .footer-contact li {
    /* text-align: left;
    width: fit-content; */
    margin: 0 auto 12px;
  }

  /* Download button centered */
  .footer-download {
    display: inline-block;
    margin: 15px auto 0;
    text-align: center;
  }

  /* Footer wrapper spacing */
  .mg-footer {
    /* text-align: center; */
    padding: 30px 0;
  }
} /* FORCE FOOTER COLUMNS TO STACK IN MOBILE */
@media (max-width: 992px) {
  .mg-footer .footer-col,
  .mg-footer .footer-left {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    display: block;
  }
}

/* about page */
.about-hero {
  padding: 120px 0;
  background: url("../images/banner/sub_banner.png");
  background-position: top center;
}

.about-title {
  font-size: 48px;
  font-weight: 700;
  color: #d4a437;
  /* color: #5b4633; */
  text-align: center;
}

.about-title span {
  color: #d4a437;
}

.about-subtitle {
  font-size: 18px;
  color: #6b5644;
  margin-top: 10px;
}

.about-img {
  max-width: 90%;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}
.about-us {
  padding: 80px 0;
  /* background-image: url("../images/banner3.jpg"); */
  background-position: left center;
  /* background: #f7f7f7; */
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 0 20px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.learn-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #d4a437;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 600;
}

.learn-btn:hover {
  background: #b98c28;
  transform: translateY(-3px);
}

/* RIGHT IMAGE */
.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: scale(0.95);
  transition: all 0.6s ease-in-out;
}

.about-image img:hover {
  transform: scale(1);
}

/* ANIMATIONS */
.fade-in-left {
  animation: fadeLeft 1s ease forwards;
  opacity: 0;
}

.fade-in-right {
  animation: fadeRight 1s ease forwards;
  opacity: 0;
}

@keyframes fadeLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-content p {
    font-size: 16px;
  }
}

.mission-style-1 {
  padding: 80px 0;
  /* background-image: url("../images/banner/about.png"); */
}

.mission-horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.mission-item {
  text-align: center;
  max-width: 260px;
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: #fff7e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #d4a437;
  margin: 0 auto 15px;
  box-shadow: 0 3px 10px rgba(212, 164, 55, 0.25);
}

.mission-divider {
  width: 50px;
  height: 2px;
  background: #d4a437;
}

.mission-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #5b4633;
}

.mission-item p {
  color: #6b5644;
  font-size: 15px;
}

@media (max-width: 768px) {
  .mission-horizontal {
    flex-direction: column;
    gap: 10px;
  }
  .mission-divider {
    display: none;
  }
}
.vertical-journey {
  width: 100%;
  padding: 50px 0;
  position: relative;
  background-image: url("../images/banner/about.png");
}

/* FULL CONNECTED CENTER LINE */
.vertical-journey:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 120px;
  bottom: 80px;
  width: 4px;
  background: #6c380f;
  transform: translateX(-50%);
  /* z-index: 1; */
}

.vj-item {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  margin: 50px 0;
  position: relative;
}

/* Center area just holds the circle now */
.vj-center {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Circle on connected line */
.vj-circle {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 10px 22px;
  border-radius: 30px;
  border: 4px solid #6c380f;
  color: #eebb38;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(108, 56, 15, 0.15);
}

/* Image styling */
.vj-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Premium consistent image style */
.vj-image img {
  width: 150px; /* set standard width */
  max-width: 100%; /* responsive */
  height: auto; /* prevents distortion */
  object-fit: contain; /* keeps proportions */
  border-radius: 14px; /* soft rounded corners */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15); /* premium shadow */
  background: #6c380fb8; /* clean background frame */
  padding: 10px; /* spacing around image */
}

/* Alternate alignment */
.vj-item.left .vj-content {
  text-align: center;
}
.vj-item.right .vj-content {
  text-align: center;
}

/* Heading & text */
.vj-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #12002f;
}
.vj-content p {
  color: #444;
  line-height: 1.6;
}
/* Soft reveal animation */
.vj-item {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

.vj-item.show {
  opacity: 1;
  transform: translateY(0);
}
.about-why {
  padding: 80px 0;
  background-image: url("../images/banner1.jpg");
}
.about-why .section-title {
  color: #b4802a;
}

.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(212, 164, 55, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: 0.35s ease;
  margin-bottom: 30px;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(212, 164, 55, 0.25);
  border-color: #d4a437;
}

.why-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7e3;
  border-radius: 50%;
  margin: 0 auto 15px;
  font-size: 30px;
  color: #d4a437;
  box-shadow: 0 4px 12px rgba(212, 164, 55, 0.25);
}

.why-card h4 {
  color: #5b4633;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 15px;
  color: #6b5644;
  line-height: 1.6;
}
.gold-journey {
  padding: 100px 0;
  background: #faf6ef;
}

.journey-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #2b1c0f;
  margin-bottom: 80px;
}

.curve-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  height: 1200px;
}

/* Curved SVG Line */
.timeline-curve {
  position: absolute;
  left: 50%;
  top: 0;
  width: 400px;
  transform: translateX(-50%);
}

/* DOTS ALONG CURVE */
.curve-dots .dot {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 5px solid #d4a437;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* MILESTONE CONTENT */
.milestone {
  position: absolute;
  width: 45%;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.milestone.show {
  opacity: 1;
  transform: translateY(0);
}

/* Left & Right alignment */
.m-left {
  left: 0;
  text-align: right;
}
.m-right {
  right: 0;
  text-align: left;
}

/* Position milestones visually aligned with dots */
.m-left:nth-child(1) {
  top: 40px;
}
.m-right:nth-child(2) {
  top: 320px;
}
.m-left:nth-child(3) {
  top: 610px;
}
.m-right:nth-child(4) {
  top: 900px;
}

/* Text styling */
.m-year {
  font-size: 22px;
  font-weight: 700;
  color: #d4a437;
  display: block;
  margin-bottom: 8px;
}

.milestone p {
  font-size: 16px;
  color: #6b5644;
  line-height: 1.6;
  max-width: 300px;
  display: inline-block;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .curve-wrapper {
    height: auto;
  }
  .timeline-curve {
    display: none;
  }
  .curve-dots {
    display: none;
  }

  .milestone {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    text-align: left;
    transform: translateY(0);
    opacity: 1;
  }

  .m-left,
  .m-right {
    text-align: left;
    left: 0;
    right: 0;
  }
}

.about-team {
  padding: 80px 0;
}

.team-card {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 164, 55, 0.3);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 90px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid #d4a437;
}

.team-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #5b4633;
}

.team-card p {
  font-size: 14px;
  color: #6b5644;
}
/* Section Layout */
.gold-blog-section {
  padding: 60px 0;
  background: #fffdfa;
}

/* Grid Layout */
.gold-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  width: 90%;
  margin: auto;
}

/* Blog Card */
.gold-blog-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.07);
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid #f4e3b2;
}

.gold-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 30px rgba(212, 172, 95, 0.3);
}

/* Image */
.gold-blog-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
}

/* Title */
.gold-blog-title {
  font-size: 20px;
  font-weight: 700;
  color: #5b4a1f;
  margin-top: 15px;
  line-height: 1.4;
}

/* Meta */
.gold-blog-meta {
  font-size: 13px;
  color: #a88947;
  margin-top: 5px;
}

/* Description */
.gold-blog-desc {
  font-size: 15px;
  color: #4a4a4a;
  margin: 12px 0;
}

/* Read More Button */
.gold-read-btn {
  font-size: 14px;
  font-weight: 600;
  color: #b88a26;
  text-decoration: none;
  border-bottom: 2px solid #d1a64f;
  padding-bottom: 3px;
  transition: 0.3s;
}

.gold-read-btn:hover {
  color: #8a6b1e;
  border-color: #8a6b1e;
}
/* Contact us */
.lux-contact-section {
  position: relative;
  padding: 80px 0;
  /* background: #fef7d7; */
  overflow: hidden;
}

/* Gold Wave Background */
.gold-wave {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, #fcd77e, #f7c65d, #d4a437);
  opacity: 0.25;
  filter: blur(60px);
  border-bottom-left-radius: 60%;
  border-bottom-right-radius: 60%;
}

/* Titles */
.lux-title {
  text-align: center;
  font-size: 40px;
  color: #1c1408;
  font-weight: 800;
}

.lux-subtitle {
  text-align: center;
  font-size: 18px;
  margin-top: 8px;
  color: #7a6650;
}

/* Layout */
.lux-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 70px;
  gap: 50px;
}
@media (max-width: 768px) {
  .lux-contact-wrapper {
    grid-template-columns: 1fr !important; /* Mobile: 1 column */
  }
}
/* Left Card */
.lux-info-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.lux-info {
  text-align: center;
  margin-bottom: 40px;
}

.lux-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe4a9, #d4a437);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  box-shadow: 0 10px 20px rgba(212, 164, 55, 0.35);
}

.lux-icon img {
  width: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Info text */
.lux-info h3 {
  font-size: 22px;
  color: #3b2a12;
  font-weight: 700;
}

.lux-info p {
  color: #665540;
  font-size: 16px;
}

/* Right Form Card */
.lux-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* Inputs */
.lux-input-group {
  margin-bottom: 20px;
}

.lux-input-group label {
  font-size: 15px;
  color: #3b2a12;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.lux-input-group input,
.lux-input-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #eac57e;
  border-radius: 12px;
  /* background: #fff8e7; */
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.lux-input-group input:focus,
.lux-input-group textarea:focus {
  border-color: #d4a437;
  box-shadow: 0 0 10px rgba(212, 164, 55, 0.4);
}

.lux-input-group textarea {
  height: 130px;
  resize: none;
}

/* Premium Button */
.lux-btn {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  color: white;
  background: linear-gradient(135deg, #d4a437, #c08a2c);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(212, 164, 55, 0.45);
  transition: 0.3s;
}

.lux-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(212, 164, 55, 0.55);
}

/* Responsive */
@media (max-width: 768px) {
  .lux-contact-wrapper {
    grid-template-columns: 1fr;
  }
}
/* Mobile menu container */
@media (max-width: 992px) {
  #mgNavbar {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #f3e2b8;
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  /* Center the download button */
  .navbar-nav .button {
    width: 100%;
    margin-top: 15px;
  }
}
/* Gold Hamburger Icon */
.navbar-dark .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(212,164,55,1)' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Toggler Button Border */
.navbar-toggler {
  border: 2px solid #d4a437 !important;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px !important;
}
.navbar-nav .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  border-top-color: #d4a437 !important;
}
/* Gold rates */
/* HERO BANNER */
.gold-rates-hero {
  /* background: #2b1c0f; */
  padding: 80px 0;
  text-align: center;
  color: #2b1c0f;
}

.gold-rates-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #5b3a11;
}

/* RATE CARDS */
.gold-rate-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  /* margin: 60px auto; */
}

.rate-card {
  flex: 1;
  position: relative;
  background-image: url("../images/banner/gold_price.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(212, 164, 55, 0.4);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  color: white;
  overflow: hidden; /* required for overlay */
  transition: 0.3s;
}

/* Overlay */
.rate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* overlay darkness */
  border-radius: inherit;
  z-index: 1; /* overlay behind text */
}

/* Ensure text stays above overlay */
.rate-card * {
  position: relative;
  z-index: 2;
}

.rate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 0px 18px rgba(212, 164, 55, 0.35);
}

.rate-card h3 {
  color: #ffe5bc;
  font-size: 24px;
  margin-bottom: 10px;
}

.rate-card .rate {
  font-size: 30px;
  font-weight: 700;
  color: #ffd875;
  margin: 10px 0 15px;
}

.gold-trend-section {
  padding: 80px 0;
  text-align: center;
  background-image: url("../images/banner/about.png");
  /* background: #2b1c0f; */
}

.gold-trend-section h2,
.gold-tabs-container h2 {
  color: #5b3a11;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
}
.gold-tabs-container h3 {
  color: #5b3a11;
}
.trend-filters {
  margin: 25px 0;
}

.trend-filters button {
  border: 1px solid #2b1c0f;
  background: #2b1c0f;
  color: #eeb033;
  padding: 8px 18px;
  margin: 0 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.trend-filters button:hover,
.trend-filters button.active {
  background: transparent;
  color: #2b1c0f;
}

.chart-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border: 1px solid rgba(212, 164, 55, 0.3);
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gold-rate-cards {
    flex-direction: column;
  }
}
.gold-tabs-container {
  max-width: 1200px;
  padding: 80px 0;
  text-align: center;
}

/* Tabs */
.gold-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.tab-btn {
  padding: 10px 25px;
  border: 1px solid #d4a437;
  background: transparent;
  color: #d4a437;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: #d4a437;
  color: #2b1c0f;
}

/* Table Box */
.gold-weight-table {
  background: #ffffff; /* changed */
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(212, 164, 55, 0.4);
  color: #2b1c0f; /* text now dark */
}

/* Table Styling */
.gold-weight-table table {
  width: 100%;
  border-collapse: collapse;
}

.gold-weight-table th,
.gold-weight-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(212, 164, 55, 0.3);
}

.gold-weight-table th {
  background: rgba(212, 164, 55, 0.15);
  color: #2b1c0f; /* normal dark */
  font-weight: bold;
  font-size: 16px;
}

/* Hover Row Effect */
.gold-weight-table tbody tr:hover {
  background: rgba(212, 164, 55, 0.18);
  transition: 0.3s;
}
/* Rate Calculator */
.gold-calculator-section {
  padding: 80px 0;
  text-align: center;
}

.calc-title {
  font-size: 32px;
  color: #d4a437;
  margin-bottom: 5px;
}

.calc-sub {
  color: #2b1c0f;
  margin-bottom: 25px;
  font-size: 16px;
}

.gold-calculator-box {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid rgba(212, 164, 55, 0.4);
  box-shadow: 0 0 15px rgba(212, 164, 55, 0.2);
}

.calc-row {
  text-align: left;
  margin-bottom: 20px;
}

.calc-row label {
  font-weight: bold;
  color: #2b1c0f;
  display: block;
  margin-bottom: 6px;
}

.calc-row input,
.calc-row select {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(212, 164, 55, 0.4);
  border-radius: 6px;
  font-size: 16px;
}

.calc-btn {
  width: 100%;
  background: #d4a437;
  color: #2b1c0f;
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.calc-btn:hover {
  background: #b5882c;
}

.calc-result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #2b1c0f;
  background: rgba(212, 164, 55, 0.15);
  padding: 12px;
  border-radius: 8px;
}
.calc-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.calc-left {
  width: 70%;
}

.calc-right {
  width: 30%;
  text-align: center;
}

.calc-img {
  width: 100%;
  max-width: 420px;
  height: 60vh;
  animation: float 3s ease-in-out infinite;
}

/* Floating effect */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .calc-flex {
    flex-direction: column;
  }
  .calc-left,
  .calc-right {
    width: 100%;
  }
}
.gold-calculator-section {
  padding: 80px 0;
  text-align: center;
}

/* Title centered but aligns with both boxes */
.calc-title {
  font-size: 32px;
  color: #d4a437;
  margin-bottom: 5px;
}

.calc-sub {
  color: #2b1c0f;
  margin-bottom: 35px;
  font-size: 16px;
}

/* FLEX layout */
.calc-flex {
  display: flex;
  align-items: flex-start; /* Ensures both start from same top point */
  justify-content: space-between;
  gap: 40px;
}

.calc-left {
  width: 70%;
}

.calc-right {
  width: 30%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 110px;
}

/* Image styling + premium animation */
.calc-img {
  width: 100%;
  max-width: 420px;
  height: 60vh;
  animation: float 3s ease-in-out infinite,
    glow 2.5s alternate infinite ease-in-out;
}

/* Floating effect */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Gold glow effect */
@keyframes glow {
  0% {
    filter: drop-shadow(0 0 3px rgba(212, 164, 55, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 12px rgba(212, 164, 55, 0.9));
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .calc-flex {
    flex-direction: column;
    align-items: center;
  }

  .calc-left,
  .calc-right {
    width: 100%;
  }
}
.calc-left .calc-title,
.calc-left .calc-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
/* Gold Info Section */
.gold-info-section {
  padding: 70px 0;
  background-image: url("../images/bg1.jpg");
  border-top: 2px solid rgba(212, 164, 55, 0.3);
}

.gold-info-title {
  text-align: center;
  font-size: 32px;
  color: #d4a437;
  font-weight: 700;
  margin-bottom: 10px;
}

.gold-info-sub {
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 40px;
}

/* Grid Layout */
.gold-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Boxes */
.gold-info-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid rgba(212, 164, 55, 0.4);
  box-shadow: 0 0 12px rgba(212, 164, 55, 0.2);
  transition: 0.3s ease-in-out;
}

/* Hover Effect */
.gold-info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(212, 164, 55, 0.3);
}

/* Heading Style */
.gold-info-box h3 {
  color: #d4a437;
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Emoji icons size */
.gold-info-box h3 span {
  font-size: 22px;
}

/* List Styling */
.gold-info-box ul {
  padding-left: 20px;
}

.gold-info-box ul li {
  margin-bottom: 10px;
  color: #2b1c0f;
  font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gold-info-grid {
    grid-template-columns: 1fr;
  }
}
.gold-trust-section {
  background: #ffffff;
  padding: 80px 0;
  border-top: 2px solid rgba(212, 164, 55, 0.25);
}

.trust-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #d4a437;
  margin-bottom: 10px;
}

.trust-sub {
  text-align: center;
  color: #2b1c0f;
  margin-bottom: 40px;
  font-size: 16px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Each box */
.trust-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(212, 164, 55, 0.3);
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(212, 164, 55, 0.15);
  background: #d4a4378c;
}

.trust-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(212, 164, 55, 0.25);
}

/* Icon */
.trust-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #d4a437;
}

/* Headings inside box */
.trust-box h3 {
  font-size: 20px;
  color: #2b1c0f;
  margin-bottom: 10px;
}

/* Paragraph */
.trust-box p {
  color: #513f22;
  font-size: 15px;
  line-height: 22px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
/* Feature */
.gold-daily-saver-section {
  padding: 80px 0;
}

.saver-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT SIDE */
.saver-left {
  width: 48%;
}

.highlight-title {
  font-size: 32px;
  color: #d4a437;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-sub {
  color: #5b4828;
  margin-bottom: 25px;
}

.highlight-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border: 2px solid rgba(212, 164, 55, 0.3);
  box-shadow: 0 5px 20px rgba(212, 164, 55, 0.15);
}

.highlight-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #2b1c0f;
}

.h-dot {
  width: 10px;
  height: 10px;
  background: #d4a437;
  border-radius: 50%;
  margin-top: 6px;
}

/* RIGHT SIDE */
.saver-right {
  width: 48%;
}

.saver-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.s-label {
  font-size: 18px;
  color: #2b1c0f;
}

.s-value {
  font-size: 20px;
  font-weight: 700;
}

/* SLIDER */
.range-slider {
  width: 100%;
  margin: 10px 0 25px;
  appearance: none;
  height: 10px;
  background: rgba(212, 164, 55, 0.25);
  border-radius: 5px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  appearance: none;
  width: 26px;
  height: 26px;
  background: #d4a437;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(212, 164, 55, 0.5);
}

/* SUMMARY */
.s-summary {
  margin-top: 20px;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 16px;
}

.sum-row.total strong {
  font-size: 20px;
  color: #000;
}

.saver-btn {
  width: 100%;
  background: #d4a437;
  color: #2b1c0f;
  padding: 14px;
  border-radius: 12px;
  border: none;
  margin-top: 22px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.saver-btn:hover {
  background: #b98a2d;
}

.s-note {
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
  color: #6f624a;
}

/* Responsive */
@media (max-width: 900px) {
  .saver-flex {
    flex-direction: column;
  }
  .saver-left,
  .saver-right {
    width: 100%;
  }
}
/* GRAPH BOX */
.graph-box {
  background: linear-gradient(180deg, #2b1c0f, #1d140b);
  padding: 30px;
  border-radius: 25px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.graph-title {
  font-size: 22px;
  font-weight: 600;
  color: #d4a437;
  text-align: center;
  margin-bottom: 15px;
}

/* GRAPH BARS */
.graph-area {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  height: 300px;
  padding: 10px 0;
}
/* Graph Bars Container */
.graph-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* Parent bar wrapper */
.year-bar {
  width: 24px;
  /* height: 260px; */
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
}

/* Bottom (Saved Amount) */
.year-bar .saved {
  width: 100%;
  background: #9f7ff5;
  transition: 0.3s;
}

/* Top (Returns Amount) */
.year-bar .returns {
  width: 100%;
  background: #c8b4ff;
  transition: 0.3s;
}

/* FOOTNOTE */
.graph-note {
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}
.simple-graph-box {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 20px;
  border: 2px solid rgba(212, 164, 55, 0.3);
  box-shadow: 0 10px 25px rgba(212, 164, 55, 0.15);
}

.simple-graph-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #d4a437;
  margin-bottom: 20px;
}

.simple-graph-inner {
  display: flex;
  gap: 10px;
  height: 260px;
}

/* Y Axis Labels */
.y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  font-size: 14px;
  color: #2b1c0f;
  padding-right: 10px;
}

/* Graph Bars */
.graph-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* X Axis */
.x-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 5px;
}

.x-axis span {
  font-size: 13px;
  color: #2b1c0f;
  font-weight: 600;
}

.graph-footnote {
  text-align: center;
  font-size: 12px;
  color: #6f624a;
  margin-top: 10px;
}

/* Saved (Bottom Part) */
.year-bar .saved {
  width: 100%;
  background: #835c1b;
  transition: 0.3s;
}

/* Estimated Returns (Top Part) */
.year-bar .returns {
  width: 100%;
  background: #d4a437;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .mg-steps {
    padding: 30px 0px;
  }
}
@media (max-width: 768px) {
  .gold-section .subtitle {
    font-size: 16px;
  }
  .features {
    flex-direction: column;
    gap: 2px;
    margin-top: 5px;
    text-align: center;
    align-items: center;
  }
  .divider {
    margin: 10px auto;
  }
  .trust-row {
    flex-direction: column;
    gap: 2px;
  }
  .features .item h4 {
    font-size: 16px;
  }
  .mg-saving-tabs {
    padding: 30px 0px;
  }
  .mg-tab {
    padding: 5px 10px;
    margin-bottom: 5px;
  }
  .mg-subtitle {
    margin-bottom: 5px;
  }
  .mg-img-text h3 {
    font-size: 16px;
  }
  .mg-img-text p {
    font-size: 14px;
  }
  .mg-img-text {
    right: 18px;
  }
  .mg-test-title,
  .mg-faq-title,
  .gold-section .title,
  .mg-title,
  .gold-rates-hero h1,
  .gold-tabs-container h2,
  .gold-trend-section h2,
  .gold-info-title,
  .trust-title,
  .section-title,
  .lux-title {
    font-size: 25px;
  }
  .mg-testimonials {
    padding: 30px 0px;
  }
  .mg-test-subtitle {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .mg-faq {
    padding: 30px 0px;
  }
  .footer-logo {
    width: 100px;
  }
  .gold-rates-hero,
  .gold-tabs-container,
  .gold-trend-section,
  .gold-calculator-section,
  .gold-info-section,
  .gold-trust-section,
  .about-us,
  .mission-style-1,
  .about-why,
  .about-team,
  .lux-contact-section {
    padding: 30px 0px;
  }
  .trend-filters button {
    border: 1px solid #2b1c0f;
    background: #2b1c0f;
    color: #eeb033;
    padding: 4px 10px;
    margin: 0 1px;
  }
  .calc-right {
    padding-top: 10px;
  }
  .calc-img {
    width: 100%;
    max-width: 436px;
    height: 65vh;
  }
  .vj-content h2 {
    font-size: 20px;
  }
  .vj-circle {
    padding: 5px 10px;
  }
  .vj-content p {
    font-size: 14px;
  }
}
.benefits-section {
  background-image: url("../images/banner/about.png");
  padding: 80px 0;
}

/* Titles */
.benefits-label {
  color: #835c1b;
  font-weight: 700;
  letter-spacing: 1px;
}

.benefits-title {
  font-size: 42px;
  font-weight: 700;
  color: #644818;
}

/* Benefit Box */
.benefit-box {
  background: #fff;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border: 1px solid rgba(212, 164, 55, 0.3);
}

.benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* CSS Icon (Bootstrap Icon) */
.benefit-icon {
  font-size: 48px;
  color: #d4a437;
  margin-bottom: 20px;
}

/* Heading + Para */
.benefit-box h4 {
  font-weight: 700;
  color: #2b1c0f;
  margin-bottom: 10px;
}

.benefit-box p {
  font-size: 15px;
  color: #5b4633;
}

/* Mobile */
@media (max-width: 767px) {
  .benefits-title {
    font-size: 32px;
  }
}
.choose-section {
  background: #fdf5df; /* Light gold tint */
  padding: 80px 0;
}

/* Titles */
.choose-label {
  color: #d4a437;
  font-weight: 700;
  letter-spacing: 1px;
}

.choose-title {
  font-size: 42px;
  font-weight: 700;
  color: #2b1c0f;
}

/* Feature Box */
.choose-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  border: 1px solid rgba(212, 164, 55, 0.35);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.choose-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Golden Icons (Bootstrap Icons) */
.choose-icon {
  font-size: 50px;
  color: #d4a437;
  margin-bottom: 20px;
}

/* Text */
.choose-box h4 {
  font-weight: 700;
  font-size: 22px;
  color: #2b1c0f;
}

.choose-box p {
  font-size: 15px;
  margin-top: 8px;
  color: #5b4633;
}

/* Mobile */
@media (max-width: 767px) {
  .choose-title {
    font-size: 32px;
  }
}
.highlights-section {
  background: #fff;
  padding: 80px 0;
}

/* Titles */
.highlights-label {
  color: #d4a437;
  font-weight: 700;
  letter-spacing: 1px;
}

.highlights-title {
  font-size: 42px;
  font-weight: 700;
  color: #2b1c0f;
}

/* List Wrapper */
.highlight-list {
  max-width: 750px;
  margin: 0 auto;
}

/* Each Highlight Row */
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
  padding: 15px 10px;
  border-left: 4px solid #d4a437;
  background: rgba(212, 164, 55, 0.07);
  border-radius: 8px;
}

/* Golden Dot Icon */
.highlight-icon {
  height: 14px;
  width: 14px;
  background: #d4a437;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Text */
.highlight-item p {
  margin: 0;
  font-size: 17px;
  color: #2b1c0f;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 767px) {
  .highlights-title {
    font-size: 30px;
  }
  .highlight-item {
    padding: 12px 8px;
  }
  .highlight-item p {
    font-size: 15px;
  }
}
