
/*======================== THEME COLORS ========================*/
:root[data-theme='dark'] {
    --bg: linear-gradient(135deg, #0d0d0d, #3e3e3e);
    --text: #ffffff;
    --muted-text: #bbbbbb;
    --form-bg: linear-gradient(135deg, #0e0e0e, #1c1b1b);
    --form-bg-title: linear-gradient(135deg, #0d0c0c, #1c1b1b);
    --card-bg: #1a1a1a;
    --sidebar-bg: rgba(255, 255, 255, 0.05);
    --sidebar-bg-active: rgba(255, 255, 255, 0.05);
    --accent: linear-gradient(to right, #171717, #171716);
    --accent-hover: linear-gradient(to right, #f5deb3, #fff2cc);
    --btn-outline: #eae8e8;
    --btn-outline-border: #363434;
    --btn-outline-hover: #ffffff;
    --btn-outline-hover-border: #9e9c9c;
    --btn-hover-text: #1a1a1a;
    --table-th-bg: rgba(0, 0, 0, 0.12);
    --table-th-color: #bbbbbb;
    --table-th-color-hover: rgb(136, 135, 135);
    --table-td-bg: rgba(26, 26, 26, 0.37);
    --table-td-color: #bbbbbb;
    --table-td-color-hover: #888787;
}

:root[data-theme='darkblue'] {
    --bg: linear-gradient(135deg, #101119, #111d47);
    --text: #ffffff;
    --muted-text: #b0b9e0;
    --form-bg: linear-gradient(135deg, #141d39, #0d142b);
    --form-bg-title: linear-gradient(135deg, #0b1023, #070b18);
    --card-bg: #090d1e;
    --sidebar-bg: #090d1e;
    --sidebar-bg-active: rgba(255, 255, 255, 0.05);
    --accent: linear-gradient(to right, #4f69c6, #7ca4f7);
    --accent-hover: linear-gradient(to right, #c3d8ff, #e1ecff);
    --btn-outline: #ffffff;
    --btn-outline-border: #202749;
    --btn-outline-hover: #ffffff;
    --btn-outline-hover-border: #9e9c9c;
    --btn-hover-text: #0a0f3c;
    --table-th-bg: rgba(12, 14, 26, 0.19);
    --table-th-color: #bbbbbb;
    --table-th-color-hover: #888787;
    --table-td-bg: rgba(12, 18, 53, 0.42);
    --table-td-color: #bbbbbb;
    --table-td-color-hover: rgba(4, 20, 85, 0.88);
}

:root[data-theme='light'] {
    --bg: linear-gradient(135deg, #fefefe, #f4f1ea);
    --text: #0f0e0e;
    --muted-text: #555555;
    --form-bg: linear-gradient(135deg, #ffffff, #f7f3ed);
    --form-bg-title: linear-gradient(135deg, #f4efef, #efe9e0);
    --card-bg: #ffffff;
    --sidebar-bg: #ffffff;
    --sidebar-bg-active: rgba(149, 149, 149, 0.08);
    --accent: linear-gradient(to right, #30aefd, #5e91f2);
    --accent-hover: linear-gradient(to right, #ffffff, #1755e7);
    --btn-outline: #757373;
    --btn-outline-border: #dcdcdc;
    --btn-outline-hover: #000000;
    --btn-outline-hover-border: #444343;
    --btn-hover-text: #0f0e0e;
    --table-th-bg: #fdfbfb;
    --table-th-color: #797575;
    --table-th-color-hover: #4c4b4b;
    --table-td-bg: #ffffff;
    --table-td-color: #524e4e;
    --table-td-color-hover: #414040;
}

:root[data-theme='lightblue'] {
    --bg: linear-gradient(135deg, #ffffff, #e0eaf3);
    --text: #161616;
    --muted-text: #323334;
    --form-bg: linear-gradient(135deg, #a4c1ef, #ffffff);
    --form-bg-title: linear-gradient(135deg, #0e3b83, #2b69b4);
    --card-bg: #ffffff;
    --sidebar-bg: #4d91f6;
    --sidebar-bg-active: rgba(0, 0, 0, 0.1);
    --accent: linear-gradient(to right, #04316d, #3359dc);
    --accent-hover: linear-gradient(to right, #c3c7f7, #ffffff);
    --btn-outline: #505e7f;
    --btn-outline-border: #d4dae8;
    --btn-outline-hover: #000000;
    --btn-outline-hover-border: #444343;
    --btn-hover-text: #151414;
    --table-th-bg: #fdfbfb;
    --table-th-color: #797575;
    --table-th-color-hover: #4c4b4b;
    --table-td-bg: #ffffff;
    --table-td-color: #524e4e;
    --table-td-color-hover: #414040;
}

/*======================== GLOBAL STYLES ========================*/
body {
  margin: 0;
  padding: 0;
  font-family: 'Cormorant Garamond', 'Libre Baskerville', serif;
  background: var(--bg);
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Libre Baskerville', serif;
    color: var(--text);
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: inherit;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

button,
.btn {
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-accent {
    background: var(--accent);
    background-size: 200%;
    background-position: left;
    color: #fff;
    transition: all 0.4s ease;
}

.btn-accent:hover {
    background: var(--accent-hover);
    background-size: 200%;
    background-position: right;
    color: var(--btn-hover-text) !important;
}

.btn-outline-light {
    border-color: var(--btn-outline-border);
    color: var(--btn-outline);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--btn-outline-hover-border);
    color: var(--btn-outline-hover) !important;
}

.btn-orange {
    background-color: #fd9147;
    border-color: #fd9147;
    color: white;
}

.btn-orange:hover {
    background-color: #e97f38;
    border-color: #e97f38;
}

.login-form-container {
    background: var(--form-bg);
    border-radius: 12px;
    overflow: hidden;
}


/*======================== THEME DOTS ========================*/
.theme-toggle-dots {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.75rem;
}

.theme-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.theme-dot.dark {
    background: linear-gradient(to right, #0d0d0d, #343232);
}

.theme-dot.darkblue {
    background: linear-gradient(to right, #0b1437, #3963fa);
}

.theme-dot.light {
    background: linear-gradient(to right, #fefefe, #f4f1ea);
    border: 1px solid black;
}

.theme-dot.lightblue {
    background: linear-gradient(to right, #0b78f6, #ffffff);
    border: 1px solid black;
}


/* Preloader Overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Spinner Icon */
.loader-content i {
  font-size: 40px;
  color: #e0c49a;
  text-align: center;
  display: block;
  margin: auto;
  margin-bottom: 10px;
}

/* Loading Text */
.loader-content p {
  color: #e0c49a;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-align: center;
  margin: auto;
  display: block;
}
.alert-message {
      background-color: #222;
      border-left: 5px solid #c5a100;
      padding: 15px 20px;
      margin-top: 30px;
      margin-bottom: 30px;
      border-radius: 8px;
      color: #f8f8f8;
    }
/* Fade-out animation */
.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.hero{
  background-image: 
    linear-gradient(rgba(6, 6, 6, 0.904), rgba(20, 20, 22, 0.406)), 
    url('../images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional */
  color: white;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
}
    .navbar {
      background-color: #0d0d0d;
      border-bottom: 1px solid #20201e;
    }
    .navbar-brand {
      font-weight: bold;
      color: #f4f3ef !important;
    }
    .nav-link {
      color: #333 !important;
    }

    .qrich-navbar .nav-link {
  color: var(--muted-text);
  font-weight: 500;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.qrich-navbar .nav-link:hover {
  color: var(--accent-hover);
  transform: translateY(-2px);
}

.qrich-navbar .nav-link.active {
  color: var(--accent)!important;
  font-weight: bold;
  border-bottom: 2px solid var(--accent);
}


    .logo {
      color: #e0c49a;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .slogan {
      font-size: 1.2rem;
      color: #ccc;
      margin-bottom: 30px;
    }

    .fashion-image {
      width: 300px;
      max-width: 90%;
      margin-bottom: 30px;
    }

    .btn {
      padding: 12px 24px;
      background: #e0c49a;
      color: #111;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .btn:hover {
      background: #d4b07f;
    }

.login_btn {
    border-radius: 4px;
    border: 1px solid gray;
}
    @media (max-width: 500px) {
      .logo {
        font-size: 1rem;
      }
    }


    .slogan {
  font-size: 1.5rem;
  color: #e0c49a;
  margin-bottom: 30px;
  animation: zoomIn 1s ease forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.qrich-designer-invite {
  background: linear-gradient(to right, #0d0d0d, #1a1a1a);
  padding: 80px 20px;
  text-align: center;
  color: #f5f5f5;
  font-family: 'Segoe UI', sans-serif;
}

.designer-content {
  max-width: 850px;
  margin: auto;
  padding: 50px;
  border: 2px solid rgba(224, 196, 154, 0.2);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  box-shadow: 0 0 30px rgba(224, 196, 154, 0.1);
}

.headline {
  font-size: 2.2rem;
  color: #e0c49a;
  margin-bottom: 10px;
  font-weight: 600;
}

.subtext {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.offer-box {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(224, 196, 154, 0.15);
}

.offer-points {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #eee;
}

.offer-points li {
  margin: 15px 0;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.offer-points li::before {
  content: "â˜…";
  position: absolute;
  left: 0;
  color: #e0c49a;
  font-size: 1rem;
}

.offer-points span {
  color: #e0c49a;
  font-weight: bold;
}

.call-to-action {
  font-style: italic;
  color: #e0c49a;
  margin-bottom: 20px;
  font-size: 1.1rem;
}



.qrich-referral {
  background: linear-gradient(to right, #1a1a1a, #0f0f0f);
  color: #f5f5f5;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.referral-container {
  max-width: 1100px;
  margin: auto;
}

.referral-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.referral-icon {
  flex: 1 1 200px;
  font-size: 100px;
  color: #e0c49a;
  text-align: center;
}

.referral-text {
  flex: 2 1 500px;
  text-align: left;
}

.referral-title {
  font-size: 2rem;
  color: #e0c49a;
  margin-bottom: 15px;
}

.referral-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.referral-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #ddd;
}

.referral-benefits li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.referral-benefits li::before {
  content: "âœ”";
  position: absolute;
  left: 0;
  color: #e0c49a;
}

.referral-note {
  font-size: 0.95rem;
  color: #aaa;
  font-style: italic;
  margin-bottom: 25px;
}

.referral-btn {
  padding: 14px 32px;
  background-color: #e0c49a;
  color: #111;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.referral-btn:hover {
  background-color: #d1ae75;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .referral-grid {
    flex-direction: column;
    text-align: center;
  }

  .referral-text {
    text-align: center;
  }

  .referral-icon {
    font-size: 80px;
  }
}



.qrich-charity {
  background-image: 
    linear-gradient(rgba(10, 10, 10, 0.587), rgba(1, 12, 46, 0.771)), 
    url('../images/charity_food.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional */
  color: #fff9ed;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.charity-container {
  max-width: 1100px;
  margin: auto;
}

.charity-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.charity-icon {
  flex: 1 1 200px;
  font-size: 100px;
  color: #e0c49a;
  text-align: center;
}

.charity-text {
  flex: 2 1 400px;
  text-align: left;
}

.charity-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.charity-subtitle {
  font-size: 1.1rem;
  color: #f6e6c5;
  margin-bottom: 20px;
  font-style: italic;
}

.charity-highlight {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffebc6;
  margin-bottom: 15px;
}

.charity-message {
  font-size: 1rem;
  line-height: 1.6;
  color: #f7f0e2;
  margin-bottom: 20px;
}

.charity-statement {
  font-size: 1.1rem;
  color: #ffdd9a;
  font-style: italic;
  margin-bottom: 25px;
}

.charity-btn {
  padding: 12px 28px;
  background-color: #e0c49a;
  color: #111;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.charity-btn:hover {
  background-color: #d1ae75;
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .charity-grid {
    flex-direction: column;
    text-align: center;
  }

  .charity-text {
    text-align: center;
  }
}





.luxury-btn {
  padding: 14px 32px;
  background-color: #e0c49a;
  color: #111;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.luxury-btn:hover {
  background-color: #d4b07f;
  transform: scale(1.03);
}



.qrich-categories {
  background: linear-gradient(to right, #0b0b0b, #1a1a1a);
  color: #e0c49a;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.categories-wrapper {
  max-width: 1000px;
  margin: auto;
}

.category-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.category-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.cat-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 196, 154, 0.2);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.cat-box i {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
  color: #f5d88b;
}

.cat-box span {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
}

.cat-box p {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 8px;
}

.cat-box:hover {
  background-color: rgba(224, 196, 154, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(224, 196, 154, 0.3);
}


.about-qrich {
  background: linear-gradient(to right, #111, #1c1c1c);
  padding: 80px 20px;
  color: #f5f5f5;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.about-title {
  font-size: 2.2rem;
  color: #e0c49a;
  margin-bottom: 10px;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
  font-style: italic;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 20px;
}



.contact-qrich {
  background: #111;
  color: #f5f5f5;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  color: #e0c49a;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 300px;
  text-align: left;
}

.contact-info h3 {
  color: #e0c49a;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #ddd;
}

.contact-info i {
  color: #e0c49a;
  margin-right: 8px;
}

.contact-form {
  flex: 1 1 400px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
padding: 50px;
border-radius: 6px;
  background: linear-gradient(to right, #0b0b0b, #1a1a1a);
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background: #1d1d1d;
  border: 1px solid #e0c49a;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background-color: #e0c49a;
  color: #111;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #d1ae75;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }
}


.qrich-footer {
  background: #0e0e0e;
  color: #e0c49a;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #fff;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #e0c49a;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-socials a {
  font-size: 1.2rem;
  color: #e0c49a;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  color: #fff;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

.requirements-section {
  background: var(--bg);
  font-family: 'Segoe UI', sans-serif;
}

.level-box {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: rgba(224, 196, 154, 0.2);
  box-shadow: 0 0 15px rgba(224, 196, 154, 0.1);
  transition: transform 0.3s ease;
}

.level-box:hover {
  transform: translateY(-5px);
}

.text-gold {
  color: #e0c49a;
}
.qrich-values-section {
  background: var(--bg);
  color: var(--text);
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--accent-hover);
}

.value-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
  text-align: left;
  color: var(--muted-text);
}

.value-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.value-list li::before {
  content: "âœ”ï¸";
  position: absolute;
  left: 0;
}
.qrich-policy-section {
  padding: 80px 20px;
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.qrich-policy-section .container {
  max-width: 900px;
  margin: auto;
}

.policy-heading {
  font-size: 2.2rem;
  color: var(--accent-hover);
  margin-bottom: 30px;
  font-weight: bold;
}

.qrich-policy-section p {
  font-size: 1rem;
  color: var(--muted-text);
  margin-bottom: 20px;
  line-height: 1.8;
}
.qrich-freedom-section {
  background: var(--bg);
  color: var(--text);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.qrich-freedom-section .container {
  max-width: 900px;
  margin: auto;
}

.freedom-heading {
  font-size: 2rem;
  color: var(--accent-hover);
  margin-bottom: 30px;
  font-weight: bold;
}

.freedom-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--muted-text);
}
.qrich-application-cost {
  background: var(--form-bg);
  color: var(--text);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 12px;
}

.cost-heading {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--accent-hover);
}

.cost-amount {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.cost-note {
  font-size: 1.05rem;
  color: var(--muted-text);
}
.qrich-global-reach {
  background: var(--bg);
  color: var(--text);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.qrich-global-reach .container {
  max-width: 900px;
  margin: auto;
}

.global-heading {
  font-size: 2.2rem;
  color: var(--accent-hover);
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.4;
}

.global-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--muted-text);
  margin-bottom: 20px;
}
.qrich-apply-now {
  background: var(--form-bg-title);
  color: var(--text);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.qrich-apply-now .container {
  max-width: 800px;
  margin: auto;
}

.apply-heading {
  font-size: 2.2rem;
  color: var(--accent-hover);
  margin-bottom: 20px;
  font-weight: bold;
}

.apply-lead {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.qrich-apply-now p {
  font-size: 1rem;
  color: var(--muted-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.apply-btn {
  display: inline-block;
  padding: 14px 30px;
  background: white;
  color: var(--btn-hover-text);
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.apply-btn:hover {
  background: gray;
  transform: scale(1.05);
}
