/* Import Spectral font */
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@400;500;600&display=swap');

/* Apply Spectral globally */
html, body,
h1, h2, h3, h4, h5, h6,
p, span, label,
button, input, textarea, select {
  font-family: 'Spectral', 'Optima', 'Segoe UI', 'Candara', 'Calibri', 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Override bright blue button to custom navy blue */
button.active,
.button.active,
.nav-button.active,
.tab.active,
.selected-tab,
.highlighted {
  background-color: #002957 !important;
  color: #fff !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 80%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px !important;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  opacity: 0.5;
  background-color: hsl(var(--black) / 0.5);
  border-color: hsl(var(--black) / 0.01);
}

.h-45 {
  height: 50px;
}

.h-none {
  height: 37px !important;
}

.input-group-text {
  color: #747474;
  background-color: #fff;
  border-color: hsl(var(--black) / 0.08);
  transition: all linear .15s;
}

.account-form .input-group-text {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-left: 0;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-right: 0;
}

@media screen and (min-width:768px) and (max-width:1024px) {
  .hover-input-popup .input-popup {
    left: 70% !important;
  }
}

.input-group-text.removeFile {
  border-color: hsl(var(--black) / 0.1) !important;
  border-style: dashed;
}

.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker .ranges li.active,
.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker .ranges li.active {
  background-color: hsl(var(--base)) !important;
}.happy-user {
  display: none !important;
}
/* ✅ Custom background image */
.banner-section.section-overlay {
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1753703490/1-welcome-to-access_rkm8ee.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent !important;
}

/* ✅ Remove animated shapes */
.banner-bg-masks-group,
.banner-bg-masks-group .bg-mask,
.banner-bg-masks-group .bg-circle,
.banner-bg-masks-group .bg-polygon {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
<style>
  .banner-content__title {
    color: white !important;
  }
</style>
.banner-section .banner-content__title {
  color: #ffffff !important;
}
section.banner-section h1.banner-content__title {
  color: white !important;
}
.icon-Asset-1 {
  display: none !important;
}
.banner-content__title {
  font-size: 40px; /* Adjust as needed */
}
.btn--base {
  background-color: #C68A11 !important;
  color: #ffffff !important;
  border-color: #C68A11 !important;
}

.btn--base:hover {
  background-color: #a5710e !important; /* Optional: darker shade for hover */
  border-color: #a5710e !important;
}
.btn--base {
  background-color: #C68A11 !important;
  color: #ffffff !important;
  border-color: #C68A11 !important;
}

.btn--base:hover {
  background-color: #d3b068 !important;
  border-color: #d3b068 !important;
  color: #ffffff !important;
}
.banner-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center; /* optional: centers content */
}
.banner-content {
  display: flex;
  flex-direction: column-reverse; /* Reverses the order of image and text */
  align-items: center;            /* Centers both horizontally */
}

.banner-img {
  order: -1; /* Move the image to the top of the flex container */
  margin-bottom: 20px; /* Optional: add space between image and heading */
}
.banner-thumb {
  display: none;
}
.banner-content {
  position: relative;
  padding-top: 100px; /* create space for image */
    padding-bottom: 100px; /* create space for image */
}

.banner-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px; /* adjust size */
  height: 300px;
  background-image: url('https://pay.alumaway.com/assets/images/frontend/banner/68875acd3cfcc1753701069.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.banner-content {
  padding-top: 40px; /* Reduce this number as needed */
  margin-top: 0;
}
.banner-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center; /* optional: to center content horizontally */
}
.video-preview__img {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.banner-content__title {
  margin-top: 0;
}
.banner-content__title {
  margin-top: 300px !important; /* Adjust 40px as needed */
}
.banner-section.section-overlay {
  margin-top: -35px; /* Adjust this value as needed */
}
.banner-content__title {
  font-size: 40px !important; /* default for desktop */
}

/* Medium screens (tablets) */
@media (max-width: 991px) {
  .banner-content__title {
    font-size: 34px !important;
  }
}

/* Small screens (mobile phones) */
@media (max-width: 576px) {
  .banner-content__title {
    font-size: 30px !important;
  }
}
.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-content__title {
  order: 1;
  margin-bottom: 20px; /* spacing below title */
  text-align: center;
}

.banner-content__bottom {
  order: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
/* Move the bottom content block lower */
.banner-content__title {
  display: block;
  margin-bottom: 20px;
  font-size: 32px; /* adjust as needed */
  text-align: center;
}

/* Visually shift the .banner-content__bottom to appear below */
.banner-content__bottom {
  display: block;
  margin-top: 20px;
}

/* Optional: Ensure they stack nicely on mobile too */
@media (max-width: 768px) {
  .banner-content__title {
    font-size: 24px;
  }

  .banner-content__bottom {
    margin-top: 16px;
  }
}
.banner-content__bottom::after {
  content: "SHINING THE WAY FORWARD";
  display: block;
  width: 100%;
  margin-top: 20px;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  order: 99; /* Pushes it to the bottom if flex is used */
}
@media (max-width: 767px) {
  .banner-content__bottom::after {
    line-height: 1.4; /* Adjust the spacing between lines */
    font-size: 20px;  /* Optionally make it smaller on mobile */
    margin-top: 15px; /* Adjust top space if needed */
  }
}
.banner-content__title {
  line-height: 1.2; /* or try 1.1 or even 1 for tighter spacing */
}
.banner-section {
  padding-bottom: 10px; /* Adjust as needed */
}
@media (max-width: 767px) {
  .banner-section {
    padding-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .banner-section {
    padding-top: 200px;
    padding-bottom: 40px;
  }
}
.btn--base:hover {
  background-color: #d3b068 !important;
  border-color: #d3b068 !important;
}
.banner-content__bottom h5,
.banner-content__bottom .shining-text {
  display: none !important;
}
a.btn--base:hover {
  background-color: #d3b068 !important;
  border-color: #d3b068 !important;
  color: #fff !important; /* optional: keeps text white */
}
.btn--base span,
.btn--base small,
.btn--base .extra-text {
  display: none !important;
}
a.btn--base:hover * {
  color: #C68A11 !important;
}
* {
  .btn--base:hover {
  background-color: #d3b068 !important;
  color: #fff !important; /* or change if needed */
}
  .top-header-wrapper,
.top-header-wrapper * {
  color: #fff !important;
}
  .banner-content,
.banner-content h1,
.banner-content a,
.banner-content p,
.banner-content__title,
.video-preview__text {
  color: #002957 !important;
}

.banner-content a:hover,
.banner-content h1:hover,
.banner-content__title:hover,
.video-preview__text:hover {
  color: #C68A11 !important;
}
  .fas.fa-chevron-down {
  font-size: 24px;
  color: #C68A11;
}
  .btn--base:hover {
  background-color: #c8a657; /* Slightly darker gold for hover effect */
  color: #fff;
}
  .btn--base {
  font-family: 'Spectral', serif !important;
}
  .btn--base {
  background-color: #C68A11 !important;
  border-color: #C68A11 !important;
  color: white !important; /* or black if you prefer */
}

.btn--base:hover {
  background-color: #d3b068 !important; /* lighter gold on hover */
  border-color: #d3b068 !important;
  color: white !important;
}
  .btn--base {
  font-family: 'Spectral', serif !important;
  font-weight: 700 !important; /* 700 = bold */
}
  img[src="https://pay.alumaway.com/placeholder-image/50x50"] {
  display: none !important;
}
  .icon-element-55-1 {
  display: none !important;
}
  .section-heading__title {
  font-size: 24px; /* adjust as needed */
}
  .section-heading__subtitle {
  font-size: 0; /* hides text */
  line-height: 0;
  position: relative;
  height: 50px; /* space for the logo */
}

.section-heading__subtitle::before {
  content: '';
  display: block;
  width: 180px; /* adjust width */
  height: 90px;  /* adjust height */
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1753783309/Aluma-Way-logo_c7xynf.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}
  .section-heading__subtitle {
  background: none !important;
}

.section-heading__subtitle::before {
  background-color: transparent !important;
}
  .section-heading {
  text-align: center;
}

.section-heading__subtitle,
.section-heading__title {
  display: block;
  margin: 0 auto;
}
  .section-heading__title {
  text-align: center;
}
  .section-heading {
  text-align: center;
}
  .section-heading {
  text-align: center;
}

.section-heading__logo {
  max-width: 150px; /* or whatever size you want */
  margin: 0 auto 20px auto;
  display: block;
}
 .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
}

.section-heading__subtitle {
  font-size: 0; /* Hide the text ALUMA WAY */
  height: auto;
  margin-bottom: 20px;
  position: relative;
}

.section-heading__subtitle::before {
  content: '';
  display: block;
  width: 160px; /* logo width */
  height: 90px;  /* logo height */
  margin: 0 auto;
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1753783309/Aluma-Way-logo_c7xynf.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section-heading__title {
  font-size: 20px;
  color: #002957;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}
  /* FORCE center alignment for heading section */
.section-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 20px 15px !important;
  width: 100% !important;
}

/* REPLACE H6 TEXT WITH LOGO IMAGE */
.section-heading__subtitle {
  font-size: 0 !important;
  line-height: 0 !important;
  height: auto !important;
  margin-bottom: 20px !important;
  position: relative !important;
}

.section-heading__subtitle::before {
  content: '' !important;
  display: block !important;
  width: 160px !important;
  height: 90px !important;
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1753783309/Aluma-Way-logo_c7xynf.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  
  /* NEW FIX: Center using margin and flex */
  margin-left: auto !important;
  margin-right: auto !important;
}
  .section-heading__subtitle {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
}
  .section-heading__subtitle {
  display: none !important;
}
  .section-heading__title {
  line-height: 1.2; /* try 1.1 or 1.0 for tighter spacing */
}
  .section-heading__title {
  position: relative;
  text-align: center;
  padding-top: 120px; /* Makes room for the image above */
  font-size: 20px;
  line-height: 1.2;
  color: #002957;
}

/* Inject the logo image above the h2 text */
.section-heading__title::before {
  content: '';
  display: block;
  width: 180px;
  height: 110px;
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1753783309/Aluma-Way-logo_c7xynf.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
  .about-section {
  padding-top: 60px !important; /* or lower, like 40px or 20px */
}
  .section-heading.style-left {
  margin-top: -30px;
}
  .about-section__content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
  .custom--tab {
  display: flex;
  justify-content: center;
  gap: 10px; /* optional: spacing between buttons */
}
  .section-heading.style-left {
  margin-bottom: 1 !important;
  padding-bottom: 1 !important;
}

.section-heading__title {
  margin-bottom: 1 !important;
}
  .about-section {
  padding-bottom: 30px !important; /* or 0px, or any value you want */
}
  .section-heading__title {
  text-align: center;
}
  .section-heading__title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
  .section-heading__title {
  padding-right: 0 !important;
}
.img-full__left {
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1753800225/9-Services_yhemaa.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100%; /* or try 400px if nothing shows */
  width: 100%;
  display: block;
  position: relative;
}

/* Hide the original image */
.img-full__left img {
  display: none;
}
  .banner-content__title {
  position: relative;
  padding-top: 150px; /* make space for logo above */
  text-align: center;
}

.banner-content__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px; /* adjust size */
  height: 300px;
  background-image: url("https://res.cloudinary.com/dfuzaixwm/image/upload/v1753783309/Aluma-Way-logo_c7xynf.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
  .banner-content__title {
  position: relative;
  padding-top: 180px; /* more space above for logo */
  text-align: center;
  z-index: 1;
}

.banner-content__title::before {
  content: "";
  position: absolute;
  top: -180px; /* pushes logo higher */
  left: 50%;
  transform: translateX(-50%);
  width: 540px; /* adjust size */
  height: 340px;
  background-image: url("https://res.cloudinary.com/dfuzaixwm/image/upload/v1753783309/Aluma-Way-logo_c7xynf.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1; /* ensure it doesn't cover text */
}
  .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.banner-content {
  padding-top: 1 !important;
  padding-bottom: 1 !important;
  margin-top: 1 !important;
  margin-bottom: 1 !important;
}

.row {
  margin-top: 1 !important;
  margin-bottom: 1 !important;
}
.banner-section, .hero-area {
  padding-top: 10px !important;
  padding-bottom: 5px !important;
  margin-top: 10px !important;
  margin-bottom: 5px !important;
}
  ul.top-contact.contact-list {
  display: none !important;
}
ul.top-button.follow-social-list span.follow-social-list__text {
  display: inline-block;
  margin-right: 10px;
}
  body, html {
  margin: 0;
  padding: 0;
}
  .banner-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: relative;
}
  .banner-img img {
  display: block;
  margin: 0;
  padding: 0;
}
  .banner-section {
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
}

.banner-content,
.banner-content__bottom {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
}
 /* Ultra-specific override for Pay Aluma Way buttons */
section.banner-section a.btn.btn--base:hover,
section.banner-section a.btn.btn--base:focus,
section.banner-section a.btn.btn--base:active {
    background-color: #b8860b !important; /* Dark gold */
    color: #fff !important;
    border-color: #b8860b !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none !important;
}

/* Also target other pages where .btn--base is used */
a.btn.btn--base:hover,
a.btn.btn--base:focus,
a.btn.btn--base:active {
    background-color: #b8860b !important;
    color: #fff !important;
    border-color: #b8860b !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none !important;
}

/* Remove any focus glow */
a.btn.btn--base:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
  /* Force all button hover/focus states to dark gold, no blue */
a.btn.btn--base:hover,
a.btn.btn--base:focus,
a.btn.btn--base:active,
a.btn.btn--base:focus-visible {
    background-color: #b8860b !important;
    color: #fff !important;
    border-color: #b8860b !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    transition: background-color 0.3s ease !important;
}

/* Remove any blue glow from the button's parent or wrapper */
a.btn.btn--base:hover * {
    box-shadow: none !important;
    outline: none !important;
}
  .about-section__content {
    margin-top: 0 !important;   /* Remove any top margin */
    padding-top: 0 !important;  /* Remove any top padding */
}
  .section-heading.style-left {
    padding-bottom: 10px !important; /* reduce as needed */
}
  .section-heading__title {
    font-size: 1.8rem !important; /* adjust size as needed */
}
  .section-heading__title::before {
    width: 110px !important;    /* increase width */
    height: 110px !important;   /* increase height */
    background-size: contain !important; /* ensure image scales nicely */
    /* if it uses background-image */
}
  .section-heading.style-left {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section-heading__title {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section-heading__subtitle {
    margin-bottom: 0px !important; /* or 0 if you want it tighter */
}
  .section-heading.style-left {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section-heading__title {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section-heading__subtitle {
    margin-bottom: 0px !important;
}

/* Try removing space from whatever comes right after */
.section-heading.style-left + * {
    margin-top: 10 !important;
    padding-top: 10 !important;
}
  .about-section__content {
    margin-top: 10 !important;
    padding-top: 10 !important;
}
  .section-heading.style-left {
    margin-bottom: 10 !important;
    padding-bottom: 10 !important;
}

/* Also remove space from the element directly above */
.section-heading.style-left + * {
    margin-top: 10 !important;
    padding-top: 10 !important;
}
  .banner-section {
  margin-top: 20px !important;
  padding-top: 20px !important;
}
  .about-section__content {
  margin-top: 50px; /* Adjust this value as needed */
}
  .about-section__content {
  margin-top: 20px !important;
}
  @media (max-width: 767px) {
  .banner-content {
    padding-top: 5px !important;
    padding-bottom: 10px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .banner-content__title {
    margin-bottom: 10px !important;
    font-size: 24px !important; /* optional: shrink heading */
  }

  .banner-content__bottom {
    gap: 5px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .video-preview-content {
    margin-top: 0 !important;
  }
}
  @media (max-width: 767px) {
  .banner-content {
    padding-top: 6px !important; /* reduce top space */
  }
.section-heading__title {
  text-align: center;
  position: relative;
}

.section-heading__title::before {
  content: "";
  display: block;
  width: 180px;
  height: 80px;
  margin: 0 auto 50px; /* auto centers it, 20px = space below */
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1753783309/Aluma-Way-logo_c7xynf.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
    .section-heading__title::before {
  content: "";
  display: block;
  width: 120px; /* or whatever size */
  height: auto;
  margin: 0 auto 40px; /* ⬅️ this controls the spacing below the image */
  background-image: url('YOUR-LOGO-URL.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
    img[src*="way-logo.png"] {
  display: block;
  margin: 0 auto;
  padding-bottom: 100px; /* ⬅️ space below the logo */
  max-width: 120px;
  height: auto;
}
@media (max-width: 768px) {
  .your-image-class {
    display: block !important;
  }
}
    .headline-wrapper {
  position: relative;
  text-align: center;
}

.headline-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  height: auto;
  z-index: 1;
}

.section-heading__title {
  position: relative;
  z-index: 2;
  color: #fff; /* or adjust based on image contrast */
  padding-top: 100px; /* adjust so text isn't hidden under image */
}

/* Responsive handling */
@media (max-width: 768px) {
  .headline-image {
    width: 100%;
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    margin-bottom: 20px;
  }

  .section-heading__title {
    padding-top: 0;
  }
}
    .headline-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.headline-image {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px auto;
  z-index: 1;
}

.section-heading__title {
  position: relative;
  z-index: 2;
  color: #000; /* or white if on top of image */
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
}

/* Optional: Force visibility on mobile */
@media (max-width: 768px) {
  .headline-wrapper,
  .headline-image,
  .section-heading__title {
    display: block !important;
    visibility: visible !important;
  }
  .stacked-block {
  position: relative;
  text-align: center;
  padding-top: 120px; /* leave space so heading is visible */
}

.overlay-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: auto;
  z-index: 1;
}

.section-heading__title {
  position: relative;
  z-index: 2;
  font-size: 24px;
  color: #000;
}

/* Ensure image and text show on mobile */
@media (max-width: 768px) {
  .overlay-img {
    width: 90%;
    max-width: 100%;
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    margin-bottom: 20px;
  }

  .stacked-block {
    padding-top: 0;
  }
}
  /* Make sure any overlay image is visible */
.section-heading__title {
  position: relative;
  z-index: 2;
}

/* Target the image that's meant to be on top */
img.overlay-on-heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  height: auto;
  z-index: 1;
  display: block;
}

/* On mobile, make sure the image doesn't break layout */
@media (max-width: 768px) {
  img.overlay-on-heading {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 20px;
    z-index: 1;
  }

  .section-heading__title {
    margin-top: 20px;
  }
}
  .section-heading {
  position: relative;
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1753783309/Aluma-Way-logo_c7xynf.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  padding-top: 500px; /* space for image to show above text */
}

/* Make it responsive on mobile */
@media (max-width: 768px) {
  .section-heading {
    background-size: cover;
    padding-top: 800px;
  }
}
  .section-heading {
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1753783309/Aluma-Way-logo_c7xynf.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 300px auto; /* 👈 make the image smaller */
  padding-top: 800px; /* adjust to make space for smaller image */
}
  .section-heading {
  position: relative;
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1753783309/Aluma-Way-logo_c7xynf.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100px auto;
  padding-top: 800px;
}

@media (max-width: 768px) {
  .section-heading {
    background-size: 100px auto;
    padding-top: 800px;
  }
}
  .section-heading__title {
  margin-top: 100px; /* 👈 Fine adjustment */
}
  .section-heading__title {
  font-size: 18px; /* 👈 smaller than default */
  line-height: 1;
}
  @media (max-width: 768px) {
  .section-heading__title {
    font-size: 14px;
  }
}
  .section-heading__title {
  font-size: 18px;        /* your chosen size */
  line-height: 1;       /* adjust this value to control leading */
}
  @media (max-width: 768px) {
  .section-heading__title {
    font-size: 14px;
    line-height: 1;  /* tighter spacing on smaller screens */
  }
}
  /* Target the container and set new background image */
.account__left {
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1754046155/login-sign-up_z1n78h.jpg') !important;
  background-size: cover;
  background-position: center;
}

/* Hide the inner image */
.account__left .account__thumb {
  display: none !important;
}
  .account__thumb img {
  display: none;
}
  .account__left {
  background-image: url('https://pay.alumaway.com/assets/images/frontend/login_bg/688cb69c472ec1754052252.jpg') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}
  @media (max-width: 768px) {
  .account__left {
    min-height: 200px; /* or auto depending on your layout */
    background-position: top;
  }
}
  .account__left.bg-img {
  background: none !important;
}
  .account__left {
  position: relative;
  min-height: 100vh; /* Ensures it stretches vertically */
  overflow: hidden;
}

.account__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.account__thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}@media (max-width: 768px) {
  .account__left {
    min-height: 300px;
  }
}/* Hide the existing inline <img> */
.account__thumb img {
  display: none;
}

/* Apply the image as a full background */
.account__left {
  background-image: url('https://pay.alumaway.com/assets/images/frontend/login_bg/688cb69c472ec1754052252.jpg') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
}
@media (max-width: 768px) {
  .account__left {
    min-height: 300px; /* or adjust as needed */
    background-position: top center;
  }
}
  .body-overlay {
  display: none !important;
}
  .sidebar-overlay {
  display: none !important;
}
  .account__thumb img {
  display: none;
}

.account__left {
  background-image: url('https://pay.alumaway.com/assets/images/frontend/login_bg/688cb69c472ec1754052252.jpg') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1; /* ensure it's above other elements if needed */
}

.body-overlay,
.sidebar-overlay {
  display: none !important;
}
  body {
    margin: 0;
    padding: 0;
    background-image: url('https://pay.alumaway.com/assets/images/frontend/login_bg/688cb69c472ec1754052252.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
body,
.main-wrapper,
.auth-wrapper,
.login-page {
    background: none !important;
    background-color: transparent !important;
}
  .account__left.bg-img {
    background-image: url('https://pay.alumaway.com/assets/images/frontend/login_bg/688cb69c472ec1754052252.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.account__thumb img {
    display: none !important;
}
  .account__left.bg-img {
    position: relative;
    z-index: 1;
}

.account__left.bg-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('https://pay.alumaway.com/assets/images/frontend/login_bg/688cb69c472ec1754052252.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
.account__thumb {
    display: none !important;
}
  .account__thumb {
    display: none !important;
}
.chose-us {
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1754378141/3-Why-choose-us_sgiyyx.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
  @media (min-width: 992px) {
  .chose-us {
    background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1754378141/3-Why-choose-us_sgiyyx.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
}
  .chose-us {
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1754378141/3-Why-choose-us_sgiyyx.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
  .chose-us {
  position: relative;
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1754378141/3-Why-choose-us_sgiyyx.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.chose-us > * {
  position: relative;
  z-index: 2;
}
  .right-section {
  display: none !important;
}
  .right-section {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}
  .chose-us .col-lg-7 {
  display: none !important;
}
  @media (min-width: 992px) {
  .chose-us .col-lg-7 {
    display: none !important;
  }
}
  /* Hide the right column */
.chose-us .col-lg-7 {
  display: none !important;
}

/* Apply background image to the whole section */
.chose-us {
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1754378141/3-Why-choose-us_sgiyyx.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
  z-index: 1;
}
  section.chose-us > .container > .row > .col-lg-7 {
  display: none !important;
}

section.chose-us {
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1754378141/3-Why-choose-us_sgiyyx.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
  z-index: 1 !important;
}
  @media (min-width: 992px) {
  section.chose-us > .container > .row > .col-lg-7 {
    display: none !important;
  }

  section.chose-us {
    background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1754378141/3-Why-choose-us_sgiyyx.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}
  .custom-bg-image {
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1754378141/3-Why-choose-us_sgiyyx.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  min-height: 500px; /* adjust height as needed */
}
.custom-bg-image {
  background-image: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1754378141/3-Why-choose-us_sgiyyx.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  min-height: 500px; /* Or adjust as needed */
}
  .rotation-animation-content__text {
  display: none !important;
}
  @media (min-width: 992px) {
  .chose-us {
    display: block !important;
    visibility: visible !important;
  }
}
  @media (min-width: 992px) {
  .chose-us {
    height: auto !important;
    overflow: visible !important;
  }
}
  @media (min-width: 992px) {
  .chose-us {
    position: relative !important;
    left: 0 !important;
  }
}
  @media (min-width: 992px) {
  .chose-us {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    position: relative !important;
  }
}
  .chose-us {
  background: url('https://res.cloudinary.com/dfuzaixwm/image/upload/v1754378141/3-Why-choose-us_sgiyyx.jpg') center center no-repeat;
  background-size: cover;
}
  .video-preview__img > img {
    display: none;
}
  <style>
.video-preview__img > img:first-of-type {
    display: none;
}
</style>
  .banner-animation::before {
    display: none !important;
}