main {
  overflow-x: hidden;
}

.about-section,
.reward-section-main-row,
.insight-section {
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

/*special padding for about us section title*/
.about-section__title-row{
  padding-top: 25px !important;
}

.forminator-field .forminator-description {
  display: none !important
}

/* === HOMEPAGE HERO SECTION === */
.homepage-hero {
  padding: var(--section-padding-y) var(--section-padding-x) !important;
  display: flex !important;
  align-items: stretch;
  gap: 2rem;
  background: #fff;
}

.homepage-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.homepage-hero__title h1 {
  font-size: var(--hero-title-fs);
  line-height: var(--hero-title-lh);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: clamp(1.2rem, 2vw, 2.2rem);
  letter-spacing: -0.02em;
}

.homepage-hero__divider img {
  width: auto;
  height: auto;
}

.homepage-hero__subtitle p {
  font-size: var(--hero-subtitle-fs);
  line-height: var(--hero-subtitle-lh);
  font-weight: var(--hero-subtitle-fw);
  color: var(--color-secondary);
  margin-bottom: clamp(0.8rem, 1vw, 1.2rem);
}

.homepage-hero__partners {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.homepage-hero__partners-row {
  gap: var(--hero-logos-gap) !important;
}

.homepage-hero__partner-logo img {
  height: var(--hero-logo-h) !important;
  width: auto;
}

.homepage-hero__right {
  flex: 1 1 0;
  min-width: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0;
}

.forminator-edit-module {
  display: none;
}

.homepage-hero__form-card h3.form-title {
  font-size: var(--form-title-fs);
  line-height: var(--form-title-lh);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: clamp(0.7rem, 1vw, 1rem);
}

.homepage-hero__form-card p.form-description {
  font-size: var(--section-para-fs);
  line-height: var(--section-para-lh);
  font-weight: 400;
  color: var(--color-secondary);
  margin-bottom: clamp(0.6rem, 0.8vw, 0.9rem);
  max-width: 100%;
}

.homepage-hero__form-card input,
.homepage-hero__form-card textarea {
  background: #eee;
  border: none !important;
  border-radius: 0;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}

.homepage-hero__form-card button,
.homepage-hero__form-card .forminator-button,
.homepage-hero__form-card .wpforms-submit {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700 !important;
  font-size: var(--btn-hero-font-size) !important;
  gap: var(--btn-gap) !important;
}

.homepage-hero__form-card button:hover,
.homepage-hero__form-card .forminator-button:hover,
.homepage-hero__form-card .wpforms-submit:hover {
  background: var(--color-secondary);
}

/* === HOMEPAGE HERO FORM CARD BOTTOM RIGHT CORNER DECORATION === */

.homepage-hero__form-card {
  position: relative;
}

.homepage-hero__form-card::before {
  content: '';
  position: absolute;
  box-shadow: none;
  bottom: -19px;
  right: -18px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  z-index: 2;
}

.homepage-hero__form-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -36px;
  width: 18px;
  height: 18px;
  background-color: var(--color-secondary);
  z-index: 1;
}



/* === HOMEPAGE HERO FORM CARD TOP RIGHT CORNER SVG POSITIONING === */

.homepage-hero__form-inner-corner {
  position: absolute;
  top: -4px;
  right: -16px;
  width: clamp(38px, 4.5vw, 72px);
  height: clamp(28px, 3vw, 56px);
  z-index: 3;
  pointer-events: none;
}











.feature-section-title-wrapper {
  position: relative;
  display: inline-block;
}

.feature-section-title {
  color: var(--color-primary);
  font-size: var(--section-title-fs);
  line-height: var(--section-title-lh);
  font-weight: 700;
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 2;
}

.feature-title-corner-svg {
  position: absolute;
  top: clamp(-16px, -1.2vw, -9px);
  right: clamp(-32px, -2vw, -24px);
  width: clamp(20px, 2vw, 25px);
  height: clamp(20px, 2vw, 25px);

  z-index: 3;
  display: inline-block;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: #000;
  box-shadow: 0 6px 32px rgba(229, 57, 53, 0.18), 0 1.5px 6px rgba(229, 57, 53, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 0;
  transition: box-shadow 0.3s cubic-bezier(.4, 0, .2, 1);
}

.feature-card__img,
.feature-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
  border-radius: 0;
}

.feature-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(0deg, #e53935 75%, transparent 100%);
  opacity: 0.82;
  z-index: 2;
  pointer-events: none;
  transition: height 0.3s cubic-bezier(.4, 0, .2, 1), opacity 0.3s cubic-bezier(.4, 0, .2, 1);
  border-radius: 0;
}

.feature-card:hover .feature-card__overlay {
  height: 70%;
  opacity: 0.92;
}

.feature-card__content {
  position: relative;
  /* NOT absolute */
  z-index: 3;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  box-sizing: border-box;
}

.feature-card__title {
  color: #fff;
  font-size: var(--feature-card-title-fs);
  line-height: var(--feature-card-title-lh);
  font-weight: 700;
  position: relative;
  bottom: clamp(-86px, -6vw, -40px);
  margin: 0 0 1rem 0;
  z-index: 10;
  transition: transform 0.3s;
}

.feature-card__button {
  position: relative;
  bottom: -15px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  border-radius: 0;
  padding: clamp(4px, 0.5vw, 8px) clamp(11px, 1.5vw, 19px);
  text-decoration: none;
  margin-top: 0.5rem;
  font-size: clamp(14px, 1.1vw, 16px);
  border: none;
  cursor: pointer;
  box-shadow: none;
  letter-spacing: 0.01em;
  left: calc(-1 * clamp(2px, 0.5vw, 5px));
}

.feature-card:hover .feature-card__button,
.feature-card:focus-within .feature-card__button {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .feature-card__button {
    opacity: 1;
    transform: none;
  }
}

.feature-card__button-arrow img {
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  transition: transform 0.3s;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  /* makes arrow white if SVG is black */
}

.feature-card:hover .feature-card__title {
  transform: translateY(clamp(-60px, -2.5vw, -55px));
}

.feature-card:hover .feature-card__button-arrow img,
.feature-card:focus-within .feature-card__button-arrow img {
  transform: translateX(4px);
}

.feature-card:hover .feature-card__img {
  transform: scale(1.045);
}









/* 1. Make the first row a grid with two columns */
.features-section__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  /* Adjust as needed for Figma proportions */
  gap: 2.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

/* 2. Video card column: relative for absolute positioning of children */
.video-card-col {
  min-height: clamp(250px, 30vw, 380px);
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 6px 32px rgba(229, 57, 53, 0.18), 0 1.5px 6px rgba(229, 57, 53, 0.10);
  background: #000;
}

/* 3. Video widget: fill the card */
.feature-video-card-widget video,
.feature-video-card-widget iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 0;
  background: #000;
  display: block;
}

/* 4. Overlay widget: red gradient overlay at the bottom */
.feature-video-card__overlay {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(0deg, #e53935 0%, transparent 100%);
  opacity: 0.82;
  z-index: 2;
  pointer-events: none;
  transition: height 0.3s cubic-bezier(.4, 0, .2, 1), opacity 0.3s cubic-bezier(.4, 0, .2, 1);
  border-radius: 0;
}

.video-card-col:hover .feature-video-card__overlay {
  height: 80%;
  opacity: 0.92;
}

/* 5. Content widget: title and button at the bottom left, above overlay */
.video-card-content {
  position: relative;
  z-index: 3;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  box-sizing: border-box;
  pointer-events: none;
  /* Only button is clickable */
}

.video-card-content * {
  pointer-events: auto;
}

/* 6. Title styling */
.video-card-title {
  position: relative;
  color: #fff;
  font-size: var(--feature-card-title-fs);
  line-height: var(--feature-card-title-lh);
  font-weight: 700;
  margin: 0 0 1rem 0;
  z-index: 10;
  transition: transform 0.3s;
  bottom: -280px;
}

/* 7. Button styling: hidden by default, appears on hover */
.video-card-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  background: var(--color-secondary, #e53935);
  color: #fff;
  font-weight: 700;
  border-radius: 0;
  padding: clamp(4px, 0.5vw, 6px) clamp(8px, 1vw, 12px);
  text-decoration: none;
  margin-top: 0.5rem;
  font-size: clamp(13px, 1.1vw, 16px);
  border: none;
  cursor: pointer;
  box-shadow: none;
  letter-spacing: 0.01em;
  pointer-events: auto;
  bottom: -210px
}

.video-card-col:hover .video-card-button,
.video-card-col:focus-within .video-card-button {
  opacity: 1;
  transform: translateY(0);
}

.video-card-col:hover .video-card-title {
  transform: translateY(clamp(-60px, -2.5vw, -55px));
}

@media (max-width: 900px) {
  .video-card-button {
    opacity: 1;
    transform: none;
  }
}

/* 8. Button arrow styling */
.video-card-button-arrow img {
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  transition: transform 0.3s;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.video-card-col:hover .video-card-button-arrow img,
.video-card-col:focus-within .video-card-button-arrow img {
  transform: translateX(4px);
}



/* === FEATURES SECTION BOTTOM ROW GRID FIX === */
.features-section__bottom {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.features-section__bottom>.panel-grid-cell {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.features-section__bottom .feature-card {
  width: 100%;
  min-width: 0;
  max-width: none;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}









/* Make the video card expand and be responsive */
.feature-video-card-widget {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: stretch;
}

.feature-video-card-widget .wp-video,
.feature-video-card-widget video {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}













/* === ESTIMATE SECTION === */
/* === ESTIMATE SECTION === */
/* === ESTIMATE SECTION === */

.estimate-section-row {
  display: flex;
  align-items: center;
  /* vertical centering */
  justify-content: space-between;
  min-height: 420px;
  /* or whatever height you want */
  background: #292929;
  position: relative;
  padding: 0 2vw;
  overflow: hidden;
}

.estimate-section-right {
  right: -30px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  /* bottom align */
  justify-content: flex-end;
  /* right align */
  height: 100%;
  min-height: 420px;
  /* match left side */
}

.estimate-section-pattern img,
.estimate-section-pattern .so-widget-image {
  display: block;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 600px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.estimate-section-title-wrapper {
  position: relative;
  display: inline-block;
}

.estimate-section-title {
  color: #fff;
  font-size: var(--section-title-fs);
  line-height: var(--section-title-lh);
  font-weight: 600;
  margin: 0 0 2rem 0;
  position: relative;
  display: inline;
  white-space: normal;
  z-index: 2;
}

.estimate-title-corner-svg {
  position: absolute;
  top: 14px;
  right: -20px;
  transform: translate(50%, -50%);
  width: clamp(20px, 2vw, 25px);
  height: clamp(20px, 2vw, 25px);
  z-index: 3;
  display: block;
}








/* === ABOUT SECTION === */
/* === ABOUT SECTION === */
/* === ABOUT SECTION === */
/* === ABOUT SECTION === */
.about-section__title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.about-section__content {
  position: relative;
  top: -115px;
}

.about-section__title {
  position: relative !important;
  display: inline-block !important;
  font-size: var(--section-title-fs);
  line-height: var(--section-title-lh);
  font-weight: 700;
  color: #e53935;
  display: block;
  position: relative;
  z-index: 1;
}

.about-section__corner-svg {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: clamp(20px, 2vw, 25px);
  height: clamp(20px, 2vw, 25px);
  z-index: 2;
}

.about-section__corner-svg img {
  width: 100%;
  height: auto;
  display: block;
}

.about-section__desc {
  font-size: var(--section-para-fs);
  line-height: var(--section-para-lh);
  font-weight: 400;
  width: 69%;
}



/* reward section  */
/* reward section  */
/* reward section  */
#pgc-w6880bec1e2a91-0-0 {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  margin: 0 !important;
}

/*for client section cell*/
#pgc-w6877921d459f3-0-0 {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  margin: 0 !important;
}

.reward-section__title {
  position: relative !important;
  display: inline-block !important;
  font-size: var(--section-title-fs);
  line-height: var(--section-title-lh);
  font-weight: 700;
  color: #e53935;
  position: relative;
  z-index: 1;
}

.reward-section__corner-svg {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: clamp(20px, 2vw, 25px);
  height: clamp(20px, 2vw, 25px);
  z-index: 2;
}

.reward-section__corner-svg img {
  width: 100%;
  height: auto;
  display: block;
}

.reward-section-para-col {
  width: 100%
}

.reward-section-para-container {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  /* Horizontal centering */
  align-items: center;
  /* Vertical centering */
  height: 100%;
  /* Or any defined height */
}

.reward-section-para {
  text-align: center;
}

.client-section__corner-svg {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: clamp(20px, 2vw, 25px);
  height: clamp(20px, 2vw, 25px);
  z-index: 2;
}








.estimate-section-row .ow-button-base,
.about-section .ow-button-base {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

/* main anchor */
.estimate-section-row .sowb-button,
.about-section .sowb-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: var(--btn-gap) !important;
  width: var(--btn-width) !important;
  min-width: var(--btn-min-width) !important;
  height: var(--btn-height) !important;
  padding: var(--btn-padding-y) var(--btn-padding-x) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: 700;
  line-height: var(--btn-line-height) !important;
  color: #fff !important;
  background: var(--color-primary) !important;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  white-space: nowrap !important;
}

/* icon inside button */
.estimate-section-row .sowb-button .sow-icon-ionicons,
.about-section .sowb-button .sow-icon-ionicons {
  display: inline-block !important;
  width: var(--btn-arrow-size) !important;
  height: var(--btn-arrow-size) !important;
  font-size: var(--btn-arrow-size) !important;
  line-height: 1 !important;
  margin-left: var(--btn-arrow-offset-x) !important;
  color: #fff !important;
  transition: transform .22s ease !important;
}

/* hover / focus */
.estimate-section-row .sowb-button:hover,
.about-section .sowb-button:hover,
.estimate-section-row .sowb-button:focus,
.about-section .sowb-button:focus {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12) !important;
  background: var(--color-secondary) !important;
  outline: none !important;
}

/* arrow hover animation */
.estimate-section-row .sowb-button:hover .sow-icon-ionicons,
.about-section .sowb-button:hover .sow-icon-ionicons {
  transform: translateX(4px) !important;
}

/* anchor wrappers */
.estimate-section-row .ow-button-base .sowb-button,
.about-section .ow-button-base .sowb-button {
  display: inline-flex !important;
}

/* ensure left alignment */
.estimate-section-row .ow-button-align-left,
.about-section .ow-button-align-left {
  justify-content: flex-start !important;
}

/* span wrapper inside button */
.estimate-section-row .sowb-button span,
.about-section .sowb-button span {
  display: inline-flex !important;
  align-items: center !important;
  gap: var(--btn-gap) !important;
}