@font-face {
  font-family: "Albert Sans";
  src: url("./fonts/AlbertSans-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Albert Sans";
  src: url("./fonts/AlbertSans-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Albert Sans";
  src: url("./fonts/AlbertSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Albert Sans";
  src: url("./fonts/AlbertSans-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Inter Tight";
  src: url("./fonts/InterTight-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("./fonts/PlusJakartaSans-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("./fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("./fonts/PlusJakartaSans-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "DM Sans";
  src: url("./fonts/DMSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

* {
  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: #113262;
}

.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::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: #e3c775;
}

.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;
}

.topBanner {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #113262;
  align-self: flex-end;
}

.topBannerInner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px 10px 20px;
}

.socialIcons {
  width: 20%;
  justify-content: flex-start;
  gap: 5px;
}

.topBannerContact {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.licensed {
  display: flex;
  justify-content: flex-start;
}

.licensed div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.licensed span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #fff;
}

.contact {
  display: flex;
  justify-content: flex-end;
}

.contact div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
}

.headerMenu {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #d5d5d5;
}

.headerMenuInner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.headerLogo {
  width: 20%;
  display: flex;
  justify-content: flex-start;
  margin-top: -50px;
}

.headerLogo a img {
  width: 100%;
}

.menu {
  width: 60%;
  display: flex;
  justify-content: center;
  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: "Inter Tight";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000;
  text-decoration: none;
}

.menu nav ul li:hover a {
  color: #113262;
}

.menu nav ul li:active a {
  color: #113262;
}

.headerBtn {
  width: 20%;
  display: flex;
  justify-content: flex-end;
}

.headerBtn div {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e3c775;
  border-radius: 5px;
  padding: 5px 5px 5px 15px;
  gap: 10px;
}

.headerBtn div a {
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

#toggle,
.toggle {
  display: none;
}

@media (max-width: 768px) {
  .topBanner {
    width: 100%;
    align-self: center;
  }

  .topBannerInner {
    padding: 10px 20px 10px 20px;
  }

  .socialIcons {
    width: 15%;
  }

  .topBannerContact {
    width: 75%;
  }

  .headerMenuInner {
    padding: 5px 20px;
  }

  .headerLogo {
    margin-top: 0;
  }

  .menu {
    justify-content: flex-end;
  }

  .headerBtn {
    display: none;
  }

  .toggle {
    display: block;
  }

  .menu nav ul {
    display: none;
  }

  .menu nav ul {
    position: fixed;
    top: 23%;
    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;
  }

  .menu nav ul {
    flex-direction: column;
  }

  #toggle:checked ~ nav ul {
    right: 0;
  }

  .menu nav ul {
    gap: 25px;
  }

  .menu nav ul li a {
    font-size: 16px;
  }
  .menu nav ul li:hover {
    width: 100%;
    padding: 15px 0;
    transition: 0.3s ease;
    background-color: #113262;
  }

  .menu nav ul li:hover a {
    color: #fff;
  }
}

@media (max-width: 600px) {
  .topBannerInner {
    padding: 10px 15px 10px 15px;
  }

  .socialIcons {
    display: none;
  }

  .topBannerContact {
    width: 100%;
  }

  .topBannerContact {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .headerMenuInner {
    padding: 5px 15px;
  }

  .headerLogo {
    width: 40%;
  }

  .menu nav ul {
    top: 21%;
  }
}

/* header end */

/* footer start */

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #181c21;
}

.innerFooter {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  padding: 150px 80px 0px 80px;
}

.footerDesc {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-bottom: 60px;
}

.footerDesc img {
  width: 10%;
}

.footerDesc p {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  color: #fff;
}

.footeraddress {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 55px;
}

.footeraddress div {
  display: flex;
  flex-direction: column;
}

.footeraddress div span,
a {
  font-family: "Plus Jakarta Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  color: #fff;
}

.footerLinks {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.footerSocials {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footerPages {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footerPages h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 24px;
  font-weight: 34px;
  letter-spacing: -0.96px;
  text-transform: uppercase;
  color: #fff;
}

.footerMenu {
  display: flex;
  flex-direction: column;
}

.footerMenu div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff33;
  padding: 6px 0px;
}

.contactMenu {
  border-bottom: 1px solid #ffffff33;
}

.footerSocialLinks {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footerSocialLinks h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 24px;
  font-weight: 34px;
  letter-spacing: -0.96px;
  text-transform: uppercase;
  color: #fff;
}
.footerSocialLinks div {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footerLogo {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footerLogo a img {
  width: 80%;
}

.footerLogo div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff33;
  padding-top: 30px;
}

.footerLogo p,
span {
  font-family: "Inter Tight";
  font-weight: 500;
  font-size: 16px;
  font-weight: 24px;
  color: #eaebef;
}

@media (max-width: 768px) {
  .innerFooter {
    padding: 80px 20px 0px 20px;
    flex-direction: column;
    gap: 50px;
  }

  .footerDesc {
    width: 100%;
    padding-bottom: 0px;
  }

  .footerDesc p {
    font-size: 16px;
  }

  .footeraddress {
    gap: 30px;
    padding-top: 0px;
  }

  .footerLinks {
    width: 100%;
  }

  .copyRightText {
    padding-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .innerFooter {
    padding: 50px 15px 0px 15px;
    gap: 40px;
  }

  .footerDesc {
    gap: 20px;
  }

  .footeraddress {
    gap: 20px;
  }

  .footerSocials {
    flex-direction: column;
    gap: 30px;
  }

  .footerPages,
  .footerSocialLinks {
    width: 100%;
    gap: 20px;
  }

  .footerLogo {
    gap: 20px;
  }

  .footerLogo a img {
    width: 100%;
  }

  .copyRightText {
    flex-direction: column;
    gap: 5px;
  }

  .copyRightText p {
    text-align: center;
  }
}

/* footer end */

/* hero section start */

.heroSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(./images/heroBackground.webp);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
}

.heroText {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.heroText > p {
  font-family: "Plus Jakarta Sans";
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -1.67px;
  color: #000000c7;
  border-radius: 26px;
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  align-self: flex-start;
}

.heroText h1 {
  font-family: "Albert Sans";
  font-weight: 700;
  font-size: 120px;
  line-height: 100px;
  letter-spacing: -2px;
  color: #fff;
}

.heroText h1 > span {
  font-family: "Albert Sans";
  font-weight: 400;
  font-size: 120px;
  line-height: 100px;
  letter-spacing: -2px;
  color: #ffffffb2;
}

.roofing {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.roofing > p {
  font-family: "Plus Jakarta Sans";
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -1px;
  color: #ffffffb2;
}

.roofing div {
  display: flex;
  gap: 20px;
  align-items: center;
}

.roofing p:last-child {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

.heroBtns {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 20px;
}

.heroBtn1 {
  background-color: #e3c775;
  padding: 5px 5px 5px 15px;
  border-radius: 5px;
}

.heroBtn1 a {
  color: #000;
}

.heroBtn2 {
  background-color: #fff;
  padding: 5px 5px 5px 15px;
  border-radius: 5px;
}

.heroBtn2 a {
  color: #113262;
}

/* hero form start */

.heroForm {
  width: 33%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: #fff;
  border-radius: 10px;
  padding: 35px 30px;
}

.formHeading {
  font-family: "Albert Sans";
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -1px;
  color: #113262;
}

.formHeading span {
  font-family: "Albert Sans";
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -1px;
  color: #11326299;
}

.formGrid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
}

.formField {
  width: calc((100% - 15px) / 2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.formFieldFull {
  width: 100%;
}

.formField label {
  font-family: "Plus Jakarta Sans";
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #000;
}

.formField input,
.formField textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #000;
  background-color: #fff;
  outline: none;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.formField textarea {
  resize: none;
  min-height: 90px;
  font-family: "Plus Jakarta Sans";
  box-sizing: border-box;
}
.formField input::placeholder,
.formField textarea::placeholder {
  color: #000000cc;
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 13px;
}

.formField input:focus,
.formField textarea:focus {
  border-color: #113262;
}

.formBtnWrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.formBtn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.formBtn a {
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
}

/* hero form end */

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
    flex-direction: column;
    gap: 40px;
  }

  .heroText {
    width: 100%;
  }

  .heroText > p {
    font-size: 18px;
    line-height: 18px;
  }

  .heroText h1,
  .heroText h1 > span {
    font-size: 60px;
    line-height: 60px;
  }

  .roofing {
    padding-top: 0px;
  }

  .heroForm {
    width: 100%;
    padding: 30px 20px;
  }

  .formHeading,
  .formHeading span {
    font-size: 26px;
    line-height: 30px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 50px 15px;
  }

  .heroText > p {
    font-size: 16px;
    line-height: 16px;
  }

  .heroText h1,
  .heroText h1 > span {
    font-size: 30px;
    line-height: 30px;
  }

  .roofing {
    align-items: flex-start;
  }

  .roofing > p {
    font-size: 24px;
  }

  .roofing > div:first-of-type {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .roofing p:last-child {
    font-size: 16px;
  }

  .roofing > div:first-of-type img {
    width: 5%;
  }

  .heroBtns {
    flex-direction: column;
    justify-content: flex-start;
  }

  .heroForm {
    width: 100%;
    padding: 25px 15px;
    gap: 20px;
  }

  .formHeading,
  .formHeading span {
    font-size: 22px;
    line-height: 26px;
  }

  .formField {
    width: 100%;
  }
}

/* hero section end */

/* second section start */

.secondSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #18181833;
}

.sec2 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 80px;
}

.sec3Inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec2Logo {
  width: 20%;
  padding: 70px;
  border-left: 1px solid #18181833;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .sec2 {
    padding: 0px 20px;
  }

  .sec2Logo {
    padding: 20px;
    width: 30%;
  }
}

@media (max-width: 600px) {
  .sec2 {
    padding: 20px 15px;
  }

  .sec3Inner {
    flex-wrap: wrap;
  }

  .sec2Logo {
    width: 45%;
    border: none;
  }
}

/* second section end */

/* third section start */

.thirdSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaebef4d;
}

.sec3 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 130px 80px 100px 80px;
  gap: 80px;
}

.aboutUs {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.sec3Img {
  width: 55%;
}

.sec3Img img {
  width: 100%;
}

.sec3About {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.miniHeading {
  display: flex;
  align-items: center;
  gap: 5px;
}

.miniHeading span {
  font-family: "Albert Sans";
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #1e1e1e;
}

.sec3About h3 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2.76px;
  color: #113262;
}

.sec3About .transparency {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2.76px;
  color: #c6a15e;
}

.sec3About p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  width: 92%;
}

.sec3Btn {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec3Cards {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.sec3Cards .card {
  width: 25%;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 50px 30px;
  background-color: #fff;
  border-radius: 20px;
  gap: 40px;
}

.card img {
  width: 12%;
}

.card p {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.76px;
  color: #113262;
  border-top: 1px solid #d9dada;
  padding-top: 30px;
}

@media (max-width: 768px) {
  .sec3 {
    padding: 80px 20px;
    gap: 40px;
  }

  .aboutUs {
    gap: 40px;
    flex-direction: column-reverse;
  }

  .sec3About {
    width: 100%;
  }

  .sec3Img {
    width: 100%;
  }

  .sec3Cards {
    gap: 20px;
  }

  .sec3Cards .card {
    padding: 20px;
    gap: 30px;
  }

  .card img {
    width: 20%;
  }

  .card p {
    font-size: 22px;
    padding-top: 20px;
  }
}

@media (max-width: 600px) {
  .sec3 {
    padding: 50px 15px;
  }

  .sec3About h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .sec3About .transparency {
    font-size: 30px;
    line-height: 40px;
  }

  .sec3About p {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
  }

  .sec3Cards {
    flex-wrap: wrap;
  }

  .sec3Cards .card {
    width: 100%;
  }

  .card img {
    width: 13%;
  }
}
/* third section end */

/* fourth section start */

.fourthSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #113262;
}

.sec4 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 100px 80px 100px 80px;
  gap: 85px;
}

.sec4Top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.sec4Heading {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec4Heading .miniHeading span {
  color: #fff;
}

.sec4Heading h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -2px;
  color: #e3c775;
}

.sec4Heading .builtToLast {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -2px;
  color: #e3c77599;
}

.sec4TopDesc {
  width: 25%;
  display: flex;
  justify-content: flex-end;
}

.sec4TopDesc p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.sec4Services {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.serviceRow {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid #ffffff1f;
  position: relative;
}

.serviceRow:last-child {
  border-bottom: 1px solid #ffffff1f;
}

.serviceNum {
  width: 6%;
  font-family: "Albert Sans";
  font-weight: 200;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #e3c775;
}

.serviceTitle {
  width: 25%;
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -1px;
  color: #fff;
}

.serviceDesc {
  width: 30%;
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #fff;
}

.serviceImg {
  position: absolute;
  right: 110px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.serviceImg img {
  width: 160px;
  height: auto;
}

.serviceArrow {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.serviceArrow img {
  width: 52px;
  height: 52px;
  transition: 0.3s ease;
}

.serviceArrow:hover img {
  transform: rotate(45deg);
}

#roof,
#commercial,
#hurricane,
#kitchen,
#bathroom,
#construction,
#outdoor {
  scroll-margin-top: 200px;
}

@media (max-width: 768px) {
  .sec4 {
    padding: 80px 20px;
    gap: 40px;
  }

  .sec4Top {
    flex-direction: column;
    gap: 25px;
  }

  .sec4Heading {
    width: 100%;
  }

  .sec4Heading h2 {
    font-size: 40px;
    line-height: 46px;
  }

  .sec4Heading .builtToLast {
    font-size: 40px;
    line-height: 46px;
  }

  .sec4TopDesc {
    width: 100%;
    justify-content: flex-start;
  }

  .serviceRow {
    gap: 15px;
    padding: 25px 0;
  }

  .serviceNum {
    width: 10%;
  }

  .serviceTitle {
    width: 30%;
    font-size: 22px;
    line-height: 26px;
  }

  .serviceDesc {
    width: 45%;
    font-size: 14px;
  }

  .serviceImg {
    display: none;
  }

  .serviceArrow img {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 600px) {
  .sec4 {
    padding: 50px 15px;
    gap: 30px;
  }

  .sec4Heading h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .sec4Heading .builtToLast {
    font-size: 30px;
    line-height: 36px;
  }

  .serviceRow {
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
  }

  .serviceNum {
    width: auto;
    font-size: 24px;
    line-height: 28px;
  }

  .serviceTitle {
    width: 100%;
    font-size: 24px;
    line-height: 28px;
  }

  .serviceDesc {
    width: 100%;
    font-size: 16px;
    line-height: 22px;
  }

  .serviceArrow {
    margin-left: 0;
  }

  .serviceArrow img {
    width: 40px;
    height: 40px;
  }
}

/* fourth section end */

/* fifth section start */

.fifthSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec5 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 180px 80px;
}

.sec5Inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 600px;
  background-image: url(./images/coastalResidence.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 50px 50px 40px;
  border-radius: 10px;
}

.currentlyFeatured {
  display: flex;
  align-self: flex-start;
  gap: 10px;
  align-items: center;
  padding: 10px 18px;
  border-radius: 26px;
  backdrop-filter: blur(13.15px);
  box-shadow: inset 0 0 24.1px 0 rgba(242, 242, 242, 0.5);
}

.currentlyFeatured span {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #1a1814;
}

.coastalresidence {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.coastalresidence h2 {
  font-family: "Plus Jakarta Sans";
  font-weight: 500;
  font-size: 42px;
  letter-spacing: -2.52px;
  color: #ffffffc7;
  width: 55%;
}

.coastalresidence span {
  font-family: "Plus Jakarta Sans";
  font-size: 42px;
  letter-spacing: -2.52px;
  color: #ffffffc7;
  font-weight: 700;
}

.coastalresidence p {
  font-family: "DM Sans";
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.88px;
  text-transform: uppercase;
  color: #faf7f1d9;
}

@media (max-width: 768px) {
  .sec5 {
    padding: 80px 20px;
  }

  .sec5Inner {
    height: 500px;
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .sec5 {
    padding: 50px 15px;
  }

  .sec5Inner {
    height: 430px;
    padding: 30px 15px;
    background-position: left;
  }

  .coastalresidence {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .coastalresidence h2 {
    font-size: 30px;
    width: 100%;
  }

  .coastalresidence span {
    font-size: 30px;
  }
}
/* fifth section end */

/* sixth section start */

.sixthSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(./images/desertBg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec6 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px;
}

.sec6Inner {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 45px;
}

.sec6Inner h2 {
  font-family: "Plus Jakarta Sans";
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -2.52px;
  color: #ffffffc7;
  font-weight: 500;
  text-align: center;
}

.years {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.years div {
  display: flex;
  gap: 5px;
  align-items: center;
}

.years span {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 22px;
  list-style: 30px;
  letter-spacing: -0.88px;
  text-transform: uppercase;
  color: #1e1e1e;
}

@media (max-width: 768px) {
  .sec6 {
    padding: 80px 20px;
  }

  .sec6Inner {
    width: 100%;
    gap: 40px;
  }
  .sec6Inner h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 600px) {
  .sec6 {
    padding: 50px 15px;
  }

  .sec6Inner {
    width: 100%;
    gap: 20px;
  }

  .sec6Inner > img {
    width: 10%;
  }
  .sec6Inner h2 {
    font-size: 30px;
    line-height: 40px;
    text-align: start;
  }

  .sec6Inner {
    align-items: flex-start;
  }

  .years div > img {
    width: 30%;
  }

  .years img:last-of-type {
    width: 15%;
  }

  .years {
    align-items: flex-start;
  }
}
/* sixth section end */

/* seventh section start */

.seventhSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.sec7 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 180px 80px 180px 80px;
}

.sec7Inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.sec7Text {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sec7Text h3 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 54px;
  line-height: 58px;
  letter-spacing: -2.5px;
  color: #113262;
}

.sec7Text .obsessed {
  font-family: "Albert Sans";
  font-weight: 400;
  font-size: 54px;
  line-height: 58px;
  letter-spacing: -2.5px;
  color: #11326280;
}

.sec7Text p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1e1e1e;
  width: 92%;
}

.sec7Divider {
  width: 100%;
  height: 1px;
  background-color: #e1e2e8;
  margin-top: 10px;
}

.sec7Brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sec7Brand h4 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #113262;
}

.sec7Brand span {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #11326280;
}

.sec7Img {
  width: 48%;
  display: flex;
  justify-content: flex-end;
}

.sec7Img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .sec7 {
    padding: 80px 20px;
  }

  .sec7Inner {
    flex-direction: column;
    gap: 40px;
  }

  .sec7Text {
    width: 100%;
  }

  .sec7Img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .sec7 {
    padding: 50px 15px;
  }

  .sec7Text h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .sec7Text .obsessed {
    font-size: 30px;
    line-height: 38px;
  }

  .sec7Text p {
    font-size: 16px;
    line-height: 22px;
    width: 100%;
  }

  .sec7Brand h4 {
    font-size: 18px;
  }
}

/* seventh section end */

/* eighth section start */

.eighthSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.sec8 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 0px 80px 180px 80px;
  gap: 50px;
}

.sec8Heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec8Heading h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -2px;
  color: #113262;
}

.sec8Heading .quietlyRemarkable {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -2px;
  color: #11326299;
}

.sec8Cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sec8TopRow {
  width: 100%;
  display: flex;
  gap: 20px;
}

.sec8TopRow .projectCardLarge {
  width: 58%;
}

.sec8TopRow .projectCardSmall {
  width: 42%;
}

.sec8BottomRow {
  width: 100%;
  display: flex;
  gap: 20px;
}

.sec8BottomRow .projectCard {
  width: calc((100% - 50px) / 3);
}

.projectCard {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.projectCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projectTag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  border-radius: 30px;
  background-color: #faf7f1eb;
  border: 0.94px solid #faf7f180;
  backdrop-filter: blur(9.41px);
  -webkit-backdrop-filter: blur(9.41px);
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #1a1814;
}

.projectInfo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.projectInfo h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #faf7f1;
}

.projectInfo span {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #faf7f1d9;
}

@media (max-width: 768px) {
  .sec8 {
    padding: 0px 20px 80px 20px;
    gap: 40px;
  }

  .sec8Heading h2,
  .sec8Heading .quietlyRemarkable {
    font-size: 40px;
    line-height: 46px;
  }

  .sec8TopRow,
  .sec8BottomRow {
    gap: 20px;
  }

  .sec8BottomRow .projectCard {
    width: calc((100% - 40px) / 3);
  }

  .projectInfo h3 {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 600px) {
  .sec8 {
    padding: 0px 15px 50px 15px;
    gap: 30px;
  }

  .sec8Heading h2,
  .sec8Heading .quietlyRemarkable {
    font-size: 30px;
    line-height: 36px;
  }

  .sec8TopRow,
  .sec8BottomRow {
    flex-direction: column;
    gap: 20px;
  }

  .sec8TopRow .projectCardLarge,
  .sec8TopRow .projectCardSmall,
  .sec8BottomRow .projectCard {
    width: 100%;
  }

  .projectInfo h3 {
    font-size: 22px;
    line-height: 26px;
  }
}

/* eighth section end */

/* ninth section start */

.ninthSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #113262;
}

.sec9 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 90px;
}

.statCard {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 40px;
  border-left: 1px solid #eaebef;
}

.statCard:first-child {
  border-left: none;
  padding-left: 0;
}

.statCard h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2px;
  color: #e3c775;
}

.statCard h2 span {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2px;
  color: #ffffff80;
}

.statCard p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

@media (max-width: 768px) {
  .sec9 {
    padding: 80px 20px;
    flex-wrap: wrap;
    gap: 40px 0;
  }

  .statCard {
    width: 40%;
  }

  .statCard:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }

  .statCard h2,
  .statCard h2 span {
    font-size: 60px;
    line-height: 60px;
  }

  .statCard {
    border-left: none;
  }
}

@media (max-width: 600px) {
  .sec9 {
    padding: 50px 15px;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .statCard {
    width: 100%;
    padding: 0;
    border-left: none;
  }

  .statCard h2,
  .statCard h2 span {
    font-size: 50px;
    line-height: 50px;
  }
}

/* ninth section end */

/* tenth section start */

.tenthSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec10 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 180px 80px;
  gap: 60px;
}

.sec10Heading {
  width: 100%;
  display: flex;
  justify-content: center;
}

.sec10Heading h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -2px;
  color: #113262;
  text-align: center;
}

.sec10Heading .conceptCompletion {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -2px;
  color: #11326299;
}

.sec10Cards {
  width: 100%;
  display: flex;
  gap: 25px;
}

.processCard {
  width: calc((100% - 75px) / 4);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px 30px;
  background-color: #eaebef80;
  border-radius: 20px;
}

.processNum {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #113262;
  border-radius: 50%;
  margin-bottom: 30px;
}

.processNum span {
  font-family: "Albert Sans";
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #113262;
}

.processCard h3 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #113262;
}

.processCard p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000cc;
}

@media (max-width: 768px) {
  .sec10 {
    padding: 80px 20px;
    gap: 40px;
  }

  .sec10Heading h2,
  .sec10Heading .conceptCompletion {
    font-size: 40px;
    line-height: 46px;
  }

  .sec10Cards {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .processCard {
    width: calc((80% - 20px) / 2);
    padding: 30px 25px;
  }
}

@media (max-width: 600px) {
  .sec10 {
    padding: 50px 15px;
    gap: 30px;
  }

  .sec10Heading h2,
  .sec10Heading .conceptCompletion {
    font-size: 30px;
    line-height: 36px;
  }

  .sec10Cards {
    gap: 15px;
  }

  .processCard {
    width: 100%;
    padding: 30px 20px;
    gap: 15px;
  }

  .processCard h3 {
    font-size: 22px;
  }

  .processCard p {
    font-size: 14px;
    line-height: 20px;
  }

  .processNum {
    margin-bottom: 10px;
  }
}

/* tenth section end */

/* eleventh section start */

.eleventhSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(./images/letsBuildBg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec11 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 65px 80px;
}

.sec11btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec11btn2 {
  background-color: #113262 !important;
}

.sec11btn2 a {
  color: #fff;
}

.sec11Card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 80px;
  box-shadow: 0 4px 4px 0 #00000040;
}

.sec11Card h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 78px;
  line-height: 82px;
  letter-spacing: -2.5px;
  color: #113262;
  text-align: center;
}

.sec11Card .builtToLastBlue {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 78px;
  line-height: 82px;
  letter-spacing: -2.5px;
  color: #11326299;
}

.sec11Btns {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 10px;
}

.sec11Strip {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaebef;
}

.sec11StripInner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 25px 80px;
  gap: 20px;
}

.stripText {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  text-transform: uppercase;
}

.stripSeparator {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #1e1e1e;
}

@media (max-width: 768px) {
  .sec11 {
    padding: 50px 20px;
  }

  .sec11Card {
    width: 100%;
    padding: 50px 30px;
    gap: 20px;
  }

  .sec11Card h2,
  .sec11Card .builtToLastBlue {
    font-size: 50px;
    line-height: 56px;
  }

  .sec11StripInner {
    padding: 20px 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stripText,
  .stripSeparator {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width: 600px) {
  .sec11 {
    padding: 40px 15px;
  }

  .sec11Card {
    padding: 40px 20px;
    gap: 15px;
    width: 100%;
  }

  .sec11Card h2,
  .sec11Card .builtToLastBlue {
    font-size: 32px;
    line-height: 38px;
  }

  .sec11Btns {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: stretch;
  }

  .sec11Btns .heroBtn1,
  .sec11Btns .heroBtn2 {
    justify-content: space-between;
    align-self: center;
  }

  .sec11StripInner {
    padding: 20px 15px;
    flex-direction: column;
    gap: 10px;
  }

  .sec11StripInner .stripSeparator {
    display: none;
  }

  .stripText {
    font-size: 16px;
    line-height: 20px;
  }
}

/* eleventh section end */

/* twelfth section start */

.twelfthSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaebef80;
}

.sec12 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 180px 80px;
  gap: 50px;
}

.feedbackHeading {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 144px;
  line-height: 144px;
  letter-spacing: -4px;
  color: #181c21;
  text-align: center;
}

.sec12Content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.sec12Left {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.sec12Left > img {
  width: 60px;
  height: auto;
  padding-bottom: 50px;
}

.sec12Left h3 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 50px;
  line-height: 54px;
  letter-spacing: -1.5px;
  color: #181c21;
}

.sec12Left span {
  font-family: "Inter Tight";
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #1e1e1e;
}

.sec12Center {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec12Center img {
  width: 100%;
  height: auto;
}

.sec12Right {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  padding-top: 300px;
}

.sec12Right > img {
  width: 80px;
  height: auto;
}

.testimonialBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #eaebef;
  padding: 5px;
}

.testimonialBox p {
  font-family: "Plus Jakarta Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #5d5c5b;
}

.testimonialBox span {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1e1e1e;
}

@media (max-width: 768px) {
  .sec12 {
    padding: 80px 20px;
    gap: 30px;
  }

  .feedbackHeading {
    font-size: 80px;
    line-height: 80px;
  }

  .sec12Content {
    flex-direction: column;
    gap: 40px;
  }

  .sec12Left,
  .sec12Center,
  .sec12Right {
    width: 100%;
  }

  .sec12Right {
    padding-top: 0px;
  }

  .sec12Left h3 {
    font-size: 40px;
    line-height: 44px;
  }

  .sec12Center {
    justify-content: center;
  }

  .sec12Center img {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .sec12 {
    padding: 50px 15px;
    gap: 25px;
  }

  .feedbackHeading {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -2px;
  }

  .sec12Left h3 {
    font-size: 30px;
    line-height: 34px;
  }

  .sec12Left > img {
    width: 45px;
  }

  .sec12Right > img {
    width: 40px;
  }

  .testimonialBox {
    width: 100%;
  }

  .testimonialBox p {
    font-size: 14px;
    line-height: 20px;
  }

  .testimonialBox span {
    font-size: 16px;
  }

  .sec12Right {
    padding-top: 0px;
  }

  .sec12Left > img {
    padding-bottom: 20px;
  }

  .sec12Right {
    gap: 20px;
  }
}

/* twelfth section end */

/* thirteenth section start */

.thirteenthSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaebef80;
}

.sec13 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px 80px 100px 80px;
  gap: 40px;
}

.processPageFaq {
  padding: 140px 80px 140px 80px;
}

.sec13Left {
  width: 28%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 30px;
}

.propertyIcon {
  display: flex;
}

.propertyIcon img {
  width: 60px;
  height: 60px;
}

.sec13Left h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #181c21;
}

.sec13Left p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5d5c5b;
}

.sec13Btn {
  margin-top: 10px;
}

.property {
  background-color: #c6a15e !important;
  align-items: center;
  display: flex;
  gap: 10px;
}

.sec13Right {
  width: 68%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sec13Right h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -2px;
  color: #113262;
}

.sec13Right .askedQuestions {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -2px;
  color: #11326299;
}

.faqList {
  width: 92%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.faqItem {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 40px;
  transition: all 0.4s ease;
}

.faqQuestion {
  display: flex;
  align-items: center;
  gap: 35px;
  cursor: pointer;
  user-select: none;
}

.faqNum {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  color: #1e1e1e;
  flex-shrink: 0;
}

.faqText {
  flex: 1;
  font-family: "Albert Sans";
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #1e1e1e;
}

.faqIcon {
  font-family: "Albert Sans";
  font-weight: 400;
  font-size: 28px;
  line-height: 28px;
  color: #000;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.faqItem.active .faqIcon {
  transform: rotate(45deg);
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faqItem.active .faqAnswer {
  max-height: 500px;
  padding-top: 20px;
}

.faqAnswer p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5d5c5b;
  padding-left: 62px;
}

@media (max-width: 768px) {
  .sec13 {
    padding: 0px 20px 80px 20px;
    flex-direction: column;
    gap: 30px;
  }

  .processPageFaq {
    padding: 80px 20px 80px 20px;
  }

  .sec13Left,
  .sec13Right {
    width: 100%;
  }

  .sec13Right h2,
  .sec13Right .askedQuestions {
    font-size: 40px;
    line-height: 46px;
  }

  .faqItem {
    padding: 25px 25px;
  }

  .faqQuestion {
    gap: 20px;
  }

  .faqNum,
  .faqText {
    font-size: 18px;
    line-height: 24px;
  }

  .faqAnswer p {
    padding-left: 35px;
  }

  .faqList {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .sec13 {
    padding: 0px 15px 50px 15px;
    gap: 25px;
  }

  .processPageFaq {
    padding: 50px 15px 50px 15px;
  }

  .sec13Left {
    padding: 35px 20px;
  }

  .sec13Right h2,
  .sec13Right .askedQuestions {
    font-size: 30px;
    line-height: 36px;
  }

  .sec13Left,
  .sec13Right {
    width: 100%;
  }

  .faqItem {
    padding: 20px 20px;
    border-radius: 15px;
  }

  .faqQuestion {
    gap: 15px;
  }

  .faqNum,
  .faqText {
    font-size: 16px;
    line-height: 22px;
  }

  .faqIcon {
    font-size: 24px;
  }

  .faqAnswer p {
    padding-left: 0;
    font-size: 14px;
    line-height: 20px;
  }
}

/* thirteenth section end */

/* fourteenth section start */

.fourteenthSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec14 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 180px 80px;
  gap: 40px;
}

.sec14Left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sec14Left h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -2px;
  color: #113262;
}

.sec14Left .aboutProject {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -2px;
  color: #11326299;
}

.sec14Desc {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}

.sec14Info {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f5f5f7;
  border-radius: 10px;
  padding: 30px;
  margin-top: 10px;
}

.infoRow {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid #d9d9d9;
}

.infoRow:first-child {
  padding-top: 0;
}

.infoRow:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.infoLabel {
  width: 30%;
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #00000080;
}

.infoValue {
  flex: 1;
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #1a1814;
}

.infoValue em {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  font-style: italic;
  color: #00000080;
}

.sec14Form {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: #f5f5f7;
  border-radius: 10px;
  padding: 35px 30px;
}

@media (max-width: 768px) {
  .sec14 {
    padding: 80px 20px;
    flex-direction: column;
    gap: 40px;
  }

  .sec14Left,
  .sec14Form {
    width: 100%;
  }

  .sec14Left h2,
  .sec14Left .aboutProject {
    font-size: 40px;
    line-height: 46px;
  }

  .infoValue {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .sec14 {
    padding: 50px 15px;
    gap: 30px;
  }

  .sec14Left h2,
  .sec14Left .aboutProject {
    font-size: 30px;
    line-height: 36px;
  }

  .sec14Desc {
    font-size: 14px;
    line-height: 20px;
  }

  .sec14Info {
    padding: 20px;
  }

  .infoRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 15px 0;
  }

  .infoLabel {
    width: 100%;
  }

  .infoValue {
    font-size: 18px;
  }

  .sec14Form {
    padding: 25px 20px;
    width: 100%;
  }
  .sec14Info {
    width: 100%;
  }
}

/* fourteenth section end */

/* PROCESS PAGE CSS START*/
/* process hero section start */

.processHeroSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(./images/processHeroBg.webp);
}

.servicesHero {
  background-image: url(./images/servicesPageHeroBg.webp);
}

.contactHero {
  background-image: url(./images/contactHeroBg.webp);
}

.aboutHero {
  background-image: url(./images/aboutHeroBg.webp);
}

.galleryHero {
  background-image: url(./images/galleryHeroBg.webp);
}

.processHero {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 150px 80px 0 80px;
  position: relative;
}

.processHeroContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.processHeroContent h1 {
  font-family: "Albert Sans";
  font-weight: 700;
  font-size: 100px;
  line-height: 100px;
  letter-spacing: -2px;
  color: #fff;
  width: 100%;
}

.contacth1 {
  width: 90%;
}

.aboutH1 h1 {
  width: 100%;
}

.processHeroContent h1 span {
  font-family: "Albert Sans";
  font-weight: 400;
  font-size: 100px;
  line-height: 100px;
  letter-spacing: -2px;
  color: #ffffffb2;
}

.processHeroDesc {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 10px;
}

.processHeroDesc p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  width: 42%;
}

.processHeroBtns {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 20px;
}

.processHeroBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}

.processBigText {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 216px;
  line-height: 216px;
  letter-spacing: -8px;
  color: #fff;
  text-align: right;
  text-transform: uppercase;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .processHero {
    padding: 100px 20px 0 20px;
  }

  .processHeroContent h1,
  .processHeroContent h1 span {
    font-size: 50px;
    line-height: 54px;
    width: 100%;
  }

  .processHeroDesc p {
    width: 100%;
  }

  .processBigText {
    font-size: 120px;
    line-height: 120px;
    letter-spacing: -4px;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .processHero {
    padding: 80px 15px 0 15px;
  }

  .processHeroContent h1,
  .processHeroContent h1 span {
    font-size: 32px;
    line-height: 36px;
  }

  .processHeroDesc {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .processHeroDesc p {
    font-size: 14px;
  }

  .processHeroBtns {
    flex-direction: column;
    align-items: stretch;
  }

  .processBigText {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -2px;
    margin-top: 30px;
  }
}

/* process hero section end */

/* process second section start */

.processSec2Section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.processSec2 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 180px 80px 150px 80px;
  gap: 30px;
}

.processValueCard {
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #eaebef4d;
  border-radius: 20px;
  padding: 25px 40px 40px 30px;
}

.processValueCard h3 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -1px;
  color: #113262;
}

.processValueCard p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

@media (max-width: 768px) {
  .processSec2 {
    padding: 80px 20px 80px 20px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
  }

  .processValueCard {
    width: calc((84% - 20px) / 2);
    padding: 25px 30px 30px 25px;
  }

  .processValueCard h3 {
    font-size: 26px;
    line-height: 30px;
  }
}

@media (max-width: 600px) {
  .processSec2 {
    padding: 50px 15px 50px 15px;
    gap: 15px;
  }

  .processValueCard {
    width: 100%;
    padding: 25px 25px 30px 25px;
    gap: 15px;
  }

  .processValueCard h3 {
    font-size: 22px;
    line-height: 26px;
  }

  .processValueCard p {
    font-size: 14px;
    line-height: 20px;
  }
}

/* process second section end */

/* process third section start */

.processSec3Section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.processSec3 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 0px 80px 180px 80px;
  gap: 90px;
  position: relative;
}

.processSec3::before {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: #d0d5ea;
  z-index: 0;
}

.processStepRow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.processStepRowReverse {
  flex-direction: row;
}

.processStepText {
  width: 42%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.processStepText h3 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #113262;
}

.processStepText h3 span {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #11326299;
}

.processStepText p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}

.processStepList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  margin-top: 10px;
}

.processStepList li {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  list-style: disc;
}

.processStepNum {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #c6a15e;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  z-index: 2;
}

.processStepNum span {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  color: #c6a15e;
}

.processStepImg {
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.processStepImg img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .processSec3 {
    padding: 0px 20px 80px 20px;
    gap: 60px;
  }

  .processSec3::before {
    display: none;
  }

  .processStepRow,
  .processStepRowReverse {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }

  .processStepText,
  .processStepImg {
    width: 100%;
  }

  .processStepText h3,
  .processStepText h3 span {
    font-size: 44px;
    line-height: 48px;
  }

  .processStepNum {
    position: static;
    transform: none;
    align-self: center;
  }
}

@media (max-width: 600px) {
  .processSec3 {
    padding: 0px 15px 50px 15px;
    gap: 50px;
  }

  .processStepRow,
  .processStepRowReverse {
    gap: 20px;
  }

  .processStepText h3,
  .processStepText h3 span {
    font-size: 32px;
    line-height: 36px;
  }

  .processStepNum {
    width: 45px;
    height: 45px;
  }

  .processStepNum span {
    font-size: 26px;
  }
}

/* process third section end */

/* process fourth section start */

.processSec4Section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.processSec4 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 80px 180px 80px;
}

.processSec4Card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: #c6a15e;
  border-radius: 25px;
  padding: 85px;
}

.processSec4Heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.processMiniHeadingLight span {
  font-family: "Plus Jakarta Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

.processSec4Heading h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #fff;
  text-align: center;
  width: 70%;
}

.processSec4Heading .walkthrough {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #ffffffb2;
}

.processTimeline {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 20px;
}

.processTimeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 1px;
  background-color: #fff;
  z-index: 0;
}

.processTimelineStep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  width: 25%;
}

.processTimelineCircle {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
}

.processTimelineCircle span {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #c6a15e;
}

.processTimelineStep h4 {
  font-family: "Albert Sans";
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #000;
  margin-top: 10px;
}

.processTimelineStep p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

@media (max-width: 768px) {
  .processSec4 {
    padding: 0px 20px 80px 20px;
  }

  .processSec4Card {
    padding: 50px 30px;
    gap: 40px;
  }

  .processSec4Heading h2,
  .processSec4Heading .walkthrough {
    font-size: 40px;
    line-height: 46px;
  }

  .processTimeline {
    flex-wrap: wrap;
    gap: 30px;
  }

  .processTimeline::before {
    display: none;
  }

  .processTimelineStep {
    width: calc((100% - 30px) / 2);
  }
}

@media (max-width: 600px) {
  .processSec4 {
    padding: 0px 15px 50px 15px;
  }

  .processSec4Card {
    padding: 40px 20px;
    gap: 30px;
    border-radius: 20px;
  }

  .processSec4Heading h2,
  .processSec4Heading .walkthrough {
    font-size: 30px;
    line-height: 36px;
  }

  .processTimeline {
    gap: 30px;
  }

  .processTimelineStep {
    width: 45%;
  }

  .processTimelineStep h4 {
    font-size: 22px;
  }
}

/* process fourth section end */

/* PROCESS PAGE CSS END*/

/* SERVICES PAGE CSS START*/

/* services second section start */

.servicesSec2Section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.servicesSec2 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 180px 80px;
  gap: 180px;
}

.serviceRowItem {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.serviceRowItemReverse {
  flex-direction: row;
}

.serviceRowImg {
  width: 50%;
  position: relative;
  display: flex;
}

.serviceRowImg > img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.serviceQuoteBtn {
  position: absolute;
  bottom: 20px;
}

.serviceRowItem .serviceQuoteBtn {
  right: 20px;
}

.serviceQuoteBtn {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
}

.serviceRowText {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.serviceRowText h3 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #113262;
}

.serviceRowText h3 span {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #11326299;
}

.serviceRowText > p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}

.serviceRowList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  margin-top: 10px;
}

.serviceRowList li {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  list-style: disc;
}

@media (max-width: 768px) {
  .servicesSec2 {
    padding: 100px 20px;
    gap: 100px;
  }

  .serviceRowItem,
  .serviceRowItemReverse {
    flex-direction: column;
    gap: 30px;
  }

  .serviceRowImg,
  .serviceRowText {
    width: 100%;
  }

  .serviceRowText h3,
  .serviceRowText h3 span {
    font-size: 44px;
    line-height: 48px;
  }

  .serviceRowItem .serviceQuoteBtn,
  .serviceRowItemReverse .serviceQuoteBtn {
    right: 15px;
    left: auto;
    bottom: 15px;
  }
}

@media (max-width: 600px) {
  .servicesSec2 {
    padding: 60px 15px;
    gap: 70px;
  }

  .serviceRowItem,
  .serviceRowItemReverse {
    gap: 25px;
  }

  .serviceRowText h3,
  .serviceRowText h3 span {
    font-size: 32px;
    line-height: 36px;
  }

  .serviceRowText > p,
  .serviceRowList li {
    font-size: 14px;
    line-height: 20px;
  }

  .serviceRowItem .serviceQuoteBtn,
  .serviceRowItemReverse .serviceQuoteBtn {
    right: 12px;
    bottom: 12px;
  }
}

/* services second section end */

/* services third section start */

.servicesSec3Section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaebef4d;
}

.servicesSec3 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 90px 80px;
  gap: 50px;
}

.servicesSec3Top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.servicesSec3Top h2 {
  width: 55%;
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #113262;
}

.servicesSec3Top .assuredSupreme {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #11326299;
}

.servicesSec3TopDesc {
  width: 32%;
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

.servicesSec3Cards {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.servicesFeatureCard {
  width: calc((100% - 90px) / 4);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  border-radius: 20px;
  padding: 35px;
}

.featureIcon {
  display: flex;
}

.featureIcon img {
  width: 60px;
  height: 60px;
}

.servicesFeatureCard h3 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #113262;
  margin-top: 10px;
}

.servicesFeatureCard p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000cc;
}

@media (max-width: 768px) {
  .servicesSec3 {
    padding: 70px 20px;
    gap: 40px;
  }

  .servicesSec3Top {
    flex-direction: column;
    gap: 25px;
  }

  .servicesSec3Top h2,
  .servicesSec3Top .assuredSupreme {
    font-size: 44px;
    line-height: 48px;
    width: 100%;
  }

  .servicesSec3TopDesc {
    width: 100%;
  }

  .servicesSec3Cards {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .servicesFeatureCard {
    width: calc((80% - 20px) / 2);
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .servicesSec3 {
    padding: 50px 15px;
    gap: 30px;
  }

  .servicesSec3Top h2,
  .servicesSec3Top .assuredSupreme {
    font-size: 32px;
    line-height: 36px;
  }

  .servicesSec3Cards {
    gap: 15px;
  }

  .servicesFeatureCard {
    width: 100%;
    padding: 25px;
    gap: 15px;
  }

  .servicesFeatureCard h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .servicesFeatureCard p {
    font-size: 14px;
    line-height: 20px;
  }
}

/* services third section end */

/* SERVICES PAGE CSS END*/

/* ABOUT PAGE CSS START*/

/* about second section start */

.aboutSec2Section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutSec2 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 180px 80px;
  gap: 60px;
}

.aboutSec2Left {
  width: 50%;
  position: relative;
  min-height: 600px;
}

.aboutImgMain {
  width: 75%;
  position: absolute;
  top: 0;
  left: 0;
}

.aboutImgMain img {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.aboutImgSecond {
  width: 60%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.aboutImgSecond img {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.aboutYearsBadge {
  position: absolute;
  top: 20%;
  right: -1%;
  width: 140px;
  height: 140px;
  background-color: #113262;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  z-index: 3;
  gap: 4px;
}

.aboutYearsBadge h3 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2px;
  color: #fff;
}

.aboutYearsBadge h3 span {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  color: #fff;
}

.aboutYearsBadge p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.aboutSec2Right {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aboutSec2Right h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #113262;
}

.aboutSec2Right .obsessedDetails {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #11326299;
}

.aboutSec2Right > p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  width: 95%;
}

@media (max-width: 768px) {
  .aboutSec2 {
    padding: 80px 20px;
    flex-direction: column;
    gap: 40px;
  }

  .aboutSec2Left,
  .aboutSec2Right {
    width: 100%;
  }

  .aboutSec2Left {
    min-height: 500px;
  }

  .aboutYearsBadge {
    width: 130px;
    height: 130px;
    padding: 30px;
    top: 25%;
  }

  .aboutYearsBadge h3,
  .aboutYearsBadge h3 span {
    font-size: 48px;
    line-height: 48px;
  }

  .aboutSec2Right h2,
  .aboutSec2Right .obsessedDetails {
    font-size: 44px;
    line-height: 48px;
  }
}

@media (max-width: 600px) {
  .aboutSec2 {
    padding: 50px 15px;
    gap: 30px;
  }

  .aboutSec2Left {
    min-height: 400px;
  }

  .aboutImgMain {
    width: 80%;
  }

  .aboutImgSecond {
    width: 65%;
  }

  .aboutYearsBadge {
    width: 100px;
    height: 100px;
    padding: 20px;
    top: 20%;
  }

  .aboutYearsBadge h3,
  .aboutYearsBadge h3 span {
    font-size: 32px;
    line-height: 32px;
  }

  .aboutYearsBadge p {
    font-size: 11px;
  }

  .aboutSec2Right h2,
  .aboutSec2Right .obsessedDetails {
    font-size: 30px;
    line-height: 36px;
  }
}

/* about second section end */

/* about fourth section start */

.aboutSec4Section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaebef4d;
}

.aboutSec4 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 120px 160px;
  gap: 40px;
}

.aboutSec4Top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.aboutSec4Heading {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aboutSec4Heading h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #113262;
  width: 70%;
}

.aboutSec4Heading .webuildBy {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #11326299;
}

.aboutSec4TopDesc {
  width: 30%;
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}

.aboutSec4Divider {
  width: 100%;
  height: 1px;
  background-color: #dadada;
}

.aboutSec4Cards {
  width: 100%;
  display: flex;
  gap: 25px;
  align-items: stretch;
}

.aboutValueCard {
  width: calc((100% - 50px) / 3);
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 25px 30px 30px;
}

.valueLabel {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #c6a15e;
}

.valueDivider {
  width: 100%;
  height: 1px;
  background-color: #d9dada;
  margin: 5px 0;
}

.aboutValueCard h3 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -1px;
  color: #113262;
}

.aboutValueCard p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000cc;
}

@media (max-width: 768px) {
  .aboutSec4 {
    padding: 80px 40px;
    gap: 30px;
  }

  .aboutSec4Top {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .aboutSec4Heading,
  .aboutSec4TopDesc {
    width: 100%;
  }

  .aboutSec4Heading h2,
  .aboutSec4Heading .webuildBy {
    font-size: 44px;
    line-height: 48px;
  }

  .aboutSec4Cards {
    flex-wrap: wrap;
    gap: 20px;
  }

  .aboutValueCard {
    width: calc((100% - 20px) / 2);
  }

  .aboutValueCard h3 {
    font-size: 26px;
    line-height: 30px;
  }

  .aboutSec4Heading h2 {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .aboutSec4 {
    padding: 50px 15px;
    gap: 25px;
  }

  .aboutSec4Heading h2,
  .aboutSec4Heading .webuildBy {
    font-size: 32px;
    line-height: 36px;
  }

  .aboutSec4Cards {
    gap: 15px;
  }

  .aboutValueCard {
    width: 100%;
    padding: 30px 25px;
  }

  .aboutValueCard h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .aboutValueCard p {
    font-size: 14px;
    line-height: 20px;
  }

  .valueLabel {
    font-size: 20px;
  }
}

/* about fourth section end */

/* about fifth section start */

.aboutSec5Section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutSec5 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 180px 160px;
  gap: 60px;
}

.aboutFaq {
  padding: 140px 80px;
}

.aboutSec5Heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.aboutSec5Heading h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #113262;
  text-align: center;
  width: 60%;
}

.aboutSec5Heading .everyProject {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2px;
  color: #11326299;
}

.aboutSec5Cards {
  width: 100%;
  display: flex;
  gap: 25px;
  align-items: stretch;
}

.aboutTeamCard {
  width: calc((100% - 50px) / 3);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #f9f9fb;
  border-radius: 20px;
  padding: 15px 15px 50px 15px;
}

.teamImg {
  width: 100%;
  display: flex;
}

.teamImg img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.aboutTeamCard h3 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -1px;
  color: #113262;
  margin-top: 15px;
  padding-left: 15px;
}

.teamRole {
  font-family: "Albert Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #c6a15e;
  padding-left: 15px;
}

.teamDivider {
  width: calc(100% - 30px);
  height: 1px;
  background-color: #d9dada;
  margin: 15px 15px;
}

.aboutTeamCard p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000cc;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .aboutFaq {
    padding: 80px 20px;
  }
  .aboutSec5 {
    padding: 100px 40px;
    gap: 40px;
  }

  .aboutSec5Heading h2,
  .aboutSec5Heading .everyProject {
    font-size: 44px;
    line-height: 48px;
  }

  .aboutSec5Cards {
    flex-wrap: wrap;
    gap: 20px;
  }

  .aboutTeamCard {
    width: calc((100% - 20px) / 2);
  }

  .aboutTeamCard h3 {
    font-size: 26px;
    line-height: 30px;
  }
}

@media (max-width: 600px) {
  .aboutFaq {
    padding: 50px 15px;
  }
  .aboutSec5 {
    padding: 60px 15px;
    gap: 30px;
  }

  .aboutSec5Heading h2,
  .aboutSec5Heading .everyProject {
    font-size: 32px;
    line-height: 36px;
    width: 100%;
  }

  .aboutSec5Cards {
    gap: 20px;
  }

  .aboutTeamCard {
    width: 100%;
    padding: 15px 15px 40px 15px;
  }

  .aboutTeamCard h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .aboutTeamCard p {
    font-size: 14px;
    line-height: 20px;
  }
}

/* about fifth section end */

/* ABOUT PAGE CSS END*/

/* GALLERY PAGE CSS START*/

/* gallery second section start */

.gallerySec2Section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallerySec2 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 180px 80px 180px 80px;
  gap: 100px;
}

.galleryFilterBar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #eaebef30;
  padding: 15px 20px;
  border-radius: 10px;
}

.galleryFilterLeft {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filterLabel {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 16px;
  color: #00000080;
}

.galleryFilterBtns {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filterBtn {
  font-family: "Albert Sans";
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #000;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filterBtn:hover {
  background-color: #f5f5f7;
}

.filterBtn.active {
  background-color: #e3c775;
  border-color: #e3c775;
  color: #1e1e1e;
}

.galleryProjectCount {
  font-family: "Albert Sans";
  color: #113262;
  font-size: 16px;
  font-weight: 600;
}

.galleryProjectCount span {
  font-family: "Albert Sans";
  color: #c6a15e;
  font-size: 16px;
  font-weight: 600;
}

.galleryGrid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  grid-auto-flow: dense;
  gap: 15px;
}

.galleryItem {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.galleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.galleryItem:hover img {
  transform: scale(1.05);
}

.galleryItem.hidden {
  display: none;
}

.galleryItem1 {
  grid-column: span 7;
  grid-row: span 4;
}

.galleryItem2 {
  grid-column: span 3;
  grid-row: span 2;
}

.galleryItem3 {
  grid-column: span 2;
  grid-row: span 2;
}

.galleryItem4 {
  grid-column: span 3;
  grid-row: span 2;
}

.galleryItem5 {
  grid-column: span 2;
  grid-row: span 2;
}

.galleryItem6 {
  grid-column: 1 / span 3;
  grid-row: span 2;
}

.galleryItem7 {
  grid-column: 1 / span 3;
  grid-row: span 2;
}

.galleryItem8 {
  grid-column: 4 / span 9;
  grid-row: span 4;
}

.galleryItem9 {
  grid-column: span 12;
  grid-row: span 4;
}

.galleryItem10 {
  grid-column: span 5;
  grid-row: span 4;
}

.galleryItem11 {
  grid-column: span 7;
  grid-row: span 4;
}

.galleryItemOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.galleryItemOverlay h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #faf7f1;
}

.galleryItemOverlay p {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #faf7f1d9;
}

.galleryGrid.uniform {
  grid-auto-rows: 220px;
}

.galleryGrid.uniform .galleryItem1,
.galleryGrid.uniform .galleryItem2,
.galleryGrid.uniform .galleryItem3,
.galleryGrid.uniform .galleryItem4,
.galleryGrid.uniform .galleryItem5,
.galleryGrid.uniform .galleryItem6,
.galleryGrid.uniform .galleryItem7,
.galleryGrid.uniform .galleryItem8,
.galleryGrid.uniform .galleryItem9,
.galleryGrid.uniform .galleryItem10,
.galleryGrid.uniform .galleryItem11 {
  grid-column: span 4;
  grid-row: span 1;
}

.galleryGrid.uniform .galleryItemOverlay h3 {
  font-size: 18px;
  line-height: 22px;
}

.galleryGrid.uniform .galleryItemOverlay {
  padding: 20px 18px;
}

@media (max-width: 768px) {
  .gallerySec2 {
    padding: 80px 20px 80px 20px;
    gap: 30px;
  }

  .galleryFilterBar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }

  .galleryGrid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 80px;
    gap: 12px;
  }

  .galleryItem1 {
    grid-column: span 6;
    grid-row: span 4;
  }

  .galleryItem2,
  .galleryItem4,
  .galleryItem6,
  .galleryItem7 {
    grid-column: span 3;
    grid-row: span 2;
  }

  .galleryItem3,
  .galleryItem5 {
    grid-column: span 3;
    grid-row: span 2;
  }

  .galleryItem8,
  .galleryItem9 {
    grid-column: span 6;
    grid-row: span 3;
  }

  .galleryItem10,
  .galleryItem11 {
    grid-column: span 3;
    grid-row: span 3;
  }

  .galleryItemOverlay {
    padding: 20px 18px;
  }

  .galleryItemOverlay h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .galleryGrid.uniform {
    grid-auto-rows: 180px;
  }

  .galleryGrid.uniform .galleryItem1,
  .galleryGrid.uniform .galleryItem2,
  .galleryGrid.uniform .galleryItem3,
  .galleryGrid.uniform .galleryItem4,
  .galleryGrid.uniform .galleryItem5,
  .galleryGrid.uniform .galleryItem6,
  .galleryGrid.uniform .galleryItem7,
  .galleryGrid.uniform .galleryItem8,
  .galleryGrid.uniform .galleryItem9,
  .galleryGrid.uniform .galleryItem10,
  .galleryGrid.uniform .galleryItem11 {
    grid-column: span 3;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .gallerySec2 {
    padding: 50px 15px 50px 15px;
  }

  .galleryGrid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 100px;
    gap: 10px;
  }

  .galleryItem1 {
    grid-column: span 2;
    grid-row: span 3;
  }

  .galleryItem2,
  .galleryItem3,
  .galleryItem4,
  .galleryItem5,
  .galleryItem6,
  .galleryItem7 {
    grid-column: span 1;
    grid-row: span 2;
  }

  .galleryItem8,
  .galleryItem9 {
    grid-column: span 2;
    grid-row: span 3;
  }

  .galleryItem10,
  .galleryItem11 {
    grid-column: span 1;
    grid-row: span 2;
  }

  .galleryItemOverlay h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .filterBtn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .galleryGrid.uniform {
    grid-auto-rows: 150px;
  }

  .galleryGrid.uniform .galleryItem1,
  .galleryGrid.uniform .galleryItem2,
  .galleryGrid.uniform .galleryItem3,
  .galleryGrid.uniform .galleryItem4,
  .galleryGrid.uniform .galleryItem5,
  .galleryGrid.uniform .galleryItem6,
  .galleryGrid.uniform .galleryItem7,
  .galleryGrid.uniform .galleryItem8,
  .galleryGrid.uniform .galleryItem9,
  .galleryGrid.uniform .galleryItem10,
  .galleryGrid.uniform .galleryItem11 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .galleryGrid.uniform .galleryItemOverlay {
    padding: 12px 14px;
  }

  .galleryGrid.uniform .galleryItemOverlay h3 {
    font-size: 14px;
    line-height: 18px;
  }

  .galleryGrid.uniform .galleryItemOverlay p {
    font-size: 9px;
    line-height: 12px;
    letter-spacing: 1px;
  }

  .galleryFilterBar {
    width: 100%;
  }
}

/* gallery second section end */

/* gallery spotlight section start */

.gallerySpotlightSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c6a15e;
}

.gallerySpotlight {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 90px 80px;
  gap: 60px;
}

.spotlightLeft {
  width: 46%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spotlightLeft .miniHeading span {
  color: #fff;
}

.spotlightLeft h2 {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2px;
  color: #fff;
}

.spotlightLeft .spotlightFaded {
  font-family: "Albert Sans";
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2px;
  color: #ffffffb2;
}

.spotlightLeft > p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.spotlightInfo {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 10px;
}

.spotlightInfoItem {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spotlightInfoLabel {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}

.spotlightInfoValue {
  font-family: "Albert Sans";
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #000;
}

.spotlightInfoDivider {
  width: 1px;
  height: 50px;
  background-color: #fff;
}

.spotlightBtn {
  margin-top: 15px;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spotlightRight {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spotlightRight img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallerySpotlight {
    padding: 70px 20px;
    flex-direction: column;
    gap: 40px;
  }

  .spotlightLeft,
  .spotlightRight {
    width: 100%;
  }

  .spotlightLeft h2,
  .spotlightLeft .spotlightFaded {
    font-size: 38px;
    line-height: 42px;
  }

  .spotlightInfo {
    gap: 20px;
  }

  .spotlightInfoValue {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .gallerySpotlight {
    padding: 50px 15px;
    gap: 30px;
  }

  .spotlightLeft h2,
  .spotlightLeft .spotlightFaded {
    font-size: 28px;
    line-height: 32px;
  }

  .spotlightInfo {
    flex-wrap: wrap;
    gap: 15px;
  }

  .spotlightInfoDivider {
    display: none;
  }

  .spotlightInfoItem {
    width: calc((100% - 30px) / 3);
  }

  .spotlightInfoLabel {
    font-size: 12px;
  }

  .spotlightInfoValue {
    font-size: 18px;
  }
}

/* gallery spotlight section end */

/* GALLERY PAGE CSS END*/
