
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Phudu:wght@300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Phudu:wght@300..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* font face start */

/* @font-face {
  font-family: "Phudu";
  src: url("./fonts/Phudu-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Phudu";
  src: url("./fonts/Phudu-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Phudu";
  src: url("./fonts/Phudu-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Phudu";
  src: url("./fonts/Phudu-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Phudu";
  src: url("./fonts/Phudu-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Phudu";
  src: url("./fonts/Phudu-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Phudu";
  src: url("./fonts/Phudu-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
  

@font-face {
  font-family: "Urbanist";
  src: url("./fonts/Urbanist-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("./fonts/Urbanist-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
} 

/* font face end */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
}

/* testing hover */

.testing {
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
}

.testing::after,
.testing::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform: skew(90deg) translate(-50%, -50%);
  position: absolute;
  inset: 50%;
  left: 25%;
  z-index: -1;
  transition: 0.5s ease-out;
  background-color: #061f36;
}

.testing::before {
  top: -50%;
  left: -25%;
  transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.testing:hover::before {
  transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.testing:hover::after {
  transform: skew(45deg) translate(-50%, -50%);
}

.testing:hover {
  color: #fff;
}

.testing:hover a {
  color: #fff;
}

.testing:active {
  filter: brightness(0.7);
  transform: scale(0.98);
}

/* testing hover */

/* testing2 hover */

.testing2 {
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
}

.testing2 a{
  color: #f7f7f7;
  text-decoration: none;

}

.testing2::after,
.testing2::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform: skew(90deg) translate(-50%, -50%);
  position: absolute;
  inset: 50%;
  left: 25%;
  z-index: -1;
  transition: 0.5s ease-out;
  background-color: #be7c28;
}

.testing2::before {
  top: -50%;
  left: -25%;
  transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.testing2:hover::before {
  transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.testing2:hover::after {
  transform: skew(45deg) translate(-50%, -50%);
}

.testing2:hover {
  color: #fff;
}

.testing2:hover a {
  color: #fff;
}

.testing2:active {
  filter: brightness(0.7);
  transform: scale(0.98);
}

/* testing2 hover */

/* header start */

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 99999;
}

.headerMenu {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.headerMenuInner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 80px;
}

.headerLogo {
  display: flex;
  align-items: center;
}

.headerLogo a {
  display: flex;
}

.headerLogo img {
  height: 90px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
}

.menu nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.menu nav ul li {
  list-style: none;
}

.menu nav ul li a {
  font-family: "Phudu";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000cc;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    font-weight 0.3s ease,
    color 0.3s ease;
}

.menu nav ul li:hover a,
.menu nav ul li a.active {
  font-weight: 500;
  color: #000;
}

/* Services dropdown */
.menu nav ul li.hasDropdown {
  position: relative;
}
.menu nav ul li.hasDropdown > a::after {
  content: "\25BE";
  font-size: 11px;
  margin-left: 6px;
  vertical-align: middle;
}
.dropdownMenu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(8px);
  background: #fff;
  width: 240px;
  min-width: 240px;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(6, 31, 54, 0.16);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
  display: flex;
}
.menu nav ul li.hasDropdown:hover .dropdownMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdownMenu li {
  display: block;
  width: 100%;
}
.dropdownMenu li a {
  display: block;
  padding: 11px 22px;
  font-size: 14px;
  text-transform: none;
  color: #061f36cc;
  white-space: nowrap;
}
.dropdownMenu li:hover a {
  color: #be7c28;
  background: #f7f7f7;
}

#toggle,
.toggle {
  display: none;
}

.headerRight {
  display: flex;
  align-items: center;
  gap: 20px;
}

.headerPhone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phoneIconWrap {
  background-color: #56565630;
  border-radius: 20px;
  padding: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phoneIconWrap img {
  display: block;
}

.phoneText {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phoneLabel {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #141414bd;
}

.phoneNumber {
  font-family: "Urbanist";
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  text-decoration: none;
}

.getFundedBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #061f36;
  border-radius: 8px;
  padding: 12px 22px;
}

.getFundedBtn a {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.getFundedBtn img {
  display: block;
}

@media (max-width: 768px) {
  .headerMenuInner {
    padding: 10px 20px;
  }

  .headerLogo img {
    height: 70px;
  }

  .menu {
    justify-content: flex-end;
  }

  .headerRight {
    display: none;
  }

  .toggle {
    display: block;
    cursor: pointer;
  }

  .menu nav ul {
    display: none;
  }

  .menu nav ul {
    position: fixed;
    top: 14%;
    right: -100%;
    z-index: 10;
    background: #fff;
    width: 100%;
    height: fit-content;
    justify-content: center;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    text-align: center;
    gap: 25px;
    padding-bottom: 25px;
  }

  #toggle:checked ~ nav ul {
    right: 0;
  }

  .menu nav ul li a {
    font-size: 16px;
  }

  .menu nav ul li:hover {
    width: 100%;
    padding: 15px 0;
    transition: 0.3s ease;
    background-color: #061f36;
  }

  .menu nav ul li:hover a {
    color: #fff;
    font-weight: 400;
  }

  /* Dropdown becomes inline on mobile */
  .menu nav ul li.hasDropdown > a::after {
    content: "";
  }
  .dropdownMenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    width: auto;
    min-width: 0;
    padding: 10px 0 0;
    display: flex;
    flex-direction: column;
  }
  .dropdownMenu li a {
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 8px 0;
  }
  .menu nav ul li.hasDropdown:hover {
    background-color: transparent;
  }
  .dropdownMenu li:hover a {
    background: transparent;
    color: #be7c28;
  }
}

@media (max-width: 600px) {
  .headerMenuInner {
    padding: 10px 15px;
  }

  .headerLogo img {
    height: 55px;
  }

  .menu nav ul {
    top: 12%;
  }
}

/* header end */

/* footer start */

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #001839;
  margin-top: -120px;
}

.footerInner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 200px 80px 35px 80px;
}

.footerColumns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footerCol {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footerCol h3 {
  font-family: "Urbanist";
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #fce190;
}

.footerCol ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footerCol ul li a {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footerCol ul li a:hover {
  opacity: 0.7;
}

.footerSocials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footerSocials a {
  display: flex;
}

.footerSocials a img {
  display: block;
}

.footerBottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footerCopyright,
.footerTagline {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.footerBottomLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.footerBottomLogo img {
  display: block;
  height: auto;
  width: 180px;
}

.footerBottom span {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  padding: 20px 0px;
  width: 40%;
}

.textRight {
  text-align: right;
}

@media (max-width: 768px) {
  footer {
    margin-top: -120px;
  }

  .footerInner{
     padding: 200px 20px 35px 20px;
  }

  .footerColumns {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footerCol {
    width: calc((100% - 40px) / 2);
  }

  .footerBottom {
    flex-direction: column;
    gap: 25px;
  }

  .footerBottomLine {
    display: none;
  }

  .footerCopyright,
  .footerTagline {
    white-space: normal;
    text-align: center;
    font-size: 16px;
  }
  .footerBottom span {
    width: 100%;
  }
}

@media (max-width: 600px) {
  footer {
    margin-top: -70px;
  }

  .footerInner{
    padding: 150px 15px 30px 15px;
  }

  .footerColumns {
    flex-direction: column;
    gap: 30px;
  }

  .footerCol {
    width: 100%;
  }

  .footerCol h3 {
    font-size: 18px;
  }

  .footerCol ul li a {
    font-size: 16px;
  }

  .footerCopyright,
  .footerTagline {
    font-size: 14px;
  }

  .footerBottom span {
    width: 100%;
  }
}

/* footer end */

/* hero section start */

.heroSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(./images/heroBg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 120px 80px;
}

.hero h1 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 75px;
  line-height: 75px;
  letter-spacing: -0.48px;
  color: #fff;
  text-transform: uppercase;
  width: 55%;
}

.hero > p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: #ffffffcc;
  width: 40%;
}

.heroBtns {
  display: flex;
  align-items: center;
  gap: 25px;
}

.heroBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 14px 24px;
}

.heroBtn a {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.heroBtn img {
  display: block;
}

.heroBtnPrimary {
  background-color: #be7c28;
}

.heroBtnSecondary {
  background-color: #000;
  border: 1px solid #fff;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
    gap: 25px;
  }

  .hero h1 {
    font-size: 50px;
    line-height: 52px;
    width: 80%;
  }

  .hero > p {
    font-size: 18px;
    line-height: 24px;
    width: 70%;
  }

  .heroBtns {
    gap: 15px;
  }

  .heroBtn {
    padding: 12px 20px;
  }

  .heroBtn a {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 15px;
    gap: 20px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 34px;
    width: 100%;
  }

  .hero > p {
    font-size: 16px;
    line-height: 22px;
    width: 100%;
  }

  .heroBtns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .heroBtn {
    justify-content: space-between;
    padding: 10px 16px;
  }

  .heroBtn a {
    font-size: 16px;
  }

  .headerLogo img {
    height: 65px;
  }
}

/* hero section end */

/* about section start */

.aboutSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
}

.about {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px;
  gap: 40px;
}

.aboutLeft {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 38%;
}

.aboutLabel {
  display: flex;
  align-items: center;
  gap: 5px;
}

.aboutLabel span {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #be7c28;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aboutLeft h2 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  text-transform: uppercase;
}

.aboutLeft p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #000000cc;
}

.aboutBtn {
  align-self: flex-start;
  margin-top: 10px;
}

.aboutImages {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
}

.aboutImgTop {
  width: 280px;
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
}

.aboutImgTop img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.aboutImgBottom {
  width: 220px;
  position: relative;
  bottom: -75px;
  left: 80px;
  z-index: 2;
}

.aboutImgBottom img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.aboutStats {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 9%;
}

.aboutStat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aboutStat h3 {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  color: #000;
}

.aboutStat h3 span {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  color: #000;
}

.aboutStat p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #000;
}

@media (max-width: 768px) {
  .about {
    padding: 80px 20px;
    flex-direction: column;
    gap: 50px;
  }

  .aboutLeft {
    width: 100%;
  }

  .aboutLeft h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .aboutLeft p {
    font-size: 16px;
    line-height: 22px;
  }

  .aboutImages {
    width: 100%;
  }

  .aboutImgTop,
  .aboutImgBottom {
    width: 250px;
  }

  .aboutStats {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 40px;
  }

  .aboutStat {
    width: calc((100% - 40px) / 2);
  }

  .aboutImgBottom {
    left: 0;
    bottom: 0;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 60px 15px;
    gap: 40px;
  }

  .aboutLeft h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .aboutImgTop,
  .aboutImgBottom {
    width: 200px;
  }

  .aboutStats {
    flex-direction: column;
    gap: 25px;
  }

  .aboutStat {
    width: 100%;
  }

  .aboutStat h3,
  .aboutStat h3 span {
    font-size: 40px;
    line-height: 40px;
  }

  .aboutStat p {
    font-size: 16px;
  }

  .aboutImgBottom {
    left: 0;
    bottom: 0;
  }
}

/* about section end */

/* why bentley section start */

.whyBentleySection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whyBentley {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 130px 80px;
  gap: 60px;
}

.whyBentleyHeading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.whyBentleyHeading h2 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}

.whyBentleyCards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.whyBentleyRow1 {
  width: 100%;
  display: flex;
  gap: 30px;
}

.whyBentleyRow1 .whyBentleyCardLarge {
  width: 70%;
}

.whyBentleyRow1 .whyBentleyCardSmall {
  width: 30%;
}

.whyBentleyRow2 {
  width: 100%;
  display: flex;
  gap: 30px;
}

.whyBentleyRow2 .whyBentleyCard {
  width: calc((100% - 90px) / 4);
}

.whyBentleyCard {
  height: 355px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  gap: 20px;
}

.whyBentleyRow1 .whyBentleyCardLarge {
  padding-left: 40px;
}

.cardIcon {
  display: flex;
}

.cardIcon img {
  display: block;
  width: 60px;
  height: 60px;
}

.cardContent {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cardContent h3 {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  text-transform: uppercase;
}

.cardContent p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}

@media (max-width: 768px) {
  .whyBentley {
    padding: 80px 20px;
    gap: 40px;
  }

  .whyBentleyHeading h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .whyBentleyCards {
    gap: 20px;
  }

  .whyBentleyRow1,
  .whyBentleyRow2 {
    flex-wrap: wrap;
    gap: 20px;
  }

  .whyBentleyRow1 .whyBentleyCardLarge,
  .whyBentleyRow1 .whyBentleyCardSmall {
    width: 100%;
  }

  .whyBentleyRow2 .whyBentleyCard {
    width: calc((100% - 20px) / 2);
  }

  .whyBentleyRow1 .whyBentleyCardLarge {
    padding-left: 20px;
  }
}

@media (max-width: 600px) {
  .whyBentley {
    padding: 60px 15px;
    gap: 30px;
  }

  .whyBentleyHeading h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .whyBentleyCards {
    gap: 15px;
  }

  .whyBentleyRow1,
  .whyBentleyRow2 {
    flex-direction: column;
    gap: 15px;
  }

  .whyBentleyRow2 .whyBentleyCard {
    width: 100%;
  }

  .whyBentleyCard {
    height: 300px;
    padding: 25px 20px;
  }

  .cardContent h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .cardContent p {
    font-size: 16px;
    line-height: 22px;
  }
}

/* why bentley section end */

/* services section start */

.servicesSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
}

.services {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 100px 80px;
  gap: 80px;
}

.servicesTop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.servicesTopLeft {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.servicesTopLeft h2 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  text-transform: uppercase;
}

.servicesTopCenter {
  width: 20%;
  display: flex;
  justify-content: center;
}

.servicesTopCenter img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.servicesTopRight {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.servicesProfile {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.servicesTopRight p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #000000cc;
}

.servicesList {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.serviceRow {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 25px 30px;
  border-top: 1px solid #00000026;
  position: relative;
  z-index: 2;
}

.serviceRow:last-of-type {
  border-bottom: 1px solid #00000026;
}

.serviceRowActive {
  background-color: #fff;
  border-top: 1px solid transparent;
  z-index: 3;
}

.serviceRow + .serviceRowActive {
  border-top: 1px solid transparent;
}

.serviceRowActive + .serviceRow {
  border-top: 1px solid transparent;
}

.serviceRowLeft {
  display: flex;
  align-items: center;
  gap: 100px;
}

.serviceNum {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 128px;
  line-height: 128px;
  color: transparent;
  -webkit-text-stroke: 1px #00000026;
  flex-shrink: 0;
}

.serviceRowActive .serviceNum {
  color: #d9d9d9;
  -webkit-text-stroke: 0;
}

.serviceText {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 45%;
}

.serviceText h3 {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-transform: uppercase;
}

.serviceText p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000000cc;
}

.serviceTags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.serviceTag {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px 15px;
  text-transform: uppercase;
  white-space: nowrap;
}

.serviceRowActive .serviceTag {
  background-color: #f7f7f7;
}

.servicesCenterFloat {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 280px;
  z-index: 10;
  pointer-events: none;
}

.servicesCenterFloat img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .services {
    padding: 80px 20px;
    gap: 60px;
  }

  .servicesTop {
    flex-direction: column;
    gap: 30px;
  }

  .servicesTopLeft,
  .servicesTopCenter,
  .servicesTopRight {
    width: 100%;
  }

  .servicesTopLeft h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .serviceRow {
    padding: 20px 20px;
    gap: 20px;
  }

  .serviceRowLeft {
    gap: 20px;
  }

  .serviceNum {
    font-size: 80px;
    line-height: 80px;
  }

  .serviceText h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .serviceText p {
    font-size: 16px;
    line-height: 22px;
  }

  .serviceTags {
    display: none;
  }

  .servicesCenterFloat {
    display: none;
  }

  .serviceText {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .services {
    padding: 50px 15px 30px 15px;
    gap: 40px;
  }

  .servicesTopLeft h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .serviceRow {
    padding: 20px 15px;
    gap: 15px;
  }

  .serviceNum {
    display: none;
  }

  .serviceText h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .serviceText p {
    font-size: 14px;
    line-height: 20px;
  }
  .serviceText {
    width: 100%;
  }
}

/* services section end */

/* how it works section start */

.howItWorksSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #be7c28;
}

.howItWorks {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 100px 80px;
  gap: 60px;
}

.howItWorksHeading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.howItWorksLabel span {
  color: #fff;
}

.howItWorksHeading h2 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.howItWorksCards {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}

.stepCard {
  width: calc((100% - 75px) / 4);
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #fff;
  border-left: 3px solid #fce190;
  padding: 35px 30px 0 30px;
}

.stepCardDown {
  margin-top: 80px;
}

.stepContent {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stepContent h3 {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-transform: uppercase;
}

.stepContent p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000000cc;
}

.stepNum {
  display: flex;
}

.stepNum img {
  display: block;
  width: 100px;
  height: 100px;
}

@media (max-width: 768px) {
  .howItWorks {
    padding: 80px 20px;
    gap: 40px;
  }

  .howItWorksHeading h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .howItWorksCards {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stepCard {
    width: calc((100% - 20px) / 2);
    gap: 30px;
  }

  .stepCardDown {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .howItWorks {
    padding: 60px 15px;
    gap: 30px;
  }

  .howItWorksHeading h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .howItWorksCards {
    flex-direction: column;
    gap: 20px;
  }

  .stepCard {
    width: 100%;
    gap: 25px;
    padding: 30px 25px 0 25px;
  }

  .stepContent h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .stepContent p {
    font-size: 16px;
    line-height: 22px;
  }
}

/* how it works section end */

/* testimonial section start */

.testimonialSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 130px 80px;
  gap: 80px;
}

.testimonialLeft {
  width: 45%;
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}

.testimonialImg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.testimonialRight {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonialHeader {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonialProfile {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.testimonialPerson {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonialName {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
}

.testimonialRole {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #000000cc;
  transition: opacity 0.4s ease;
}

.testimonialText {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #000;
  transition: opacity 0.4s ease;
}

.testimonialRating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonialRating img {
  display: block;
}

.testimonialNav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.testimonialArrow {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.testimonialArrow:hover {
  opacity: 0.6;
}

.testimonialArrow img {
  display: block;
}

.testimonialFade {
  opacity: 0;
}

@media (max-width: 768px) {
  .testimonial {
    padding: 80px 20px;
    flex-direction: column;
    gap: 40px;
  }

  .testimonialLeft,
  .testimonialRight {
    width: 100%;
  }

  .testimonialText {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 600px) {
  .testimonial {
    padding: 60px 15px;
    gap: 30px;
  }

  .testimonialRight {
    gap: 20px;
  }

  .testimonialName {
    font-size: 20px;
    line-height: 24px;
  }

  .testimonialRole {
    font-size: 12px;
  }

  .testimonialText {
    font-size: 18px;
    line-height: 26px;
  }
}

/* testimonial section end */

/* marquee section start */

.marqueeSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 130px;
  overflow-x: clip;
}

.marqueeWrap {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.marqueeTrack {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.marqueeText {
  font-family: "Phudu";
  font-weight: 700;
  font-size: 120px;
  line-height: 120px;
  color: #000;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marqueeImage {
  position: absolute;
  top: -40%;
  left: 42%;
  width: 230px;
  z-index: 2;
}

.marqueeImage img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .marqueeSection {
    padding-bottom: 80px;
  }

  .marqueeText {
    font-size: 70px;
    line-height: 70px;
  }

  .marqueeTrack {
    gap: 40px;
  }

  .marqueeImage {
    display: none;
  }
}

@media (max-width: 600px) {
  .marqueeSection {
    padding-bottom: 60px;
  }

  .marqueeText {
    font-size: 45px;
    line-height: 45px;
  }

  .marqueeTrack {
    gap: 25px;
  }

  .marqueeImage {
    display: none;
  }
}

/* marquee section end */

/* contact section start */

.contactSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 130px 80px;
  gap: 60px;
}

#contact {
  scroll-margin-top: -400px;
}

.contactLeft {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contactLeft h2 {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  text-transform: uppercase;
}

.contactSubheading {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 35px;
  line-height: 40px;
  color: #000000b2;
  text-transform: uppercase;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.contactInfoRow {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 30px 0;
  border-bottom: 1px solid #00000080;
}

.borderTop {
  border-top: 1px solid #00000080;
}

.contactInfoRow:last-child {
  border-bottom: none;
}

.contactInfoRow > img {
  display: block;
  flex-shrink: 0;
}

.contactInfoText {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.infoLabel {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #141414bd;
}

.infoValue {
  font-family: "Urbanist";
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #000;
  text-decoration: none;
}

.contactRight {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contactFormHeading {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 35px;
  line-height: 40px;
  color: #be7c28;
  text-transform: uppercase;
}

.contactForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contactFormRow {
  width: 100%;
  display: flex;
  gap: 20px;
}

.contactFormField {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.contactFormFieldFull {
  width: 100%;
}

.contactFormField label {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #000;
}

.contactFormField input,
.contactFormField textarea {
  width: 100%;
  padding: 16px 20px;
  background-color: #f7f7f7;
  border: none;
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  outline: none;
  box-sizing: border-box;
}

.contactFormField textarea {
  resize: none;
  min-height: 140px;
  font-family: "Urbanist";
}

.contactSendBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #000;
  border-radius: 8px;
  padding: 15px 40px;
  align-self: flex-start;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  font-family: "Phudu";
  transition: background-color 0.2s ease;
  font-weight: 600;
}

.contactSendBtn:hover {
  background-color: #be7c28;
}

.contactSendBtn span {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

/* Honeypot anti-spam field — visually hidden */
.contactHoneypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Form error notice */
.formErrorNotice {
  background: #fdecec;
  border: 1px solid #f5b5b5;
  color: #b02a2a;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.contactSendBtn img {
  display: block;
}

@media (max-width: 768px) {
  .contact {
    padding: 0px 20px 80px 20px;
    flex-direction: column;
    gap: 50px;
  }

  .contactLeft,
  .contactRight {
    width: 100%;
  }

  .contactLeft h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .contactSubheading,
  .contactFormHeading {
    font-size: 28px;
    line-height: 32px;
  }

  .contactSendBtn {
    padding: 16px 32px;
  }
}

@media (max-width: 600px) {
  .contact {
    padding: 0px 15px 50px 15px;
    gap: 40px;
  }

  .contactLeft h2 {
    font-size: 30px;
    line-height: 34px;
  }

  .contactSubheading,
  .contactFormHeading {
    font-size: 22px;
    line-height: 26px;
  }

  .contactFormRow {
    flex-direction: column;
    gap: 20px;
  }

  .infoLabel {
    font-size: 14px;
  }

  .infoValue {
    font-size: 16px;
    line-height: 22px;
  }

  .contactSendBtn {
    padding: 14px 28px;
    justify-content: center;
  }

  .contactSendBtn span {
    font-size: 16px;
  }

  .contactInfoRow > img {
    width: 40px;
  }
  .contactInfoRow {
    padding: 20px 0px;
  }
}

/* contact section end */

/* cta section start */

.ctaSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ctaCard {
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  padding: 70px 0px;
  background-image: url(./images/ctaLionsBg.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

.ctaCard h2 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  width: 60%;
}

.ctaBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #be7c28;
  border-radius: 8px;
  padding: 14px 24px;
}

.ctaBtn a {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.ctaBtn img {
  display: block;
}

@media (max-width: 768px) {
  .ctaCard {
    width: 95%;
    padding: 50px 20px;
    gap: 30px;
  }

  .ctaCard h2 {
    font-size: 40px;
    line-height: 44px;
    width: 100%;
  }

  .ctaBtn {
    padding: 12px 20px;
  }

  .ctaBtn a {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .ctaCard {
    width: 100%;
    padding: 40px 15px;
    gap: 25px;
  }

  .ctaCard h2 {
    font-size: 26px;
    line-height: 30px;
    width: 100%;
  }

  .ctaBtn {
    padding: 10px 18px;
  }

  .ctaBtn a {
    font-size: 14px;
  }
}

/* cta section end */

/* services page CSS start */

/* services hero section start */

.servicesHeroSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(./images/servicesHeroBg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.aboutHeroSection {
  background-image: url(./images/aboutHeroBg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.processHeroSection {
  background-image: url(./images/processHeroBg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contactHeroSection {
  background-image: url(./images/contactHeroBg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.servicesHero {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 100px 80px;
}

.servicesHero h1 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 75px;
  line-height: 80px;
  color: #fff;
  text-transform: uppercase;
  width: 57%;
}

.servicesHero .contacth1 {
  width: 45%;
}

.servicesHero p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #ffffffcc;
  width: 55%;
}

@media (max-width: 768px) {
  .servicesHero {
    padding: 80px 20px;
    gap: 25px;
  }

  .servicesHero h1 {
    font-size: 50px;
    line-height: 54px;
    width: 80%;
  }

  .servicesHero p {
    font-size: 18px;
    line-height: 24px;
    width: 80%;
  }
}

@media (max-width: 600px) {
  .servicesHero {
    padding: 60px 15px;
    gap: 20px;
  }

  .servicesHero h1 {
    font-size: 32px;
    line-height: 36px;
    width: 100%;
  }

  .servicesHero p {
    font-size: 16px;
    line-height: 22px;
    width: 100%;
  }
}

/* services hero section end */

/* services list section start */

.servicesListSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.servicesList {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 130px 80px;
  gap: 130px;
}

.serviceCard {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.serviceCardReverse {
  flex-direction: row-reverse;
}

.serviceCardText {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.serviceCardNum {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 128px;
  line-height: 128px;
  color: #d9d9d9;
}

.serviceCardText h3 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  text-transform: uppercase;
}

.serviceCardText p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #000000cc;
}

.serviceCardDivider {
  width: 100%;
  height: 1px;
  background-color: #00000026;
}

.serviceCardTags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.serviceCardTag {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 5px 15px;
  text-transform: uppercase;
  white-space: nowrap;
}

.serviceCardImg {
  width: 45%;
  display: flex;
  justify-content: center;
}

.serviceCardImg img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

#dscr,
#multiFamily,
#fixFlip,
#bridge {
  scroll-margin-top: 200px;
}

#portfolioLoans{
  scroll-margin-top: 300px;
}

@media (max-width: 768px) {
  .servicesList {
    padding: 80px 20px;
    gap: 60px;
  }

  .serviceCard,
  .serviceCardReverse {
    flex-direction: column;
    gap: 30px;
  }

  .serviceCardText,
  .serviceCardImg {
    width: 100%;
  }

  .serviceCardNum {
    font-size: 90px;
    line-height: 90px;
  }

  .serviceCardText h3 {
    font-size: 40px;
    line-height: 44px;
  }
}

@media (max-width: 600px) {
  .servicesList {
    padding: 60px 15px;
    gap: 50px;
  }

  .serviceCard,
  .serviceCardReverse {
    gap: 25px;
  }

  .serviceCardNum {
    font-size: 70px;
    line-height: 70px;
  }

  .serviceCardText h3 {
    font-size: 28px;
    line-height: 32px;
  }

  .serviceCardText p {
    font-size: 16px;
    line-height: 22px;
  }

  .serviceCardTag {
    font-size: 14px;
    padding: 4px 12px;
  }
}

/* services list section end */

/* dscr info section start */

.dscrInfoSection {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.dscrInfoTop {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
}

.dscrInfoTopInner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 90px 80px;
  gap: 60px;
}

.dscrInfoLeft {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dscrInfoLeft h2 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  text-transform: uppercase;
}

.dscrInfoLeft > p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #000000cc;
}

.dscrDivider {
  width: 100%;
  height: 1px;
  background-color: #00000026;
}

.dscrList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  list-style: disc;
}

.dscrList li {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #000000cc;
}

.dscrBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #be7c28;
  border: 1px solid #00000026;
  border-radius: 8px;
  padding: 14px 24px;
  align-self: flex-start;
}

.dscrBtn a {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.dscrBtn img {
  display: block;
}

.dscrInfoRight {
  width: 50%;
  display: flex;
  justify-content: center;
}

.dscrInfoRight img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.dscrStatsBar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #be7c28;
}

.dscrStatsBarInner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
  gap: 20px;
}

.dscrStat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.dscrStat h3 {
  font-family: "Phudu";
  font-weight: 700;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
}

.dscrStat h3 span {
  font-family: "Phudu";
  font-weight: 700;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
}

.dscrStat p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
}

.dscrStatDivider {
  width: 1px;
  height: 60px;
  background-color: #fff;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .dscrInfoTopInner {
    padding: 60px 20px;
    flex-direction: column;
    gap: 40px;
  }

  .dscrInfoLeft,
  .dscrInfoRight {
    width: 100%;
  }

  .dscrInfoLeft h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .dscrStatsBarInner {
    padding: 30px 20px;
    flex-wrap: wrap;
    gap: 30px;
  }

  .dscrStat {
    flex: 1 1 calc(50% - 30px);
  }

  .dscrStatDivider {
    display: none;
  }

  .dscrStat h3,
  .dscrStat h3 span {
    font-size: 40px;
    line-height: 44px;
  }
}

@media (max-width: 600px) {
  .dscrInfoTopInner {
    padding: 50px 15px;
    gap: 30px;
  }

  .dscrInfoLeft {
    gap: 25px;
  }

  .dscrInfoLeft h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .dscrInfoLeft > p,
  .dscrList li {
    font-size: 16px;
    line-height: 22px;
  }

  .dscrStatsBarInner {
    padding: 30px 15px;
    gap: 25px;
  }

  .dscrStat {
    width: 100%;
  }

  .dscrStat h3,
  .dscrStat h3 span {
    font-size: 36px;
    line-height: 40px;
  }
}

/* dscr info section end */

/* services page CSS end */

/* about page CSS start */

/* core values section start */

.coreValuesSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coreValues {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 130px 80px;
  gap: 60px;
}

.coreValuesHeading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.coreValuesHeading h2 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}

.coreValuesCards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.coreValueCard {
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  border-left: 3px solid #fce190;
  padding: 30px;
  box-shadow: 3px 3px 10px 0 #0000000f;
}

.coreValueCard img {
  width: 50px;
  height: 50px;
  display: block;
}

.coreValueCard h3 {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-transform: uppercase;
}

.coreValueCard p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #000000cc;
}

@media (max-width: 768px) {
  .coreValues {
    padding: 80px 20px;
    gap: 40px;
  }

  .coreValuesHeading h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .coreValuesCards {
    gap: 20px;
  }

  .coreValueCard {
    width: calc((100% - 20px) / 2);
    padding: 25px;
  }
}

@media (max-width: 600px) {
  .coreValues {
    padding: 60px 15px;
    gap: 30px;
  }

  .coreValuesHeading h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .coreValuesCards {
    flex-direction: column;
    gap: 20px;
  }

  .coreValueCard {
    width: 100%;
    padding: 25px;
    gap: 15px;
  }

  .coreValueCard h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .coreValueCard p {
    font-size: 16px;
    line-height: 22px;
  }
}

/* core values section end */

/* meet team section start */

.meetTeamSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 80px;
}

.meetTeam {
  width: 95%;
  max-width: 1440px;
}

.meetTeamCard {
  width: 100%;
  background-color: #be7c28;
  border-radius: 10px;
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.meetTeamHeading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.meetTeamLabel span {
  color: #fff;
}

.meetTeamHeading h2 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.teamMembers {
  width: 100%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.teamMember {
  width: 30%;
  height: 493px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

.teamMemberContent {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.teamRole {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}

.teamMemberContent h3 {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.teamMemberContent p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}

@media (max-width: 768px) {
  .meetTeamSection {
    padding: 0 20px;
  }

  .meetTeamCard {
    padding: 80px 20px 80px 20px;
    gap: 40px;
  }

  .meetTeamHeading h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .teamMembers {
    flex-wrap: wrap;
    gap: 20px;
  }

  .teamMember {
    width: 45%;
    height: 420px;
  }

  .meetTeam {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .meetTeamSection {
    padding: 0 15px;
  }

  .meetTeamCard {
    padding: 50px 15px 50px 15px;
    gap: 30px;
  }

  .meetTeamHeading h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .teamMembers {
    flex-direction: column;
    gap: 20px;
  }

  .teamMember {
    width: 100%;
    flex: none;
    height: 440px;
    padding: 20px;
  }

  .teamMemberContent h3 {
    font-size: 22px;
    line-height: 26px;
  }

  .teamMemberContent p {
    font-size: 16px;
    line-height: 22px;
  }

  .meetTeam {
    width: 100%;
  }
}

/* meet team section end */

/* about page CSS end */

/* process page CSS start */

/* loan journey section start */

.loanJourneySection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
}

.loanJourney {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 100px 80px;
  gap: 60px;
}

.loanJourneyHeading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.loanJourneyHeading h2 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}

.loanJourneyCards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.loanJourneyCard {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  border-top: 1px solid #00000080;
}

.loanJourneyCardLeft {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.loanJourneyCardLeft h3 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 35px;
  line-height: 40px;
  color: #000;
  text-transform: uppercase;
}

.loanJourneyCardLeft p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #000000cc;
}

.loanJourneyTags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.loanJourneyTag {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.loanJourneyCardImg {
  width: 40%;
  display: flex;
  justify-content: center;
}

.loanJourneyCardImg img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .loanJourney {
    padding: 80px 20px;
    gap: 40px;
  }

  .loanJourneyHeading h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .loanJourneyCards {
    gap: 40px;
  }

  .loanJourneyCard {
    flex-direction: column;
    gap: 30px;
    padding-top: 40px;
  }

  .loanJourneyCardLeft,
  .loanJourneyCardImg {
    width: 100%;
  }

  .loanJourneyCardLeft h3 {
    font-size: 28px;
    line-height: 32px;
  }
}

@media (max-width: 600px) {
  .loanJourney {
    padding: 60px 15px;
    gap: 30px;
  }

  .loanJourneyHeading h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .loanJourneyCards {
    gap: 30px;
  }

  .loanJourneyCard {
    gap: 25px;
    padding-top: 30px;
  }

  .loanJourneyCardLeft {
    gap: 20px;
  }

  .loanJourneyCardLeft h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .loanJourneyCardLeft p {
    font-size: 16px;
    line-height: 22px;
  }

  .loanJourneyTag {
    font-size: 14px;
    padding: 4px 16px;
  }
}

/* loan journey section end */

/* doc checklist section start */

.docChecklistSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.docChecklist {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 130px 80px;
  gap: 60px;
}

.docChecklistTop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.docChecklistHeading {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.docChecklistHeading h2 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  text-transform: uppercase;
  width: 80%;
}

.docChecklistBtn {
  align-self: flex-end;
}

.docChecklistCards {
  width: 100%;
  display: flex;
  gap: 30px;
}

.docCard {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 3px solid #fce190;
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 3px 3px 10px 0 #0000000f;
}

.docCardRequired {
  background-color: #f7f7f7;
}

.docCardNotRequired {
  background-color: #fff;
}

.docCardHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.docCardHeader h3 {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-transform: uppercase;
}

.docCardBadge {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.docCardBadgeRequired {
  background-color: #be7c28;
  color: #fff;
  padding: 5px 28px;
}

.docCardBadgeNotRequired {
  background-color: #be7c281a;
  color: #be7c28;
  border: 1px solid #be7c28;
  padding: 5px 15px;
}

.docCard > p {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #000000cc;
}

.docCardList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  list-style: disc;
  padding-left: 30px;
}

.docCardList li {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #000000cc;
}

@media (max-width: 768px) {
  .docChecklist {
    padding: 80px 20px;
    gap: 40px;
  }

  .docChecklistTop {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .docChecklistHeading h2 {
    font-size: 40px;
    line-height: 44px;
    width: 100%;
  }

  .docChecklistCards {
    flex-direction: column;
    gap: 20px;
  }
  .docChecklistBtn {
    align-self: flex-start;
  }
}

@media (max-width: 600px) {
  .docChecklist {
    padding: 60px 15px;
    gap: 30px;
  }

  .docChecklistHeading h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .docCard {
    padding: 25px 20px;
    gap: 15px;
  }

  .docCardHeader {
    align-items: flex-start;
    gap: 10px;
  }

  .docCardHeader h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .docCard > p,
  .docCardList li {
    font-size: 16px;
    line-height: 22px;
  }
  .docChecklistBtn {
    padding: 12px 18px;
  }
}

/* doc checklist section end */

/* comparison section start */

.comparisonSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #be7c28;
}

.comparison {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 100px 80px;
  gap: 60px;
}

.comparisonHeading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.comparisonLabel span {
  color: #fff;
}

.comparisonHeading h2 {
  font-family: "Phudu";
  font-weight: 500;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.comparisonCards {
  width: 100%;
  display: flex;
  gap: 30px;
}

.compCard {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
}

.compCardHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 25px;
}

.compCardHeaderBentley {
  background-color: #fce190;
}

.compCardHeaderTraditional {
  background-color: #f7f7f7;
}

.compCardHeader h3 {
  font-family: "Phudu";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-transform: uppercase;
}

.compCardBadge {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.compCardBadgeBentley {
  background-color: #be7c28;
  color: #fff;
  padding: 5px 28px;
}

.compCardBadgeTraditional {
  background-color: #be7c281a;
  color: #be7c28;
  border: 1px solid #be7c28;
  padding: 5px 15px;
}

.compCardRows {
  display: flex;
  flex-direction: column;
}

.compCardRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  border-top: 1px solid #00000080;
}

.compCardRow:first-child {
  border-top: none;
}

.compCardRowBentley {
  background-color: #f7f7f7;
}

.compCardRowTraditional {
  background-color: #fff;
}

.compRowLabel {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000000cc;
}

.compRowValue {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

.compRowValueBentley {
  color: #be7c28;
}

.compRowValueTraditional {
  color: #000;
}

@media (max-width: 768px) {
  .comparison {
    padding: 80px 20px;
    gap: 40px;
  }

  .comparisonHeading h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .comparisonCards {
    flex-direction: column;
    gap: 30px;
  }

  .comparisonSection {
    margin-bottom: 80px;
  }
}

@media (max-width: 600px) {
  .comparison {
    padding: 60px 15px;
    gap: 30px;
  }

  .comparisonHeading h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .compCardHeader {
    padding: 20px;
    align-items: flex-start;
    gap: 10px;
  }

  .compCardHeader h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .compCardRow {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .compRowLabel,
  .compRowValue {
    font-size: 16px;
    line-height: 22px;
  }

  .comparisonSection {
    margin-bottom: 50px;
  }
}

/* comparison section end */

/* process page CSS end */
