.main-container {
  padding: 74px 0px 0px;
}

.page-banner {
  width: 100%;
  min-height: 350px;
  height: 450px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.about-page-banner {
  background-image: url("../images/page-header/about-us.jpg");
}
.services-page-banner {
  background-image: url("../images/page-header/services.jpg");
}
.contact-page-banner {
  background-image: url("../images/page-header/contact-us.jpg");
}

.page-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

.page-content {
  padding: 70px 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 24px;
}

h1.title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 46px;
  line-height: 60px;
  color: #333;
  position: relative;
  padding-bottom: 30px;
  margin: 0px;
}

.heading-seperator {
  position: relative;
}

.heading-seperator::after {
  content: "";
  left: 0;
  position: absolute;
  bottom: 10px;
  width: 37px;
  height: 4px;
  background: #6a1b9a;
}

.heading-seperator span::after {
  content: "";
  right: auto;
  left: 47px;
  position: absolute;
  bottom: 10px;
  width: 37px;
  height: 4px;
  background-color: #e0e1e3;
}

.section-content h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.section-content p {
  font-size: 16px;
  line-height: 24px;
  color: #333;
  margin-bottom: 32px;
}

p.contact-us-text {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
}

.contact-content {
  display: grid;
  grid-template-columns: 30% 60%;
  gap: 10%;
}
.contact-content i {
  color: #6a1b9a;
}

.contact-card {
  margin-bottom: 24px;
}

.contact-card h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 6px;
}

.contact-form-wrapper {
  padding: 50px;
  background-color: #6a1b9a;
  color: #fff;
  border-radius: 12px;
}

.contact-form-wrapper h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 45% 45%;
  gap: 10%;
  margin-bottom: 32px;
}

.contact-form label {
  width: 100%;
  margin: 0;
}

.contact-form .text-input {
  padding-top: 5px;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 15px;
  border: none;
  border-radius: 0px;
  font-size: 16px;
  vertical-align: middle;
  background-color: transparent;
  border: 0;
  color: #fff;
  padding-left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form button {
  background-color: #fff;
  color: #6a1b9a;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 32px;
  font-weight: 500;
}

.contact-form button:hover {
  font-weight: 700;
}

.service-card {
  border: 1px solid #e0e1e3;
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  text-align: left;
  margin-bottom: 56px;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card {
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  background-position: top right;
}

.service-1 {
  background-image: url("../images/services/BIM.png");
}

.service-2 {
  background-image: url("../images/services/Smart-Build.png");
  background-position: 104% 35px;
}

.service-3 {
  background-image: url("../images/services/CUBE-Driven.jpg");
  background-position: 104% 0px;
}

.service-4 {
  background-image: url("../images/services/Outsourced-BIM.jpg");
  background-position: 100% 0px;
}

.service-5 {
  background-image: url("../images/services/Contractual-BIM.jpg");
  background-position: 100% 0px;
}

.service-6 {
  background-image: url("../images/services/Open-BIM.jpg");
  background-position: 100% 0px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0px 0 16px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  margin: 0px 0 16px;
  max-width: 480px;
}

.service-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0px 0 12px;
}
.service-card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0 0px 20px;
  color: #555;
  font-size: 14px;
  font-weight: normal;
}
