/* =============================================================
   Custom Software Development — Section Styles
   Faithfully ported from the Next.js SCSS modules.
   Self-contained: includes all .mobileAppBanner base rules
   needed without depending on about.css or sections.css.

   Batch 1  — service_banner (mobileAppBanner + bgGray + customSoftware)
   Batch 2  — (awards_slider, change_makers, trusted_by_industry)
   Batches 3–7 added progressively.
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   SHARED BUTTONS
   Source: Button.module.scss
   ───────────────────────────────────────────────────────────── */
.av-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e80101;
  border: 1px solid #e80101;
  border-radius: 5px;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.5s,
    color 0.5s;
  width: 100%;
  font-family: "Gilroy", Arial, sans-serif;
  width: auto;
}
.av-primary-btn:hover {
  background-color: transparent;
  color: #e80101;
}
.av-primary-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* borderBtn variant */
.av-border-btn {
  background-color: transparent;
  color: #e80101;
}
.av-border-btn:hover {
  background-color: #e80101;
  color: #fff;
}

/* whiteBorderBtn variant */
.av-white-border-btn {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.av-white-border-btn:hover {
  background-color: #fff;
  color: #e80101;
}

/* ─────────────────────────────────────────────────────────────
   SERVICE BANNER  (mobileAppBanner — base + bgGray + customSoftware)
   Source: Banner.module.scss
   ───────────────────────────────────────────────────────────── */

/* Base */
.mobileAppBanner {
  padding: 100px 0;
  position: relative;
}

.mobileAppBanner.bgGray {
  background-color: #f6f6f6;
  padding: 130px 0;
}

.mobileAppBanner__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* ── Left column ─────────────────────────────────────────── */

/* Breadcrumbs pill */
.mobileAppBanner__breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #e8e8e8;
  border-radius: 6px;
  padding: 8px 15px;
  margin-bottom: 15px;
  gap: 0;
}
.mobileAppBanner__breadcrumbs a {
  color: #272727;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1;
}
.mobileAppBanner__breadcrumbs a:hover {
  color: #e80101;
}
.mobileAppBanner__breadcrumbs svg {
  width: 18px;
  height: 18px;
  color: #272727;
  flex-shrink: 0;
  margin: 0 3px;
}

.mobileAppBanner__left h1 {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin: 0 0 0 0;
}
.mobileAppBanner__left h1 span {
  color: #e80101;
  display: inline;
}

.mobileAppBanner__left p {
  font-size: 18px;
  font-weight: 500;
  color: #2c2c2c;
  padding: 20px 0 30px;
  margin: 0;
  line-height: 1.5;
}

/* customSoftware modifier: paragraph capped at 90% */
.mobileAppBanner.customSoftware .mobileAppBanner__left p {
  width: 90%;
}

.mobileAppBanner__btnWrapper {
  width: 80%;
}

.mobileAppBanner__topButtons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.mobileAppBanner__topButtons .av-primary-btn {
  padding: 15px;
  width: 100%;
}

/* ── Right column ────────────────────────────────────────── */
.mobileAppBanner__right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0; /* prevent grid blowout */
}

.mobileAppBanner__right img {
  display: block;
  width: 100%;
  height: auto; /* preserve natural aspect ratio */
  max-height: 550px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

/* bgGray variant — cap height at 450px */
.mobileAppBanner.bgGray .mobileAppBanner__right img {
  max-height: 450px;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   Source: Banner.module.scss — breakpoints
   ───────────────────────────────────────────────────────────── */

/* ≤1920px — already applied above (bgGray padding 130px default) */

/* ≤1600px */
@media (max-width: 1600px) {
  .mobileAppBanner,
  .mobileAppBanner.bgGray {
    padding: 100px 0;
  }
}

/* ≤1400px */
@media (max-width: 1400px) {
  .mobileAppBanner__breadcrumbs a {
    font-size: 12px;
  }
  .mobileAppBanner__btnWrapper {
    width: 100%;
  }
  .mobileAppBanner__right img {
    max-height: 500px;
  }
  .mobileAppBanner.bgGray .mobileAppBanner__right img {
    max-height: 450px;
  }
}

/* ≤1200px */
@media (max-width: 1200px) {
  .mobileAppBanner__left h1 {
    font-size: 38px;
  }
  .mobileAppBanner__left h1 br {
    display: none;
  }
  .mobileAppBanner__left p {
    font-size: 16px;
  }
  .mobileAppBanner__btnWrapper {
    width: 100%;
  }
  .mobileAppBanner__topButtons .av-primary-btn {
    font-size: 14px;
    padding: 12px;
  }
  .mobileAppBanner__right img {
    max-height: 450px;
  }
}

/* ≤991px — single column, mobile layout */
@media (max-width: 991px) {
  .mobileAppBanner,
  .mobileAppBanner.bgGray {
    background-color: #f7f7f7 !important;
  }

  .mobileAppBanner__breadcrumbs {
    display: none;
  }

  .mobileAppBanner__main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mobileAppBanner__right {
    display: none;
  }

  .mobileAppBanner__left h1 {
    font-size: 35px;
  }

  .mobileAppBanner.customSoftware .mobileAppBanner__left p {
    width: 100%;
  }

  .mobileAppBanner__btnWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .mobileAppBanner__topButtons {
    justify-content: center;
  }
}

/* ≤767px */
@media (max-width: 767px) {
  .mobileAppBanner__left h1 {
    font-size: 30px;
  }
}

/* ≤575px */
@media (max-width: 575px) {
  .mobileAppBanner__left h1 {
    font-size: 26px;
  }
}

/* ≤480px */
@media (max-width: 480px) {
  .mobileAppBanner__left h1 {
    font-size: 26px;
  }
  .mobileAppBanner__topButtons .av-primary-btn {
    font-size: 14px;
  }
}

/* ≤426px — stack buttons */
@media (max-width: 426px) {
  .mobileAppBanner__topButtons {
    flex-direction: column;
  }
}

/* Full-width bottom button (threeBtns / fullBtnText) */
.mobileAppBanner__bottomButton {
  margin-top: 20px;
}
.mobileAppBanner__bottomButton .av-primary-btn {
  width: 100%;
  padding: 15px 25px;
}
@media (max-width: 1200px) {
  .mobileAppBanner__bottomButton .av-primary-btn {
    font-size: 15px;
  }
}

/* =============================================================
   BATCH 2 — ChangeMakers + TrustedByIndustry
   awards_slider CSS is in sections.css (loaded as dependency)
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   CHANGE MAKERS
   Source: ChangeMakers.module.scss — exact SCSS names scoped
   ───────────────────────────────────────────────────────────── */
.changeMaker {
  background-color: #000;
  padding: 80px 0;
}

.changeMaker .main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Left column */
.changeMaker .main .left h2 {
  color: #fff;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.changeMaker .main .left h2 span {
  color: #e80101;
  display: inline;
}

.changeMaker .main .left > p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  opacity: 0.6;
  margin: 0;
  line-height: 1.5;
}

/* Right 2×2 stat grid */
.changeMaker .main .referral {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.changeMaker .main .referral .careerSingle .counter {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 72px;
  margin: 0;
  line-height: 1;
}

/* red suffix / span / decimal separator */
.changeMaker .main .referral .careerSingle .counter span {
  color: #e80101;
}

/* descriptor below counter */
.changeMaker .main .referral .careerSingle p:not(.counter) {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  opacity: 0.6;
  margin: 8px 0 0;
}

/* ── Responsive — ChangeMakers ── */
@media (max-width: 1440px) {
  .changeMaker .main {
    gap: 60px;
  }
  .changeMaker .main .left h2 {
    font-size: 38px;
  }
}

@media (max-width: 1200px) {
  .changeMaker .main .left h2 {
    font-size: 35px;
  }
  .changeMaker .main .left > p {
    font-size: 16px;
  }
  .changeMaker .main .referral .careerSingle .counter {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .changeMaker .main {
    row-gap: 20px;
  }
}

@media (max-width: 991px) {
  .changeMaker .main {
    grid-template-columns: 1fr;
  }
  .changeMaker .main .left {
    text-align: center;
  }
  .changeMaker .main .left h2 {
    font-size: 28px;
  }
  .changeMaker .main .left h2 br {
    display: none;
  }
  .changeMaker .main .left > p br {
    display: none;
  }
  .changeMaker .main .referral .careerSingle {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .changeMaker .main .left h2 {
    font-size: 22px;
  }
  .changeMaker .main .referral {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────
   TRUSTED BY INDUSTRY
   Source: TrustedByIndustry.module.scss — exact SCSS names scoped
   ───────────────────────────────────────────────────────────── */
.trustedByIndustry {
  padding: 60px 0 80px;
  background-color: #000;
}

.trustedByIndustry.whiteTheme {
  background-color: #fff;
}

/* ── Header block (.main) ── */
.trustedByIndustry .main {
  margin-bottom: 50px;
  text-align: center;
}

.trustedByIndustry .main h2 {
  font-weight: 600;
  font-size: 42px;
  color: #fff;
  margin: 0 0 0 0;
}

.trustedByIndustry.whiteTheme .main h2 {
  color: #333333;
}

.trustedByIndustry .main h2 span {
  color: #e80101;
}

/* ── Clutch stats bar (.details) ── */
.trustedByIndustry .main .details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
}

.trustedByIndustry .main .clutch {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trustedByIndustry .main .clutch p,
.trustedByIndustry .main .rating p,
.trustedByIndustry .main .user p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.trustedByIndustry.whiteTheme .main .clutch p,
.trustedByIndustry.whiteTheme .main .rating p,
.trustedByIndustry.whiteTheme .main .user p {
  color: #6e6e6e;
}

.trustedByIndustry .main .clutch p span,
.trustedByIndustry .main .rating p span,
.trustedByIndustry .main .user p span {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.trustedByIndustry.whiteTheme .main .clutch p span,
.trustedByIndustry.whiteTheme .main .rating p span,
.trustedByIndustry.whiteTheme .main .user p span {
  color: #6e6e6e;
}

.trustedByIndustry .main .user {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 15px;
}

/* ── WordPress filter bar (not in original SCSS — scoped with tbi__ prefix) ── */
.tbi__filter-bar {
  text-align: center;
  margin-bottom: 30px;
}

.tbi__filter-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 10px 40px 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  min-width: 220px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s;
  font-family: "Gilroy", Arial, sans-serif;
}

.tbi__filter-select:focus {
  outline: none;
  border-color: #e80101;
}

/* ── Grid layout (.gridLayout / .sliderItem) ── */
.trustedByIndustry .gridLayout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.trustedByIndustry .gridLayout .sliderItem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 110px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: border-color 0.3s;
}

.trustedByIndustry .gridLayout .sliderItem a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.trustedByIndustry.whiteTheme .gridLayout .sliderItem {
  border: 1px solid #b9b9b9;
}

.trustedByIndustry .gridLayout .sliderItem img {
  width: 144px;
  object-fit: contain;
  transition: transform 0.5s;
}

.trustedByIndustry .gridLayout .sliderItem:hover img {
  transform: scale(1.2);
}

/* ── Marquee layout — dark pages ── */
.tbi__marqueeSlider {
  overflow: hidden;
  width: 100%;
}

.tbi__marquee-track {
  display: flex;
  width: max-content;
  animation: tbiMarqueeScroll 25s linear infinite;
}

.tbi__marqueeSlider--reverse .tbi__marquee-track {
  animation-direction: reverse;
}

.tbi__marqueeSlider:hover .tbi__marquee-track {
  animation-play-state: paused;
}

@keyframes tbiMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.tbi__marqueeSlider .sliderItem {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.165) 0%,
    rgba(255, 255, 255, 0) 114.08%
  );
  border-radius: 20px;
  border: none;
  padding: 10px;
  width: 200px;
  height: 100px;
  margin-left: 30px;
}

.tbi__marqueeSlider .sliderItem img {
  width: 144px;
  height: 70px;
  object-fit: contain;
}

/* ── Responsive — TrustedByIndustry ── */
@media (max-width: 1440px) {
  .trustedByIndustry .main h2 {
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  .trustedByIndustry .main h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .trustedByIndustry {
    padding: 60px 0;
  }
  .trustedByIndustry .main h2 {
    font-size: 30px;
  }
  .trustedByIndustry .gridLayout .sliderItem {
    width: 160px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .trustedByIndustry {
    padding: 40px 0;
  }
  .trustedByIndustry .main h2 {
    font-size: 28px;
  }
  .trustedByIndustry .main h2 br {
    display: none;
  }
  .trustedByIndustry .main .details {
    flex-wrap: wrap;
  }
  .trustedByIndustry .gridLayout .sliderItem {
    width: 140px;
    height: 70px;
  }
}

/* =============================================================
   BATCH 3 — DriveBusiness + CaseStudyParallaxSlider
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   DRIVE BUSINESS
   Source: DriveBusiness.module.scss — exact SCSS names scoped
   ───────────────────────────────────────────────────────────── */
.driveBusiness {
  padding: 80px 0 40px;
}

.driveBusiness.paddingb80 {
  padding-bottom: 80px;
}

/* Centered heading + paragraph */
.driveBusiness .main {
  text-align: center;
}

.driveBusiness .main h2 {
  font-weight: 700;
  font-size: 42px;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.driveBusiness .main h2 span {
  color: #e80101;
  display: inline;
}

.driveBusiness .main .db__para {
  margin: 0;
}

.driveBusiness .main p,
.driveBusiness .main .db__para p {
  font-weight: 500;
  font-size: 18px;
  color: #2c2c2c;
  margin-bottom: 0;
}

.driveBusiness .main p a,
.driveBusiness .main .db__para p a {
  color: #2c2c2c;
  text-decoration: underline;
}

.driveBusiness .main p a:hover,
.driveBusiness .main .db__para p a:hover {
  color: #e80101;
}

/* 2-column service card grid */
.driveBusiness .listing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.driveBusiness .listing .single {
  border-left: 2px solid #e80101;
  padding: 25px;
  transition: border-color 0.3s;
}

.driveBusiness .listing .single .serviceTitle {
  font-size: 28px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 12px;
  line-height: 1.2;
}

.driveBusiness .listing .single .serviceTitle a {
  color: #333333;
  text-decoration: none;
}

/* Sequential number (01, 02…) */
.driveBusiness .listing .single .serviceTitle span {
  color: #b7b7b7;
  font-weight: 600;
}

.driveBusiness .listing .single:hover .serviceTitle,
.driveBusiness .listing .single:hover .serviceTitle a {
  color: #e80101;
}

.driveBusiness .listing .single .db__item-content {
  margin: 0;
}

.driveBusiness .listing .single p,
.driveBusiness .listing .single .db__item-content p {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
.driveBusiness .listing .single .db__item-content a {
  text-decoration: underline;
}
.driveBusiness .listing .single .db__item-content a:hover {
  color: #e80101;
}

/* ── Responsive — DriveBusiness ── */
@media (max-width: 1200px) {
  .driveBusiness .main h2 {
    font-size: 38px;
  }
  .driveBusiness .main h2 br {
    display: none;
  }
  .driveBusiness .main p,
  .driveBusiness .main .db__para p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .driveBusiness .main h2 {
    font-size: 30px;
  }
  .driveBusiness .listing {
    grid-template-columns: 1fr;
  }
  .driveBusiness .listing .single br {
    display: none;
  }
}

@media (max-width: 575px) {
  .driveBusiness .main h2 {
    font-size: 22px;
  }
  .driveBusiness .listing .single .serviceTitle {
    font-size: 24px;
  }
}

/* ─────────────────────────────────────────────────────────────
   CASE STUDY PARALLAX SLIDER
   Source: CaseStudyParallexSlider.module.scss — scoped under .cspSlider
   ───────────────────────────────────────────────────────────── */
.cspSlider {
  padding-top: 120px;
  padding-bottom: 150px;
  position: relative;
}
.cspSlider.greyBg {
  background-color: #f6f7f8;
}

.cspSlider.customSoftware {
  padding-top: 100px;
}

/* Heading block */
.cspSlider .head {
  padding-bottom: 50px;
}

.cspSlider .head h2 {
  color: #000;
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  line-height: 1.2;
}

.cspSlider .head h2 span {
  color: #e80101;
}

.cspSlider .head p {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  opacity: 0.6;
  text-align: center;
  margin: 15px 0 0;
}

/* Sticky card container */
.cspSlider .cardContainer {
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 15%;
}

/* Card itself — matches SCSS exactly */
.cspSlider .card {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 0%;
  height: 550px;
  width: 100%;
  border-radius: 25px;
  transform-origin: top;
}

/* Two-column card content — overflow:hidden here (not on .card) clips mockup images */
.cspSlider .card .content {
  display: flex;
  height: 100%;
  gap: 50px;
  overflow: hidden;
}
.budget_bottom_section .leftSide > img {
  height: 722px !important;
  width: auto !important;
}
/* Left panel */
.cspSlider .card .content .leftSide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 50px;
  width: 45%;
}

/* Logo: constrained to match Next.js <Image width={logoWidth} height={logoHeight}> */
.cspSlider .card .content .leftSide .logo img {
  object-fit: contain;
  max-width: 240px; /* widest logo in dataset (gfs: 290px) */
  max-height: 153px; /* tallest logo in dataset (oasis: 153px) */
  width: auto;
  height: auto;
  display: block;
}

.cspSlider .card .content .leftSide .description p {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}

/* App store badges */
.cspSlider .card .content .leftSide .links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cspSlider .card .content .leftSide .link-badge a {
  display: inline-block;
}

/* "View More →" link */
.cspSlider .card .content .leftSide .link a {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cspSlider .card .content .leftSide .link a::before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 120%;
  height: 1px;
  bottom: -4px;
  transition: width 0.4s ease-in-out;
}

.cspSlider .card .content .leftSide .link a:hover::before {
  width: 100%;
}

/* Right panel — NO flex on base; variant classes add it (matches SCSS exactly) */
.cspSlider .card .content .rightSide {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: end;
}

/* No default width on img — variant classes control this */
/* .cspSlider .card .content .rightSide .imgContainer {
  height: 100%;
} */
.cspSlider .card .content .rightSide .imgContainer img {
  object-fit: cover;
  height: auto;
  width: 620px;
}

/* ── Right-side class variants — exact SCSS port ──────────────────────── */
.cspSlider .card .content .rightSide.oasis {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cspSlider .card .content .rightSide.oasis .imgContainer img {
  width: 700px;
}

.cspSlider .card .content .rightSide.coke,
.cspSlider .card .content .rightSide.cptns,
.cspSlider .card .content .rightSide.cpcg {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cspSlider .card .content .rightSide.coke .imgContainer img {
  width: 600px;
}
.cspSlider .card .content .rightSide.cptns .imgContainer img {
  width: 550px;
}
.cspSlider .card .content .rightSide.cpcg .imgContainer img {
  width: 700px;
}

.cspSlider .card .content .rightSide.cheval,
.cspSlider .card .content .rightSide.birds,
.cspSlider .card .content .rightSide.amaya,
.cspSlider .card .content .rightSide.glee,
.cspSlider .card .content .rightSide.budget,
.cspSlider .card .content .rightSide.balotech,
.cspSlider .card .content .rightSide.ziosk,
.cspSlider .card .content .rightSide.fishfin,
.cspSlider .card .content .rightSide.stance,
.cspSlider .card .content .rightSide.shopLocal,
.cspSlider .card .content .rightSide.obituary,
.cspSlider .card .content .rightSide.openhouse,
.cspSlider .card .content .rightSide.spruce {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cspSlider .card .content .rightSide.cheval .imgContainer img {
  width: 530px;
}
.cspSlider .card .content .rightSide.birds .imgContainer img {
  width: 580px;
}
.cspSlider .card .content .rightSide.amaya .imgContainer img {
  width: 650px;
}
.cspSlider .card .content .rightSide.glee .imgContainer img {
  width: 460px;
}
.cspSlider .card .content .rightSide.budget .imgContainer img {
  width: 634px;
}
.cspSlider .card .content .rightSide.balotech .imgContainer img {
  width: 550px;
}
.cspSlider .card .content .rightSide.ziosk .imgContainer img {
  width: 630px;
}
.cspSlider .card .content .rightSide.fishfin .imgContainer img {
  width: 400px;
}
.cspSlider .card .content .rightSide.stance .imgContainer img {
  width: 560px;
}
.cspSlider .card .content .rightSide.shopLocal .imgContainer img {
  width: 510px;
}
.cspSlider .card .content .rightSide.obituary .imgContainer img {
  width: 840px;
}
.cspSlider .card .content .rightSide.openhouse .imgContainer img {
  width: 700px;
}
.cspSlider .card .content .rightSide.spruce .imgContainer img {
  width: 705px;
}

.cspSlider .card .content .rightSide.gfs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cspSlider .card .content .rightSide.gfs .imgContainer img {
  width: 705px;
}

.cspSlider .card .content .rightSide.visionze {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.cspSlider .card .content .rightSide.visionze .imgContainer img {
  width: 565px;
}

/* Sticky "View All" vertical button */
.cspSlider .btnWrapper {
  width: fit-content;
  padding: 0;
  position: sticky;
  right: 0;
  top: 100px;
  margin-left: auto;
  z-index: 100;
  height: max-content;
  background-color: #e80101;
}

.cspSlider .btnWrapper a {
  display: inline-flex;
  padding: 20px 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  writing-mode: vertical-lr;
  text-decoration: none;
  line-height: 1;
}

/* ── Responsive — CaseStudyParallaxSlider ── */
@media (max-width: 1700px) {
  .cspSlider .cardContainer {
    height: 80vh;
  }
  .cspSlider .card .content .leftSide .description p {
    font-size: 22px;
  }
}

@media (max-width: 1366px) {
  /* All variant-specific widths fall back to 100% at this breakpoint */
  .cspSlider .card .content .rightSide .imgContainer img {
    width: 100% !important;
    height: auto;
  }
  /* Keep obituary (very wide) capped */
  .cspSlider .card .content .rightSide.obituary .imgContainer img {
    width: 740px !important;
    height: auto;
  }
}

@media (max-width: 1199px) {
  .cspSlider {
    padding: 70px 0;
  }
  .cspSlider .head h2 {
    font-size: 38px;
  }
  .cspSlider .head h2 br {
    display: none;
  }
}

@media (max-width: 991px) {
  .cspSlider .head h2 {
    font-size: 28px;
  }

  /* Hide desktop parallax cards — mobile Swiper shown instead */
  .cspSlider .cardContainer {
    display: none;
  }

  /* Collapse btnWrapper (sticky button) on mobile */
  .cspSlider .btnWrapper {
    position: static;
    margin: 20px auto 0;
    width: 100%;
    text-align: center;
  }

  .cspSlider .btnWrapper a {
    writing-mode: horizontal-tb;
    display: inline-block;
    padding: 12px 30px;
  }
}

/* ── CSP Mobile Swiper ───────────────────────────────────────────────────── */
/* Ported from StartupSlider.module.scss — exact match */

/* Desktop: hidden */
.csp-mob-slider {
  display: none;
}

/* Mobile: shown */
@media (max-width: 991px) {
  .csp-mob-slider {
    display: block;
    margin-top: 30px;
  }

  .csp-mob-pagination {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 30px;
  }

  .csp-mob-pagination .csp-prev,
  .csp-mob-pagination .csp-next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
  }

  .csp-mob-pagination .csp-prev svg,
  .csp-mob-pagination .csp-next svg {
    fill: #e80101;
    display: block;
  }

  .csp-mob-pagination .csp-prev:hover svg,
  .csp-mob-pagination .csp-next:hover svg {
    fill: #fff;
  }

  .csp-mob-slider .csp-mob-swiper {
    overflow: hidden;
  }

  /* .single — matches SCSS exactly */
  .csp-mob-slider .single {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    border-radius: 15px;
    padding: 20px;
    position: relative;
  }

  /* .caseStudy — flex column, space-between, fixed height */
  .csp-mob-slider .caseStudy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 530px;
  }

  /* Logo — direct child img (no wrapper), object-fit contain */
  .csp-mob-slider .caseStudy > img {
    object-fit: contain;
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
  }

  /* Mockup — absolutely positioned, right side, shifted up per SCSS @991px */
  .csp-mob-slider .caseStudyImg img {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    height: auto;
    top: -70px;
  }

  /* Description — bottom of flex column */
  .csp-mob-slider .caseStudy > p {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
  }

  /* Per-class overrides — matches SCSS @991px */
  .csp-mob-slider .single.cptns .caseStudyImg img,
  .csp-mob-slider .single.enqueue .caseStudyImg img {
    top: 0;
  }

  .csp-mob-slider .single.stance .caseStudyImg img {
    width: 35%;
    top: -25px;
  }

  .csp-mob-slider .single.fishfin .caseStudyImg img {
    width: 45%;
    top: -25px;
  }

  .csp-mob-slider .single.budget .caseStudyImg img {
    width: 50%;
    top: -25px;
  }

  .csp-mob-slider .single.birds .caseStudyImg img {
    width: 45%;
    top: -25px;
  }

  .csp-mob-slider .single.glee .caseStudyImg img {
    width: 30%;
    top: -30px;
  }
}

/* @575px — matches SCSS */
@media (max-width: 575px) {
  .csp-mob-slider .caseStudy {
    height: 400px;
  }

  .csp-mob-slider .caseStudy > p {
    font-size: 18px;
  }

  .csp-mob-slider .caseStudyImg img {
    top: 0;
  }

  .csp-mob-slider .single.glee .caseStudyImg img {
    width: 40%;
    top: 0;
  }
  .csp-mob-slider .single.fishfin .caseStudyImg img {
    width: 60%;
    top: -10%;
  }
  .csp-mob-slider .single.birds .caseStudyImg img {
    width: 70%;
    top: -10%;
  }
  .csp-mob-slider .single.amaya .caseStudyImg img {
    width: 60%;
    top: -10%;
  }
  .csp-mob-slider .single.obituary .caseStudyImg img {
    width: 65%;
    top: -10%;
  }
  .csp-mob-slider .single.stance .caseStudyImg img {
    width: 55%;
    top: -20%;
  }
}

/* @480px — matches SCSS */
@media (max-width: 480px) {
  .csp-mob-slider .caseStudyImg img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .cspSlider {
    padding: 40px 0;
  }
  .cspSlider .head {
    text-align: center;
    padding-bottom: 0;
  }
  .cspSlider .head h2 {
    font-size: 22px;
  }
  .cspSlider .card .content .leftSide .description p {
    font-size: 18px;
  }
}

/* =============================================================
   Enterprise Platform — section-enterprise-platform.php
   Source: EnterprisePlatform.module.scss → .odooKeyFeatures
   ============================================================= */

.odooKeyFeatures {
  padding: 80px 0;
  background-color: #fff;
}

.odooKeyFeatures .main {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.odooKeyFeatures .main h2 {
  font-weight: 600;
  font-size: 42px;
  color: #333333;
  margin-bottom: 20px;
  font-family: "Gilroy", Arial, sans-serif;
}

.odooKeyFeatures .main h2 span {
  color: #e80101;
}

.odooKeyFeatures .main p {
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  font-family: "Gilroy", Arial, sans-serif;
}

.odooKeyFeatures .listing {
  margin-top: 50px;
}

.odooKeyFeatures .head .mainTitle {
  font-weight: 600;
  font-size: 28px;
  color: #333333;
  margin-bottom: 20px;
  font-family: "Gilroy", Arial, sans-serif;
}

.odooKeyFeatures .accordian {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.odooKeyFeatures .category-group {
  /* each category sits in one grid cell */
}

.odooKeyFeatures .item {
  box-shadow: 2px 2px 3.5px 0px #d4cece inset;
  border-radius: 15px;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.odooKeyFeatures .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: 1px 1px 1.6px 0px rgba(0, 0, 0, 0.18);
  bottom: 0;
  border-radius: 15px;
  pointer-events: none;
  z-index: 1;
}

.odooKeyFeatures .item .head button.ep-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 20px;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  font-family: "Gilroy", Arial, sans-serif;
  text-align: left;
  position: relative;
}

.odooKeyFeatures .item .head button.ep-toggle img {
  max-width: 140px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.odooKeyFeatures .item .head button.ep-toggle .icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}

.odooKeyFeatures .item .head button.ep-toggle[aria-expanded="true"] {
  color: #e80101;
}

.odooKeyFeatures
  .item
  .head
  button.ep-toggle[aria-expanded="true"]
  .icon-wrapper {
  transform: rotate(180deg);
}

.odooKeyFeatures .item .head button.ep-toggle[aria-expanded="true"]::after {
  content: "";
  background-color: #bcbcbc;
  width: 94%;
  margin: auto;
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
}

.odooKeyFeatures .accordionBody {
  font-family: "Gilroy", Arial, sans-serif;
  color: #2c2c2c;
  font-weight: 500;
  font-size: 18px;
}

.odooKeyFeatures .content-inner {
  padding: 16px 20px;
}

.odooKeyFeatures .accordionBody a {
  color: #2c2c2c;
  text-decoration: underline !important;
}

.odooKeyFeatures .accordionBody a:hover {
  color: #e80101;
}

/* [hidden] ensures JS-toggled display works */
.odooKeyFeatures .accordionBody[hidden] {
  display: none;
}

/* Enterprise Platform — responsive */
@media (max-width: 1440px) {
  .odooKeyFeatures .main h2 {
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  .odooKeyFeatures .main h2 {
    font-size: 38px;
  }
  .odooKeyFeatures .main p {
    font-size: 16px;
  }
  .odooKeyFeatures .item .head button.ep-toggle {
    font-size: 20px;
  }
  .odooKeyFeatures .accordionBody {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .odooKeyFeatures {
    padding: 60px 0;
  }
  .odooKeyFeatures .main {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .odooKeyFeatures .main h2 {
    font-size: 30px;
    text-align: center;
  }
  .odooKeyFeatures .main p {
    font-size: 16px;
    text-align: center;
  }
  .odooKeyFeatures .accordian {
    grid-template-columns: 1fr;
  }
  .odooKeyFeatures .head .mainTitle {
    font-size: 26px;
  }
  .odooKeyFeatures .item .head button.ep-toggle {
    font-size: 18px;
  }
  .odooKeyFeatures .accordionBody {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .odooKeyFeatures {
    padding: 40px 0;
  }
  .odooKeyFeatures .main h2 {
    font-size: 28px;
  }
  .odooKeyFeatures .main p {
    font-size: 14px;
  }
  .odooKeyFeatures .head .mainTitle {
    font-size: 22px;
  }
  .odooKeyFeatures .item .head button.ep-toggle {
    font-size: 16px;
  }
  .odooKeyFeatures .accordionBody {
    font-size: 14px;
  }
}

/* =============================================================
   Mobile App Services — section-mobile-app-services.php
   Source: MobileAppServices.module.scss → .mobileApp
   ============================================================= */

.mobileApp {
  padding: 80px 0 0;
  background-color: #fff;
}

.mobileApp h2 {
  font-weight: 700;
  font-size: 42px;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Gilroy", Arial, sans-serif;
}

.mobileApp h2 span {
  color: #e80101;
}

.mobileApp > .container > p {
  font-weight: 500;
  font-size: 18px;
  color: #2c2c2c;
  text-align: center;
  font-family: "Gilroy", Arial, sans-serif;
}

.mobileApp > .container > p a {
  color: #e80101;
}

.mobileApp .MainBox {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 40px 0 30px;
  row-gap: 0;
  border-bottom: 1px solid #6e6e6e;
}

.mobileApp .MainBox .Tab {
  transition: 0.5s;
  text-align: center;
  cursor: pointer;
}

.mobileApp .MainBox .Tab span {
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  color: #6e6e6e;
  cursor: pointer;
  font-family: "Gilroy", Arial, sans-serif;
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.mobileApp .MainBox .Tab.active span {
  color: #ec1c24;
}

.mobileApp .MainBox .Tab.active span::before {
  content: "";
  position: absolute;
  background-color: #e80101;
  width: 100%;
  height: 3px;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

.mobileApp .tabBox .tab-content {
  display: none;
}

.mobileApp .tabBox .tab-content.active {
  display: block;
}

.mobileApp .tabBox .tab-content .main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.mobileApp .tabBox .tab-content .main .left h3 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  font-family: "Gilroy", Arial, sans-serif;
  transition: all 0.3s;
}

.mobileApp .tabBox .tab-content .main .left a:hover h3 {
  color: #e80101;
}

.mobileApp .tabBox .tab-content .main .left .tab-para {
  font-weight: 500;
  font-size: 18px;
  color: #2c2c2c;
  padding-bottom: 15px;
  text-align: left;
  margin: 0;
  font-family: "Gilroy", Arial, sans-serif;
}

.mobileApp .tabBox .tab-content .main .left .tab-para a {
  text-decoration: underline;
  color: #e80101;
}

.mobileApp .tabBox .tab-content .main .left .tab-para ul {
  margin-top: 20px;
  list-style: disc;
  padding-left: 20px;
}

.mobileApp .tabBox .tab-content .main .left .tab-para ul li {
  margin-bottom: 12px;
  list-style: disc;
}

.mobileApp .tabBox .tab-content .main .right {
  display: flex;
  justify-content: center;
}

.mobileApp .tabBox .tab-content .main .right img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mobileApp .av-primary-btn {
  width: auto;
  display: inline-flex;
}

/* .iosApp variant */
.mobileApp.iosApp {
  padding: 80px 0;
}

.mobileApp.iosApp .tabBox .tab-content .main .left {
  padding: 30px 0 70px;
}

.mobileApp.iosApp .tabBox .tab-content .main .right img {
  border-radius: 17px;
}

/* Mobile App Services — responsive */
@media (max-width: 1200px) {
  .mobileApp h2 {
    font-size: 38px;
  }
  .mobileApp > .container > p {
    font-size: 16px;
  }
  .mobileApp .MainBox {
    gap: 20px;
    row-gap: 20px;
  }
  .mobileApp .MainBox .Tab span {
    font-size: 16px;
  }
  .mobileApp .tabBox .tab-content .main .left h3 {
    font-size: 28px;
  }
}

@media (max-width: 1199px) {
  .mobileApp br {
    display: none;
  }
  .mobileApp.iosApp .tabBox .tab-content .main .right img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 991px) {
  .mobileApp .MainBox {
    gap: 15px;
  }
  .mobileApp .MainBox .Tab span {
    font-size: 14px;
  }
  .mobileApp .tabBox .tab-content .main {
    grid-template-columns: 1fr;
  }
  .mobileApp .tabBox .tab-content .main .left h3 {
    font-size: 22px;
  }
  .mobileApp .tabBox .tab-content .main .left .tab-para {
    font-size: 16px;
  }
  .mobileApp .tabBox .tab-content .main .right img {
    width: auto;
  }
}

@media (max-width: 768px) {
  .mobileApp.iosApp .tabBox .tab-content .main {
    gap: 30px;
  }
  .mobileApp.iosApp .tabBox .tab-content .main .left {
    padding: 30px 0;
  }
}

@media (max-width: 575px) {
  .mobileApp h2 {
    font-size: 28px;
  }
  .mobileApp .MainBox {
    flex-direction: column;
  }
  .mobileApp .MainBox .Tab span {
    font-weight: 600;
  }
  .mobileApp .tabBox .tab-content .main .right img {
    width: 100%;
    height: auto;
  }
  .mobileApp .tabBox .tab-content .main .left h3 {
    font-size: 18px;
  }
  .mobileApp.iosApp {
    padding: 50px 0;
  }
}

@media (max-width: 320px) {
  .mobileApp h2 {
    font-size: 22px;
  }
}

/* =============================================================
   Image CTA — section-image-cta.php
   Source: ImageCta.module.scss → .imgCta
   ============================================================= */

.imgCta {
  padding: 80px 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.imgCta.software {
  padding: 200px 0;
  background-position: center;
}

.imgCta .main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.imgCta .main .right h2 {
  text-align: left;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  font-family: "Gilroy", Arial, sans-serif;
  margin: 0;
}

.imgCta .main .right h2 span {
  color: #e80101;
}

.imgCta .main .right p,
.imgCta .main .right .ic__content p {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  font-family: "Gilroy", Arial, sans-serif;
  margin: 0;
  padding: 40px 0;
}

.imgCta .main .right .ic__content {
  padding: 40px 0;
}

.imgCta .main .right .ic__content p {
  padding: 0;
  margin-bottom: 8px;
}

.imgCta .main .right .ic__content ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
}

.imgCta .main .right .ic__content li {
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  margin-bottom: 6px;
  line-height: 1.6;
}

.imgCta.software .main .right h2 {
  padding-bottom: 40px;
}

/* override global width:100% — button should be auto-width in CTA context */
.imgCta .av-primary-btn {
  width: auto;
}

/* ctaButton: hover keeps white text on red bg */
.imgCta .av-primary-btn.ctaButton:hover {
  color: #fff;
}

/* software variant: hover goes transparent/red */
.imgCta.software .av-primary-btn.ctaButton:hover {
  background-color: transparent;
  color: #e80101;
}

.imgCta .main .left img {
  width: 100%;
  height: auto;
  display: block;
}

/* Image CTA — responsive */
@media (max-width: 1200px) {
  .imgCta .main .right h2 {
    font-size: 38px;
  }
  .imgCta .main .right p,
  .imgCta .main .right .ic__content p,
  .imgCta .main .right .ic__content li {
    font-size: 16px;
  }
  .imgCta .main .right p {
    padding: 15px 0;
  }
  .imgCta .main .right .ic__content {
    padding: 15px 0;
  }
}

@media (max-width: 991px) {
  .imgCta .main {
    grid-template-columns: 1fr;
  }
  .imgCta .main .left {
    text-align: center;
  }
  .imgCta .main .right {
    text-align: center;
  }
  .imgCta .main .right h2 {
    text-align: center;
  }
  .imgCta .main .right p,
  .imgCta .main .right .ic__content p,
  .imgCta .main .right .ic__content li {
    text-align: center;
  }
  .imgCta .main .right .ic__content ul {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .imgCta {
    background: #000 !important;
    background-image: none !important;
  }
  .imgCta .main .right h2 {
    font-size: 28px;
  }
}

@media (max-width: 320px) {
  .imgCta .main .right h2 {
    font-size: 22px;
  }
}

/* =============================================================
   Why Choose — section-why-choose.php
   Source: WhyChoose.module.scss → .whyChoose
   ============================================================= */

.whyChoose {
  padding: 50px 0;
  background-color: #fff;
}

.whyChoose .main {
  text-align: center;
}

.whyChoose .main h2 {
  font-weight: 700;
  font-size: 42px;
  color: #000;
  margin-bottom: 20px;
  font-family: "Gilroy", Arial, sans-serif;
}

.whyChoose .main h2 span {
  color: #e80101;
  display: inline;
}

.whyChoose .main h2 br {
  display: block;
}

.whyChoose .main p {
  font-weight: 500;
  font-size: 18px;
  color: #2c2c2c;
  margin-bottom: 0;
  font-family: "Gilroy", Arial, sans-serif;
}

.whyChoose .listing {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  padding: 50px 0;
}

.whyChoose .listing .single {
  border: 1px solid #b7b7b7;
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.whyChoose .listing .single:hover {
  border-color: #e80101;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.whyChoose .listing .single:hover img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(78%) saturate(7493%)
    hue-rotate(352deg) brightness(101%) contrast(135%);
}

.whyChoose .listing .single:hover h3 {
  color: #e80101;
}

.whyChoose .listing .single .grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.whyChoose .listing .single .grid p {
  margin-bottom: 0;
  color: #b7b7b7;
  font-weight: 800;
  font-size: 20px;
  font-family: "Gilroy", Arial, sans-serif;
}

.whyChoose .listing .single h3 {
  font-size: 20px;
  color: #2c2c2c;
  font-weight: 800;
  font-family: "Gilroy", Arial, sans-serif;
  transition: color 0.3s;
}

.whyChoose .listing .single > p {
  color: #666666;
  font-size: 16px;
  font-family: "Gilroy", Arial, sans-serif;
}

.whyChoose .btnWrapper {
  text-align: center;
}

/* Why Choose — responsive */
@media (max-width: 1200px) {
  .whyChoose .main br {
    display: none;
  }
  .whyChoose .main h2 {
    font-size: 38px;
  }
  .whyChoose .main p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .whyChoose {
    padding: 40px 0;
  }
  .whyChoose .main h2 {
    font-size: 30px;
  }
  .whyChoose .listing {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .whyChoose .listing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .whyChoose {
    padding: 60px 0 40px;
  }
  .whyChoose .main h2 {
    font-size: 22px;
  }
  .whyChoose .listing {
    grid-template-columns: 1fr;
    padding-bottom: 5px;
  }
}

@media (max-width: 320px) {
  .whyChoose .main h2 {
    font-size: 22px;
  }
}

/* fourCol modifier — 4-column grid variant */
.whyChoose.fourCol .listing {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 991px) {
  .whyChoose.fourCol .listing {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .whyChoose.fourCol .listing {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   Table — section-table.php
   Source: Table.module.scss → .tableMain
   ============================================================= */

.tableMain {
  padding: 80px 0;
}

.tableMain .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tableMain .content h2 {
  font-weight: 700;
  font-size: 42px;
  color: #000;
  font-family: "Gilroy", Arial, sans-serif;
}

.tableMain .content h2 span {
  color: #e80101;
}

.tableMain .content p {
  font-weight: 500;
  font-size: 18px;
  color: #2c2c2c;
  margin-bottom: 0;
  width: 75%;
  font-family: "Gilroy", Arial, sans-serif;
}

.tableMain .cmp-table {
  width: 100%;
  border-radius: 20px;
  margin-top: 50px;
  border: 1px solid #f3f3f3;
  border-collapse: separate;
  border-spacing: 0;
}

.tableMain .cmp-table thead tr {
  font-size: 20px;
  border: 1px solid #ccc;
}

.tableMain .cmp-table th {
  background-color: #f2f2f2;
  color: #2c2c2c;
  padding: 20px;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  font-family: "Gilroy", Arial, sans-serif;
  border-right: 1px solid #b7b7b7;
}

.tableMain .cmp-table thead tr th:last-child {
  background-color: #e80101;
  color: #fff;
  border-bottom: 1px solid #b7b7b7;
}

.tableMain .cmp-table tbody tr {
  border: 1px solid #b7b7b7;
}

.tableMain .cmp-table td {
  padding: 20px;
  text-align: center;
  font-family: "Gilroy", Arial, sans-serif;
  border: 1px solid #b7b7b7;
}

.tableMain .cmp-table tbody td:first-child {
  font-weight: 800;
  border-left: 1px solid #ccc;
}

.tableMain .cmp-table tbody td:last-child {
  color: #e80101;
  background-color: #fde5e5;
}

/* customSoftware variant */
.tableMain.customSoftware .cmp-table thead tr th {
  background-color: #e80101;
  color: #fff;
  border-right-color: #b7b7b7;
}

.tableMain.customSoftware .cmp-table tbody tr {
  border: 1px solid #b7b7b7;
}

.tableMain.customSoftware .cmp-table tbody td {
  padding: 35px;
  font-weight: 500;
}

.tableMain.customSoftware .cmp-table tbody td:first-child {
  font-weight: 600;
}

.tableMain.customSoftware .cmp-table tbody td:last-child {
  background-color: #fff;
  color: #171717;
}

/* lastChildGray variant */
.tableMain.lastChildGray .cmp-table thead tr th:last-child {
  background-color: #f2f2f2;
  color: #2c2c2c;
}

.tableMain.lastChildGray .cmp-table tbody tr {
  border: 1px solid #ccc;
}

.tableMain.lastChildGray .cmp-table tbody td:last-child {
  color: #2c2c2c;
  background-color: #fff;
  font-weight: 400;
}

/* equalWidth — all columns same width */
.tableMain.equalWidth .cmp-table {
  table-layout: fixed;
}
.tableMain.equalWidth .cmp-table th,
.tableMain.equalWidth .cmp-table td {
  width: auto;
}

/* Table — responsive */
@media (max-width: 1200px) {
  .tableMain .content h2 {
    font-size: 38px;
  }
  .tableMain .content h2 br {
    display: none;
  }
}

@media (max-width: 991px) {
  .tableMain .table-responsive {
    overflow-x: auto;
  }
  .tableMain .cmp-table {
    width: 150%;
  }
  .tableMain .cmp-table th {
    font-size: 15px;
  }
  .tableMain .cmp-table td {
    padding: 15px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .tableMain {
    padding: 40px 0;
  }
  .tableMain .content h2 {
    font-size: 28px;
  }
  .tableMain .content p {
    width: 100%;
  }
  .tableMain .cmp-table th {
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TechStack
   ═══════════════════════════════════════════════════════════════════════════ */

.techStack {
  padding: 80px 0;
  background-color: #000;
}

.techStack .main-info {
  padding-bottom: 30px;
}

.techStack .main-info h2 {
  font-family: var(--font-gilroy, "Gilroy", sans-serif);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.techStack .main-info h2 span {
  color: #e80101;
  display: inline;
}

.techStack .main-info p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.techStack .MainBox {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-evenly;
  margin: 0 0 15px;
  flex-wrap: wrap;
  row-gap: 0;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

.techStack .MainBox .Tab {
  transition: 0.5s;
  text-align: center;
  cursor: pointer;
}

.techStack .MainBox .Tab span {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #666;
  margin: 0;
  cursor: pointer;
  display: block;
}

.techStack .MainBox .Tab.active span {
  color: #fff;
  position: relative;
}

.techStack .MainBox .Tab.active span::before {
  content: "";
  position: absolute;
  background-color: #e80101;
  width: 100%;
  height: 3px;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: auto;
}

.techStack .TabBox .tab-content {
  display: none;
}

.techStack .TabBox .tab-content.active {
  display: block;
}

.techStack .TabBox .tab-content .tabFlex {
  display: flex;
  list-style: none;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.techStack .TabBox .tab-content .tabFlex.fourCol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.techStack .TabBox .tab-content .singleBox {
  border-radius: 10px;
  padding: 25px 50px;
  transition: 0.5s;
  /* height: 211px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* width: 242px; */
}
.techStack .TabBox .tab-content .singleBox img {
  width: 100px;
  height: 100px;
}

.techStack .TabBox .tab-content .tabFlex.fourCol .singleBox {
  flex: 0 0 calc(25% - 15px);
  min-width: 200px;
}

.techStack .TabBox .tab-content .singleBox p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding-top: 15px;
  text-align: center;
}

.techStack .TabBox .tab-content .infoBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.techStack .TabBox .tab-content .infoBox img {
  max-width: 87px;
  max-height: 87px;
}

@media (max-width: 1200px) {
  .techStack .main-info h2 {
    font-size: 38px;
  }
  .techStack .MainBox {
    row-gap: 20px;
  }
}

@media (max-width: 991px) {
  .techStack .main-info h2 {
    font-size: 30px;
  }
  .techStack .main-info br {
    display: none;
  }
}

@media (max-width: 575px) {
  .techStack .main-info h2 {
    font-size: 22px;
  }
  .techStack .MainBox {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .techStack .TabBox .tab-content .singleBox {
    width: 100px;
    padding: 15px;
    height: auto;
  }
  .techStack .TabBox .tab-content .singleBox p {
    font-size: 15px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DevProcess
   ═══════════════════════════════════════════════════════════════════════════ */

.devProcess {
  padding: 80px 0;
  position: relative;
}

.devProcess .main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  align-items: flex-start;
}

.devProcess .main .left {
  position: sticky;
  top: 90px;
  height: 100vh;
}

.devProcess .main .left h2 {
  color: #000;
  font-weight: 700;
  font-size: 42px;
}

.devProcess .main .left h2 span {
  color: #e80101;
}

.devProcess .main .left p {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  opacity: 0.6;
}

.devProcess .main .left p a {
  text-decoration: underline;
}

.devProcess .main .left p a:hover {
  color: #e80101;
}

.devProcess .main .right {
  padding-left: 60px;
  position: relative;
}

.devProcess .main .right::after {
  content: "";
  position: absolute;
  background-image: url(../../images/mobile-app/dotted-lines.png);
  width: 5px;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  left: 3px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.devProcess .main .right .single {
  position: relative;
  margin-bottom: 40px;
}

.devProcess .main .right .single:last-child {
  margin-bottom: 0;
}

.devProcess .main .right .single::before {
  content: "";
  position: absolute;
  background-image: url(../../images/mobile-app/avshape.png);
  width: 49px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  left: -80px;
  top: 0;
  z-index: 2;
}

.devProcess .main .right .single span {
  font-size: 18px;
  color: #6e6e6e;
  font-weight: 500;
  margin: 0;
  display: block;
}

.devProcess .main .right .single h3 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

.devProcess .main .right .single p {
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 500;
}

.devProcess .main .right .single ol {
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 500;
  /* padding-left: 20px; */
}

@media (max-width: 1200px) {
  .devProcess .main .left h2 {
    font-size: 38px;
  }
  .devProcess .main .left p {
    font-size: 16px;
  }
  .devProcess .main .right .single h3 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .devProcess .main {
    grid-template-columns: 1fr;
  }
  .devProcess .main .left {
    all: unset;
    text-align: center;
  }
  .devProcess .main .right {
    padding-top: 50px;
  }
  .devProcess .main .right::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .devProcess {
    padding: 40px 0;
  }
  .devProcess .main .left h2 {
    font-size: 28px;
  }
  .devProcess .main .right .single h3 {
    font-size: 22px;
  }
  .devProcess .main .right .single p,
  .devProcess .main .right .single ol {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .devProcess .main .right .single::before {
    width: 39px;
    height: 38px;
    left: -60px;
    top: 10px;
  }
  .devProcess .main .right .single h3 {
    font-size: 18px;
  }
}

@media (max-width: 320px) {
  .devProcess .main .left h2 {
    font-size: 22px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CostTimelineSlider
   ═══════════════════════════════════════════════════════════════════════════ */

.timelineSlider {
  padding: 80px 0;
}

.timelineSlider .main .content h2 {
  color: #000;
  font-weight: 700;
  font-size: 42px;
  margin: 0 0 16px;
}

.timelineSlider .main .content h2 span {
  color: #e80101;
}

.timelineSlider .main .content p {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin: 0;
  width: 65%;
}

.timelineSlider .main .content p a {
  text-decoration: underline;
  transition: all 0.3s;
}

.timelineSlider .main .content p a:hover {
  color: #e80101;
}

.timelineSlider .main .award-pagination {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.timelineSlider .main .award-pagination svg {
  fill: #e80101;
  cursor: pointer;
}

.timelineSlider .main .award-pagination svg:hover {
  fill: #000;
}

.timelineSlider .main .costSlider {
  width: 70%;
}

.timelineSlider .main .costSlider .js-cost-slider {
  overflow: visible !important;
  padding: 40px 10px !important;
}

.timelineSlider .main .costSlider .swiper {
  width: 100%;
}

.timelineSlider .main .costSlider .single {
  border: 1px solid #e80101;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
}

.timelineSlider .main .costSlider .single:hover .grid .left h3 {
  color: #e80101;
}

.timelineSlider .main .costSlider .single .grid {
  display: grid;
  padding: 15px 25px;
  grid-template-columns: 1fr 1fr;
  height: calc(100% - 82px);
}

.timelineSlider .main .costSlider .single .grid .left h3 {
  color: #2c2c2c;
  font-weight: 800;
  font-size: 20px;
  transition: all 0.3s ease;
  margin: 0 0 6px;
}

.timelineSlider .main .costSlider .single .grid .left p {
  font-size: 16px;
  font-weight: 500;
  color: #2c2c2c;
  width: 70%;
}

.timelineSlider .main .costSlider .single .grid .left h4 {
  color: #2c2c2c;
  font-weight: 800;
  font-size: 16px;
  margin: 8px 0 4px;
}

.timelineSlider .main .costSlider .single .grid .right {
  border-left: 1px solid #e80101;
  padding-left: 40px;
}

.timelineSlider .main .costSlider .single .grid .right h4:first-child {
  margin-top: 0;
}

.timelineSlider .main .costSlider .single .grid .right p {
  font-size: 16px;
  font-weight: 500;
  color: #2c2c2c;
  width: 100%;
}

.timelineSlider .main .costSlider .single .grid .right h4 {
  color: #2c2c2c;
  font-weight: 800;
  font-size: 16px;
  margin: 8px 0 4px;
}

.timelineSlider .main .costSlider .single .grid .left p,
.timelineSlider .main .costSlider .single .grid .right p {
  margin-bottom: 4px;
}

.timelineSlider .main .costSlider .single .grid .right ul,
.timelineSlider .main .costSlider .single .grid .right ol {
  padding-left: 18px;
  margin: 0 0 8px;
  font-size: 15px;
  color: #2c2c2c;
}

.timelineSlider .main .costSlider .single .btmGrid {
  background-color: #e80101;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 15px 25px;
  border-radius: 0 0 15px 15px;
}

.timelineSlider .main .costSlider .single .btmGrid .cost h3,
.timelineSlider .main .costSlider .single .btmGrid .timeline h3 {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 4px;
}

.timelineSlider .main .costSlider .single .btmGrid .cost p,
.timelineSlider .main .costSlider .single .btmGrid .timeline p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}

.timelineSlider.centered .main .content h2 {
  text-align: center;
}

.timelineSlider.centered .main .content p {
  text-align: center;
  margin: auto;
}

.timelineSlider.centered .main .costSlider {
  margin: 0 auto;
}

.timelineSlider.centered .main .award-pagination {
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

@media (max-width: 1440px) {
  .timelineSlider .main .costSlider,
  .timelineSlider .main .costSlider .swiper {
    overflow-x: hidden !important;
  }
}

@media (max-width: 1200px) {
  .timelineSlider .main .content h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .timelineSlider {
    padding: 50px 0;
  }
  .timelineSlider .main .content p {
    width: 100%;
  }
  .timelineSlider .main .costSlider {
    width: 100%;
    height: 750px;
    margin: 0;
  }
  .timelineSlider .main .costSlider .single {
    height: 600px;
  }
}

@media (max-width: 575px) {
  .timelineSlider .main .content {
    text-align: center;
  }
  .timelineSlider .main .content h2 {
    font-size: 28px;
  }
  .timelineSlider .main .award-pagination {
    margin-top: 10px;
  }
  .timelineSlider .main .costSlider {
    height: auto;
  }
  .timelineSlider .main .costSlider .single {
    height: 100%;
  }
  .timelineSlider .main .costSlider .single .grid {
    grid-template-columns: 1fr;
  }
  .timelineSlider .main .costSlider .single .grid .left p {
    width: 100%;
  }
  .timelineSlider .main .costSlider .single .btmGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  .timelineSlider .main .content h2 {
    font-size: 22px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SPECIALITY SOFTWARE
   SCSS source: SpecialitySoftware.module.scss
═══════════════════════════════════════════════════════════════════════════ */

.specialitySoftware {
  padding: 80px 0;
}

.specialitySoftware .main .head h2 {
  color: #000;
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  margin: 0 0 40px;
}
.specialitySoftware .main .head h2 span {
  color: #e80101;
}

.specialitySoftware .main .listing {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.specialitySoftware .main .listing .para .single {
  display: flex;
  align-items: center;
  gap: 10px;
}
.specialitySoftware .main .listing .para .single p {
  font-size: 18px;
  font-weight: 500;
  color: #2c2c2c;
  margin: 0;
}

@media (max-width: 1200px) {
  .specialitySoftware .main .head h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .specialitySoftware {
    padding: 50px 0;
  }
  .specialitySoftware .main .head h2 {
    font-size: 28px;
  }
  .specialitySoftware .main .listing {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 320px) {
  .specialitySoftware .main .head h2 {
    font-size: 28px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATIC BLOG LISTING — light-bg variant of .ourBlog
   SCSS source: StaticBlogListing.module.scss
   Note: base .ourBlog grid/card styles are in sections.css.
         This block overrides colours only for the light-bg variant.
═══════════════════════════════════════════════════════════════════════════ */

.ourBlog.staticBlogListing {
  background: #fff;
}

.ourBlog.staticBlogListing .main {
  text-align: center;
  margin-bottom: 40px;
}
.ourBlog.staticBlogListing .main h2 {
  color: #0a0a0a;
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 16px;
}
.ourBlog.staticBlogListing .main h2 span {
  color: #e80101;
}
.ourBlog.staticBlogListing .main p {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin: 0 auto;
  width: 65%;
}

.ourBlog.staticBlogListing .listing .single .imgWrapper {
  height: 300px;
}

.ourBlog.staticBlogListing .listing .single .postTags {
  color: #808080;
}
.ourBlog.staticBlogListing .listing .single .postTitle {
  color: #333333;
}
.ourBlog.staticBlogListing .listing .single .postTitle a {
  color: #333333;
}
.ourBlog.staticBlogListing .listing .single .postTitle a:hover {
  color: #e80101;
}
.ourBlog.staticBlogListing .listing .single p {
  color: #a7a7a7;
}

.ourBlog.staticBlogListing .listing .single .profileInfo .authorImgWrapper img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.ourBlog.staticBlogListing .listing .single .profileInfo .info .authorName {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin: 0;
}
.ourBlog.staticBlogListing .listing .single .profileInfo .info .authorHead {
  font-size: 14px;
  font-weight: 500;
  color: #808080;
  margin: 0;
}

@media (max-width: 1440px) {
  .ourBlog.staticBlogListing .main h2 {
    font-size: 45px;
  }
  .ourBlog.staticBlogListing .listing .single .imgWrapper {
    height: 300px;
  }
  .ourBlog.staticBlogListing .listing .single .postTitle {
    font-size: 26px;
  }
}
@media (max-width: 1300px) {
  .ourBlog.staticBlogListing .main h2 {
    font-size: 40px;
  }
}
@media (max-width: 1200px) {
  .ourBlog.staticBlogListing .main h2 {
    font-size: 35px;
  }
  .ourBlog.staticBlogListing .listing .single .imgWrapper {
    height: 250px;
  }
  .ourBlog.staticBlogListing .listing .single .postTitle {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .ourBlog.staticBlogListing .main h2 {
    font-size: 30px;
  }
  .ourBlog.staticBlogListing .main p {
    width: 100%;
  }
  .ourBlog.staticBlogListing .listing {
    grid-template-columns: 1fr;
  }
  .ourBlog.staticBlogListing .listing .single .imgWrapper {
    height: 300px;
  }
  .ourBlog.staticBlogListing .listing .single .postTitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .ourBlog.staticBlogListing .main h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .ourBlog.staticBlogListing .main h2 {
    font-size: 24px;
  }
  .ourBlog.staticBlogListing .main p {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN FORM (formMain)
   SCSS source: MainForm.module.scss
═══════════════════════════════════════════════════════════════════════════ */

.formMain {
  background-color: #000;
  padding: 80px 0;
}

.formMain .gridWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.formMain .gridWrapper .right {
  height: 100%;
}
.formMain .gridWrapper .right iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.formMain .main h2 {
  color: #fff;
  font-weight: 700;
  font-size: 42px;
  margin: 0 0 16px;
}
.formMain .main h2 span {
  color: #e80101;
}

.formMain .main > p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 20px;
}

/* form layout */
.formMain .main .form .contact-form {
  max-width: 800px;
  padding: 20px 0;
}

.formMain .main .form .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formMain .main .form .contact-form .input-container {
  display: flex;
  gap: 20px;
}

.formMain .main .form .contact-form .input-container input,
.formMain .main .form .contact-form .input-container textarea {
  flex: 1;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  outline: none;
}
.formMain .main .form .contact-form .input-container input::placeholder,
.formMain .main .form .contact-form .input-container textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.formMain .main .form .contact-form .input-container input:focus,
.formMain .main .form .contact-form .input-container textarea:focus {
  border-bottom-color: #e80101;
}
.formMain .main .form .contact-form .input-container textarea {
  resize: none;
}

.formMain .main .form .contact-form .input-container.btnWrapper {
  padding-top: 30px;
}

.formMain .main .form .contact-form .av-form-submit {
  background: #e80101;
  color: #fff;
  border: 1px solid #e80101;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
}
.formMain .main .form .contact-form .av-form-submit:hover {
  background: transparent;
  color: #e80101;
}

.formMain .main .form .av-form-message {
  font-size: 14px;
  margin-top: 10px;
  min-height: 20px;
}

@media (max-width: 1300px) {
  /* remove map overlay decorations at this breakpoint */
  .formMain .gridWrapper .right.gcc-gmb::before,
  .formMain .gridWrapper .right.us-gmb::before {
    content: unset;
  }
}
@media (max-width: 1200px) {
  .formMain .main h2 {
    font-size: 38px;
  }
  .formMain .main > p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .formMain .gridWrapper {
    grid-template-columns: 1fr;
  }
  .formMain .gridWrapper .right {
    height: 400px;
  }
  .formMain .main h2 {
    text-align: center;
    font-size: 32px;
  }
  .formMain .main > p {
    text-align: center;
  }
  .formMain .main .form .contact-form .input-container {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .formMain {
    padding: 50px 0;
  }
  .formMain .main h2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .formMain .gridWrapper .right {
    height: 300px;
  }
}
@media (max-width: 320px) {
  .formMain .main h2 {
    font-size: 22px;
  }
}
