:root {
  --brand-red: #CB2036;
  --brand-red-dark: #B72437;
  --brand-cream: #FFF5D6;
  --brand-grey: #F1F2F2;
  --brand-text: #000000;
  --h1-font-size: 40px;

}

body {
  color: var(--brand-text);
  font-family: 'Anek Latin', sans-serif;
  font-size: 20px;
}

html,
body {
  overflow-x: hidden !important;
  width: 100%;
  scroll-behavior: smooth;
}

section,
.container,
.row {
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Utilities */
.text-brand {
  color: var(--brand-red) !important;
}

.bg-cream {
  background: var(--brand-cream);
}

.bg-red-dark {
  background: var(--brand-red-dark);
}

.bg-grey {
  background: var(--brand-grey);
}

.btn-brand {
  background: var(--brand-red) !important;
  color: #fff !important;
  border: 0!important;
}

.btn-brand:hover {
  background: var(--brand-red-dark) !important;
  color: #fff !important;
}

.ribbon {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  padding: .5rem 1rem;
  border-radius: .75rem;
}

/* Start Heading Adjustment some sections */
.responsive-heading {
  font-size: 70px;
  line-height: 4.375rem;
}

.responsive-subheading {
  font-size: 40px;
}

.abmoney-heading {
  font-size: 54px;
}


@media (max-width: 767.98px) {
  .responsive-heading {
    font-size: 40px;
    line-height: 2.5rem;
  }

  .abmoney-heading {
    font-size: 24px;
  }

  .responsive-subheading {
    font-size: 22px;
  }
}

/* Heading Adjustment of some sections End*/

/*Start Hover effecr on eleveate app and benefits section */

.hover-bg:hover {
  background-color: #FFF5D6 !important;
  transition: background-color 0.3s ease;
}

.hover-red {
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.hover-red:hover {
  background-color: #C7222C !important;
  color: #fff !important;
}

.hover-red:hover .text-red,
.hover-red:hover .muted {
  color: #fff !important;
}

.hover-bg:hover,
.tile:hover {
  transform: translateY(-6px);
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon img,
.benefit-icon img,
.tile-icon {
  transition: transform 0.4s ease;
}

.stat-icon img:hover,
.benefit-icon img:hover,
.tile-icon:hover {
  transform: scale(1.05);
}

.fade-tile {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate .fade-tile {
  opacity: 1;
  transform: scale(1);
}

/* Hover effecr on eleveate app and benefits section end*/


.tile-icon {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
}

.stat-icon {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
}

.border-brand {
  border-color: #b7d156 !important;
}

.form-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.lead-tight {
  line-height: 70px;
}

.tile {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  height: 100%;
  border: 1px solid #D4D7DA;
}

.form-control {
  padding: .75rem .75rem;
  margin: 20px 0px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  border: var(--bs-border-width) solid #D4D7DA;

  box-shadow: 0 3px 0px -2px #0304031f;
}

.abmoney-benefits {
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 350px;

}

.elevate-app {
  background: linear-gradient(to bottom, #ffffff 84%, #FFF5D6 16%);
}

/* START ELEVATE APP SECTION CSS ADJUSTMENT */
.elevate-app .tile {
  position: relative;
  border: 0 !important;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 1rem;
  /* space for overlapping icon */
  overflow: visible;
  background: #fff;
}

/* Icon overlap (top-right) */
.elevate-app .tile-icon {
  position: absolute;
  top: -22px;
  /* slightly out from the top */
  right: 40px;
  /* move to the right side */
  width: 56px;
  height: 56px;
  object-fit: contain;
  pointer-events: none;
}

/* Subtext color */
.elevate-app .muted {
  color: #808285;
}

/* Accent color for titles */
.text-red {
  color: #CB2033;
  padding-right: 20px;
}

/* Start flying animation images  */
@keyframes flySideways {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-10px);
  }

  50% {
    transform: translateX(0);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

.flyingAnimation {
  animation: flySideways 5s linear infinite;
  will-change: transform;
}

/* End flying animation images  */

/* Mobile adjustment */
@media (max-width: 767px) {
  .text-red {
    margin-right: 50px;
  }
}

/* END ELEVATE APP SECTION CSS ADJUSTMENT */

@media (max-width: 992px) {
  .abmoney-benefits {
    background-position: center top;
    min-height: 400px;
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .abmoney-benefits {
    background-position: center;
    background-size: cover;
    min-height: 200px;
    padding: 50px 0;
  }
}

/* Phones mock image: keeps aspect on small screens */
.device-img {
  max-width: 240px;
}

@media (min-width: 992px) {
  .device-img {
    max-width: 280px;
  }
}

/* Small helpers for icon placeholders (replace with real svgs/pngs) */
.ph svg {
  width: 28px;
  height: 28px;
  fill: var(--brand-red);
}
.customfs4size{
  font-size: 1.4rem!important;
}
