@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
.header-wrapper {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}
.header-wrapper.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.header-wrapper .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0px;
}
.header-wrapper .logo img {
  max-width: 99px;
  height: auto;
}
.header-wrapper .main-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.header-wrapper .main-nav ul li a {
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  color: #333;
  font-weight: 500;
  font-size: 19px;
}
.header-wrapper .main-nav ul li a.contact-btn {
  border: 1px solid #9db8c3;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 18px;
}
.header-wrapper .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  width: 25px;
}
.header-wrapper .nav-toggle span {
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}
.header-wrapper .nav-toggle.active span:nth-child(1) {
  transform: rotate(40deg) translate(7.5px, 8px);
}
.header-wrapper .nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header-wrapper .nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header-wrapper .nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}
.header-wrapper .nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .header-wrapper .main-nav {
    position: fixed;
    top: 0;
    right: -90%;
    width: 90%;
    height: 100%;
    background: #fff;
    padding: 80px 20px;
    display: block;
    transition: right 0.3s ease;
    z-index: 999;
  }
  .header-wrapper .main-nav ul {
    flex-direction: column;
    gap: 26px;
    align-content: center;
    align-items: center;
    position: relative;
    left: -5%;
  }
  .header-wrapper .main-nav ul li.contact-btn-item {
    margin-top: 2rem;
  }
  .header-wrapper .main-nav.active {
    right: 0;
  }
  .header-wrapper .nav-toggle {
    display: flex;
    z-index: 1000;
  }
}

/* Tablets & small laptops  */
@media (min-width: 901px) and (max-width: 1080px) {
  .header-wrapper .header-inner {
    padding: 20px 0px;
  }
  .header-wrapper .logo img {
    max-width: 90px;
    height: auto;
  }
  .header-wrapper .main-nav ul {
    gap: 30px;
  }
  .header-wrapper .main-nav ul li a {
    font-size: 17px;
  }
  .header-wrapper .main-nav ul li a.contact-btn {
    font-size: 16px;
  }
}
/* Mobile & small tablets (≤900px) */
@media (max-width: 900px) {
  .header-wrapper .header-inner {
    padding: 20px 0px;
  }
  .header-wrapper .logo img {
    max-width: 80px;
    height: auto;
  }
}
.footer-contact-section {
  background: url(../images/footer-contact-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer-contact-section .footer-contact-wrapper .row {
  align-items: center;
}
.footer-contact-section .footer-contact-wrapper h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  line-height: 60px;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  text-transform: capitalize;
  max-width: 433px;
}
.footer-contact-section .footer-contact-wrapper .footer-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 22px;
}
.footer-contact-section .footer-contact-wrapper .footer-contact-info a {
  font-family: "DM Sans", sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #fff;
  line-height: 42px;
  letter-spacing: -0.3px;
}
.footer-contact-section .footer-contact-wrapper .footer-contact-info span {
  font-family: "DM Sans", sans-serif;
  font-size: 50px;
  font-weight: 100;
  color: #fff;
  line-height: 42px;
  opacity: 40%;
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1080px) {
  .footer-contact-section .footer-contact-wrapper .row {
    align-items: center;
    justify-content: space-between;
  }
  .footer-contact-section .footer-contact-wrapper h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 44px;
    line-height: 50px;
    font-weight: 500;
    max-width: 100%;
  }
  .footer-contact-section .footer-contact-wrapper .footer-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-left: 50px;
  }
  .footer-contact-section .footer-contact-wrapper .footer-contact-info a {
    font-family: "DM Sans", sans-serif;
    font-size: 44px;
    font-weight: 500;
    color: #fff;
    line-height: 42px;
    letter-spacing: -0.3px;
    display: block;
  }
  .footer-contact-section .footer-contact-wrapper .footer-contact-info span {
    display: none;
  }
}
/* Mobile (≤900px) */
@media (max-width: 900px) {
  .footer-contact-section .footer-contact-wrapper .row {
    align-items: center;
  }
  .footer-contact-section .footer-contact-wrapper h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 34px;
    line-height: 38px;
    font-weight: 500;
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
  .footer-contact-section .footer-contact-wrapper .footer-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 20px;
    padding-left: 0px;
  }
  .footer-contact-section .footer-contact-wrapper .footer-contact-info a {
    font-family: "DM Sans", sans-serif;
    font-size: 30px;
    line-height: 28px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.3px;
    display: block;
    width: 100%;
    text-align: center;
  }
  .footer-contact-section .footer-contact-wrapper .footer-contact-info span {
    display: none;
  }
}
.footer-section {
  background: #03171F;
  padding: 80px 0 0;
  color: #fff;
}
.footer-section .footer-wrapper .row {
  align-items: flex-start;
}
.footer-section .footer-wrapper .footer-left .footer-logo {
  max-width: 100px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.footer-section .footer-wrapper .footer-left p {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
  color: #fff;
  opacity: 80%;
  max-width: 300px;
  margin-bottom: 25px;
}
.footer-section .footer-wrapper .footer-left .social-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-section .footer-wrapper .footer-left .social-wrapper a img {
  max-width: 28px;
  width: 100%;
  height: auto;
}
.footer-section .footer-wrapper .footer-right span {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #fff;
  text-transform: uppercase;
  opacity: 40%;
  margin-bottom: 8px;
}
.footer-section .footer-wrapper .footer-right span.Location {
  margin-top: 20px;
}
.footer-section .footer-wrapper .footer-right a {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 32px;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 8px;
}
.footer-section .footer-wrapper .footer-right a:hover {
  color: #fff;
}
.footer-section .footer-wrapper .footer-right .row {
  margin-bottom: 25px;
}
.footer-section .footer-wrapper .footer-right .row:last-child {
  margin-bottom: 0;
}
.footer-section .copyright {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-section .copyright p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #FAF9FA;
  opacity: 80%;
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1080px) {
  .footer-section .footer-left p {
    font-size: 15px;
    line-height: 24px;
  }
  .footer-section .footer-right span {
    font-size: 13px;
  }
  .footer-section .footer-right a {
    font-size: 15px;
    line-height: 28px;
  }
  .footer-section .copyright p {
    font-size: 13px;
  }
}
/* Mobile (≤900px) */
@media (max-width: 900px) {
  .footer-section .footer-left {
    text-align: center;
    margin-bottom: 3rem;
  }
  .footer-section .footer-left .social-wrapper {
    display: flex;
    justify-content: center;
    gap: 18px;
  }
  .footer-section .footer-left p {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .footer-section .footer-right {
    margin-top: 20px;
  }
  .footer-section .footer-right .mob-margin-btm {
    padding-top: 2rem;
  }
  .footer-section .footer-right span {
    font-size: 12px;
  }
  .footer-section .footer-right a {
    font-size: 13px;
    line-height: 24px;
  }
  .footer-section .copyright p {
    font-size: 12px;
  }
}
.hero-section {
  /* Tablet */
  /* Mobile & small tablets (≤900px) */
}
.hero-section .hero-img {
  width: 100%;
  height: auto;
}
.hero-section .hero-wrapper {
  height: 460px;
  width: 100%;
  position: relative;
}
.hero-section .hero-wrapper h1 {
  max-width: 687.75px;
  width: 100%;
  font-size: 63px;
  line-height: 52.5px;
  font-weight: 800;
  font-family: "DM Sans", sans-serif;
  color: #0a4d68;
  letter-spacing: -0.5px;
  position: absolute;
  right: 125px;
  bottom: 70px;
  z-index: 10;
}
.hero-section .hero-wrapper img {
  position: absolute;
  right: 700px;
  bottom: 90px;
  z-index: 9;
}
@media (min-width: 901px) and (max-width: 1080px) {
  .hero-section .hero-wrapper {
    height: 380px;
  }
  .hero-section .hero-wrapper h1 {
    max-width: 700px;
    width: 100%;
    font-size: 60px;
    line-height: 52.5px;
    left: calc(100% - 740px);
    bottom: 70px;
    z-index: 10;
  }
  .hero-section .hero-wrapper img {
    right: calc(100% - 400px);
    bottom: 90px;
    max-width: 298.05px;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .hero-section .hero-wrapper {
    height: 330px;
  }
  .hero-section .hero-wrapper h1 {
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 10px;
    font-size: 50px;
    line-height: 42px;
    left: 50%;
    top: calc(165px - 30%);
    transform: translateX(-50%);
    z-index: 10;
  }
  .hero-section .hero-wrapper img {
    max-width: 90%;
    width: 100%;
    left: 30%;
    top: 10px;
    transform: translateX(-50%);
  }
}

.hero-services-section {
  background-color: #f9f9f9;
  /* Tablet */
  /* Mobile (≤900px) */
}
.hero-services-section .hero-services-wrapper .container .row {
  align-items: center;
}
.hero-services-section .hero-services-left {
  max-width: 660px;
}
.hero-services-section .hero-services-left h2 {
  font-size: 42px;
  font-family: "DM Sans", sans-serif;
  line-height: 52px;
  font-weight: 400;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  margin-bottom: 40px;
}
.hero-services-section .hero-services-left a.outline-btn {
  margin-right: 8px;
  margin-left: 1px;
}
.hero-services-section .hero-services-right {
  display: flex;
  justify-content: center !important;
  max-width: 500px;
  margin-left: auto;
}
.hero-services-section .hero-services-right .widget-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-services-section .hero-services-right .widget-item {
  flex: 1 1 calc(50% - 20px);
  padding: 0px;
  text-align: center;
}
.hero-services-section .hero-services-right .widget-item h4 {
  font-size: 64px;
  line-height: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  letter-spacing: -0.5px;
  color: #0a4d68;
  margin-bottom: 26px;
}
.hero-services-section .hero-services-right .widget-item p {
  margin: 0;
  font-size: 22px;
  line-height: auto;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #000000;
  margin-bottom: 26px;
}
@media (min-width: 901px) and (max-width: 1080px) {
  .hero-services-section .hero-services-left {
    max-width: 530px;
  }
  .hero-services-section .hero-services-left h2 {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 34px;
  }
  .hero-services-section .hero-services-left a.outline-btn {
    margin-right: 8px;
    margin-left: 0px;
  }
  .hero-services-section .hero-services-right {
    display: flex;
    justify-content: center !important;
    max-width: 500px;
    margin-left: auto;
  }
  .hero-services-section .hero-services-right .widget-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }
  .hero-services-section .hero-services-right .widget-item {
    flex: 1 1 calc(50% - 20px);
    padding: 0px;
    text-align: center;
  }
  .hero-services-section .hero-services-right .widget-item h4 {
    font-size: 50px;
    line-height: 30px;
    font-family: "DM Sans", sans-serif;
    font-weight: 200;
    letter-spacing: -0.5px;
    color: #0a4d68;
    margin-bottom: 16px;
  }
  .hero-services-section .hero-services-right .widget-item p {
    margin: 0;
    font-size: 20px;
    line-height: auto;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 26px;
  }
}
@media (max-width: 900px) {
  .hero-services-section .hero-services-left {
    max-width: 100%;
    margin-bottom: 0rem;
  }
  .hero-services-section .hero-services-left h2 {
    text-align: left;
    letter-spacing: -0.8px;
    font-size: 22px;
    line-height: 30px;
    width: 100%;
    font-weight: 500;
    margin-bottom: 26px;
  }
  .hero-services-section .hero-services-left .action-div {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
  }
  .hero-services-section .hero-services-left .action-div a.outline-btn {
    text-align: center;
    margin-right: 8px;
    margin-left: 0px;
  }
  .hero-services-section .hero-services-right {
    display: flex;
    justify-content: center !important;
    max-width: 500px;
    margin-left: auto;
    margin-bottom: 2rem;
  }
  .hero-services-section .hero-services-right .widget-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 8px;
  }
  .hero-services-section .hero-services-right .widget-item {
    flex: 1 1 calc(50% - 8px);
    padding: 0px;
    text-align: center;
  }
  .hero-services-section .hero-services-right .widget-item h4 {
    font-size: 40px;
    line-height: 30px;
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #0a4d68;
    margin-bottom: 12px;
  }
  .hero-services-section .hero-services-right .widget-item p {
    font-size: 16px;
    line-height: 20px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: #000000;
    margin-bottom: 26px;
  }
}

.our-services-section {
  background: #0a4d68;
}
.our-services-section .our-services-wrapper {
  max-width: 1071px;
  margin-left: auto;
  margin-right: auto;
}
.our-services-section .our-services-wrapper .section-title {
  font-size: 60px;
  line-height: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #fff;
  margin-bottom: 50px;
}
.our-services-section .our-services-wrapper .service-card {
  display: flex;
  gap: 26px;
  margin-bottom: 40px;
}
.our-services-section .our-services-wrapper .service-card .service-card-img img {
  width: 100%;
  max-width: 420px;
  height: auto;
}
.our-services-section .our-services-wrapper .service-card .service-card-content {
  max-width: 611px;
  color: #ffffff;
}
.our-services-section .our-services-wrapper .service-card .service-card-content h2 {
  font-size: 44px;
  line-height: 46px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 16px;
}
.our-services-section .our-services-wrapper .service-card .service-card-content p {
  font-size: 20px;
  line-height: 27px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0px;
  color: #fff;
  margin-bottom: 16px;
}
.our-services-section .our-services-wrapper .service-card .service-card-content a {
  font-size: 20px;
  line-height: 27px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0px;
  color: #009ad8;
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1080px) {
  .our-services-section {
    background: #0a4d68;
  }
  .our-services-section .our-services-wrapper {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .our-services-section .our-services-wrapper .section-title {
    font-size: 54px;
    line-height: 46px;
    font-weight: 500;
    margin-bottom: 40px;
  }
  .our-services-section .our-services-wrapper .service-card {
    display: flex;
    gap: 0px 26px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .our-services-section .our-services-wrapper .service-card .service-card-img img {
    width: 100%;
    max-width: 420px;
    height: auto;
  }
  .our-services-section .our-services-wrapper .service-card .service-card-content {
    max-width: 540px;
    color: #ffffff;
  }
  .our-services-section .our-services-wrapper .service-card .service-card-content h2 {
    font-size: 42px;
    line-height: 40px;
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .our-services-section .our-services-wrapper .service-card .service-card-content p {
    font-size: 21px;
    line-height: 27px;
    font-weight: 300;
    margin-bottom: 14px;
  }
  .our-services-section .our-services-wrapper .service-card .service-card-content a {
    font-size: 18px;
    line-height: 27px;
    font-weight: 300;
  }
}
/* Mobile  */
@media (max-width: 900px) {
  .our-services-section {
    background: #0a4d68;
  }
  .our-services-section .our-services-wrapper {
    max-width: 100%;
    margin-left: 15px;
    margin-right: 15px;
  }
  .our-services-section .our-services-wrapper .section-title {
    font-size: 40px;
    line-height: 46px;
    font-weight: 500;
    margin-bottom: 28px;
  }
  .our-services-section .our-services-wrapper .service-card {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .our-services-section .our-services-wrapper .service-card .service-card-img img {
    width: 100%;
    max-width: 420px;
    height: auto;
    margin-bottom: 14px;
  }
  .our-services-section .our-services-wrapper .service-card .service-card-content {
    max-width: 100%;
    color: #ffffff;
  }
  .our-services-section .our-services-wrapper .service-card .service-card-content h2 {
    font-size: 30px;
    line-height: 32px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 8px;
  }
  .our-services-section .our-services-wrapper .service-card .service-card-content p {
    font-size: 17px;
    line-height: 22px;
    font-weight: 300;
    margin-bottom: 14px;
  }
  .our-services-section .our-services-wrapper .service-card .service-card-content a {
    font-size: 18px;
    line-height: 27px;
    font-weight: 300;
  }
}
.our-process-section {
  background: #fff;
  color: #000000;
}
.our-process-section .our-process-wrapper .section-title-wrapper .section-title {
  font-size: 60px;
  text-align: center;
  line-height: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #0a4d68;
  margin-bottom: 27px;
}
.our-process-section .our-process-wrapper .section-title-wrapper .section-content {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 62px;
}
.our-process-section .our-process-wrapper .section-title-wrapper .section-content span {
  font-size: 22px;
  line-height: 24px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #000;
}
.our-process-section .our-process-wrapper .row {
  gap: 30px 0;
}
.our-process-section .our-process-wrapper .our-process-card {
  padding: 20px;
  color: #000;
}
.our-process-section .our-process-wrapper .our-process-card img {
  max-width: 60px;
  width: 100%;
  height: auto;
  margin-bottom: 29px;
}
.our-process-section .our-process-wrapper .our-process-card h4 {
  font-size: 28px;
  line-height: 32px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #000;
  opacity: 80%;
  margin-bottom: 9px;
}
.our-process-section .our-process-wrapper .our-process-card p {
  font-size: 18px;
  line-height: 26px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  letter-spacing: -0.2px;
  color: #000;
  opacity: 80%;
  max-width: 287px;
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1080px) {
  .our-process-section {
    background: #fff;
    color: #000000;
  }
  .our-process-section .our-process-wrapper .row {
    gap: 0px;
  }
  .our-process-section .our-process-wrapper .our-process-card {
    padding: 0px 14px 0px 0px;
    color: #000;
  }
  .our-process-section .our-process-wrapper .our-process-card img {
    max-width: 60px;
    width: 100%;
    height: auto;
    margin-bottom: 29px;
  }
  .our-process-section .our-process-wrapper .our-process-card h4 {
    font-size: 26px;
    line-height: 32px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    letter-spacing: -0.2px;
    color: #000;
    opacity: 80%;
    margin-bottom: 9px;
  }
  .our-process-section .our-process-wrapper .our-process-card p {
    font-size: 16px;
    line-height: 20px;
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 0px;
    color: #000;
    opacity: 80%;
    max-width: 287px;
  }
}
/* Mobile  */
@media (max-width: 900px) {
  .our-process-section .our-process-wrapper .section-title-wrapper .section-title {
    font-size: 50px;
    text-align: left;
    margin-bottom: 20px;
  }
  .our-process-section .our-process-wrapper .section-title-wrapper .section-content {
    display: inline-block;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
  }
  .our-process-section .our-process-wrapper .section-title-wrapper .section-content img {
    margin: 6px;
  }
  .our-process-section .our-process-wrapper .section-title-wrapper .section-content span {
    font-size: 18px;
    line-height: 20px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    letter-spacing: -0.2px;
    color: #000;
  }
  .our-process-section .our-process-wrapper .row {
    gap: 16px 0;
  }
  .our-process-section .our-process-wrapper .our-process-card {
    padding: 5px 10px;
    color: #000;
  }
  .our-process-section .our-process-wrapper .our-process-card img {
    max-width: 60px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .our-process-section .our-process-wrapper .our-process-card h4 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 500;
  }
  .our-process-section .our-process-wrapper .our-process-card p {
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
    max-width: 100%;
  }
}
.our-works-section {
  background: #f1f2f9;
}
.our-works-section .our-works-wrapper {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.our-works-section .our-works-wrapper .section-title-wrapper .section-title {
  font-size: 60px;
  text-align: center;
  line-height: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #0a4d68;
  margin-bottom: 27px;
}
.our-works-section .our-works-wrapper .section-title-wrapper .section-content {
  text-align: center;
  margin-bottom: 56px;
}
.our-works-section .our-works-wrapper .section-title-wrapper .section-content p {
  font-size: 22px;
  line-height: 24px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #000;
}
.our-works-section .our-works-wrapper .our-works-card {
  margin-bottom: 50px;
}
.our-works-section .our-works-wrapper .our-works-card img {
  max-width: 505px;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
.our-works-section .our-works-wrapper .our-works-card .our-works-card-content {
  color: #000;
}
.our-works-section .our-works-wrapper .our-works-card .our-works-card-content h4 {
  font-size: 24px;
  line-height: 32px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 1px;
  color: #000;
}
.our-works-section .our-works-wrapper .our-works-card .our-works-card-content span {
  font-size: 18px;
  letter-spacing: -0.3px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: #000000;
  opacity: 40%;
}
.our-works-section .our-works-wrapper .our-works-card .our-works-card-content p {
  font-size: 18px;
  line-height: 26px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  margin-top: 12px;
  color: #000;
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1080px) {
  .our-works-section {
    background: #f1f2f9;
  }
  .our-works-section .our-works-wrapper {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }
  .our-works-section .our-works-wrapper .section-title-wrapper .section-title {
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
  }
  .our-works-section .our-works-wrapper .section-title-wrapper .section-content {
    text-align: center;
    margin-bottom: 40px;
  }
  .our-works-section .our-works-wrapper .section-title-wrapper .section-content p {
    font-size: 20px;
    line-height: 24px;
  }
  .our-works-section .our-works-wrapper .our-works-card {
    margin-bottom: 50px;
  }
  .our-works-section .our-works-wrapper .our-works-card img {
    max-width: 505px;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
  .our-works-section .our-works-wrapper .our-works-card .our-works-card-content {
    color: #000;
  }
  .our-works-section .our-works-wrapper .our-works-card .our-works-card-content h4 {
    font-size: 22px;
    line-height: 32px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin-bottom: 1px;
    color: #000;
  }
  .our-works-section .our-works-wrapper .our-works-card .our-works-card-content span {
    font-size: 18px;
    letter-spacing: -0.3px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: #000000;
    opacity: 40%;
  }
  .our-works-section .our-works-wrapper .our-works-card .our-works-card-content p {
    font-size: 18px;
    line-height: 26px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    margin-top: 12px;
    opacity: 80%;
    color: #000;
  }
}
/* Mobile  */
@media (max-width: 900px) {
  .our-works-section {
    background: #f1f2f9;
  }
  .our-works-section .our-works-wrapper {
    max-width: 100%;
    margin-left: 15px;
    margin-right: 15px;
  }
  .our-works-section .our-works-wrapper .section-title-wrapper .section-title {
    font-size: 50px;
    text-align: left;
    margin-bottom: 16px;
  }
  .our-works-section .our-works-wrapper .section-title-wrapper .section-content {
    text-align: left;
    margin-bottom: 40px;
  }
  .our-works-section .our-works-wrapper .section-title-wrapper .section-content p {
    font-size: 19px;
    line-height: 18px;
  }
  .our-works-section .our-works-wrapper .our-works-card {
    margin-bottom: 50px;
  }
  .our-works-section .our-works-wrapper .our-works-card img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
  .our-works-section .our-works-wrapper .our-works-card .our-works-card-content h4 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 6px;
  }
  .our-works-section .our-works-wrapper .our-works-card .our-works-card-content span {
    font-size: 16px;
  }
  .our-works-section .our-works-wrapper .our-works-card .our-works-card-content p {
    font-size: 17px;
    line-height: 22px;
  }
}
.clients-section {
  background: #ffffff;
}
.clients-section .clients-wrapper .clients-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients-section .clients-wrapper .clients-slider .item img {
  height: 126px;
  width: auto;
  display: block;
}

.news-section {
  background: #f7f7f7;
}
.news-section .news-wrapper .section-title-wrapper .section-title {
  font-size: 60px;
  line-height: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #0a4d68;
  margin-bottom: 50px;
}
.news-section .news-wrapper .articles-slider .item .news-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.news-section .news-wrapper .articles-slider .item .news-card .news-card-content .news-card-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}
.news-section .news-wrapper .articles-slider .item .news-card .news-card-content .news-card-info span {
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #000;
  opacity: 40%;
}
.news-section .news-wrapper .articles-slider .item .news-card .news-card-content a.news-title {
  display: block;
  font-size: 19px;
  line-height: 26px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-section .news-wrapper .articles-slider .item .news-card .news-card-content a.news-title:hover {
  color: #000;
  text-decoration: underline;
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1080px) {
  .news-section {
    background: #f7f7f7;
  }
  .news-section .news-wrapper .section-title-wrapper .section-title {
    font-size: 50px;
    line-height: 45px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: #0a4d68;
    margin-bottom: 40px;
  }
  .news-section .news-wrapper .articles-slider .item .news-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .news-section .news-wrapper .articles-slider .item .news-card .news-card-content .news-card-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
  }
  .news-section .news-wrapper .articles-slider .item .news-card .news-card-content .news-card-info span {
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    letter-spacing: -0.1px;
    color: #000;
    opacity: 40%;
  }
  .news-section .news-wrapper .articles-slider .item .news-card .news-card-content a.news-title {
    display: block;
    font-size: 17px;
    line-height: 24px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .news-section .news-wrapper .articles-slider .item .news-card .news-card-content a.news-title:hover {
    color: #000;
    text-decoration: underline;
  }
}
/* Mobile  */
@media (max-width: 900px) {
  .news-section {
    background: #f7f7f7 !important;
  }
  .news-section .news-wrapper .section-title-wrapper .section-title {
    font-size: 40px;
    text-align: left;
    margin-bottom: 16px;
    margin-bottom: 24px;
  }
  .news-section .news-wrapper .articles-slider {
    margin-bottom: 19px;
  }
}
.about-page-content-section .about-page-left {
  height: 800px;
}
.about-page-content-section .about-page-left img {
  position: sticky;
  top: 100px;
  width: 100%;
}
.about-page-content-section .about-page-right {
  padding: 1rem 2rem;
  max-width: 793px;
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1080px) {
  .about-page-content-section .about-page-left {
    height: 870px;
  }
  .about-page-content-section .about-page-left img {
    position: sticky;
    top: 100px;
    width: 100%;
  }
  .about-page-content-section .about-page-right {
    padding: 1rem 2rem;
    max-width: 793px;
  }
}
/* Mobile (≤900px) */
@media (max-width: 900px) {
  .about-page-content-section .about-page-left {
    height: auto;
    padding: 0px;
    margin: 0px;
  }
  .about-page-content-section .about-page-left img {
    position: relative;
    width: 100%;
    padding: 0px;
    margin: 0px;
  }
  .about-page-content-section .about-page-right {
    padding: 16px 4px;
    max-width: 793px;
  }
}
.services-page-section {
  background-color: #fff;
  color: #000;
}
.services-page-section .services-page-wrapper .service-card .service-card-content h2, .services-page-section .services-page-wrapper .service-card .service-card-content p {
  color: #000 !important;
}
.services-page-section .services-page-wrapper .service-card .service-card-content a {
  color: #000 !important;
}

/* Mobile (≤900px) */
@media (max-width: 900px) {
  .services-page-section {
    background-color: #fff;
    color: #000;
  }
  .services-page-section .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .services-page-section .services-page-wrapper .service-card .service-card-content h2, .services-page-section .services-page-wrapper .service-card .service-card-content p {
    color: #000 !important;
  }
  .services-page-section .services-page-wrapper .service-card .service-card-content a {
    color: #000 !important;
  }
}
.projects-page-section {
  background: #fff !important;
}
.projects-page-section .projects-page-wrapper {
  max-width: 100% !important;
}
.projects-page-section .projects-page-wrapper .our-works-card .our-works-card-content h4 {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.3px;
  margin-bottom: 0px;
}
.projects-page-section .projects-page-wrapper .our-works-card .our-works-card-content span {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.2px;
}

/* Mobile (≤900px) */
@media (max-width: 900px) {
  .projects-page-section {
    background: #fff !important;
  }
  .projects-page-section .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .projects-page-section .projects-page-wrapper {
    max-width: 100% !important;
    margin: 0px !important;
  }
  .projects-page-section .projects-page-wrapper .our-works-card {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 26px;
  }
  .projects-page-section .projects-page-wrapper .our-works-card .our-works-card-content img {
    width: 100%;
    height: auto;
  }
  .projects-page-section .projects-page-wrapper .our-works-card .our-works-card-content h4 {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.3px;
    margin-bottom: 0px;
  }
  .projects-page-section .projects-page-wrapper .our-works-card .our-works-card-content span {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.2px;
  }
}
.news-page-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.news-page-section .news-title-wrapper {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.news-page-section .news-title-wrapper h3 {
  font-family: "DM Sans", sans-serif;
  border: none;
  font-size: 30px;
  line-height: 42px;
  letter-spacing: -0.2px;
  font-weight: 400;
  color: #0a4d68;
}
.news-page-section .news-title-wrapper .news-filter-wrapper span {
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  margin-right: 8px;
  color: #555;
}
.news-page-section .news-title-wrapper .news-filter-wrapper .filter-news {
  font-family: "DM Sans", sans-serif;
  border: none;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 4px;
  padding: 6px 10px;
  background: #fff;
  cursor: pointer;
}
.news-page-section .news-title-wrapper .news-filter-wrapper .filter-news::-moz-selection {
  border: none !important;
  box-shadow: none !important;
}
.news-page-section .news-title-wrapper .news-filter-wrapper .filter-news:focus, .news-page-section .news-title-wrapper .news-filter-wrapper .filter-news::selection {
  border: none !important;
  box-shadow: none !important;
}
.news-page-section .news-page-wrapper .news-card {
  margin-bottom: 30px;
}
.news-page-section .news-page-wrapper .news-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.news-page-section .news-page-wrapper .news-card .news-card-content .news-card-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}
.news-page-section .news-page-wrapper .news-card .news-card-content .news-card-info span {
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #000;
  opacity: 0.6;
}
.news-page-section .news-page-wrapper .news-card .news-card-content a.news-title {
  display: block;
  font-size: 19px;
  line-height: 26px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-page-section .news-page-wrapper .news-card .news-card-content a.news-title:hover {
  color: #0a4d68;
  text-decoration: underline;
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1080px) {
  .news-page-section .news-title-wrapper h1 {
    font-size: 26px;
    line-height: 36px;
  }
  .news-page-section .news-page-wrapper .news-card img {
    margin-bottom: 10px;
  }
  .news-page-section .news-page-wrapper .news-card .news-card-content .news-card-info {
    margin-bottom: 8px;
  }
  .news-page-section .news-page-wrapper .news-card .news-card-content .news-card-info span {
    font-size: 15px;
  }
  .news-page-section .news-page-wrapper .news-card .news-card-content a.news-title {
    font-size: 17px;
    line-height: 24px;
  }
}
/* Mobile */
@media (max-width: 900px) {
  .news-page-section .news-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-page-section .news-title-wrapper .news-filter-wrapper {
    width: 100%;
  }
  .news-page-section .news-title-wrapper .news-filter-wrapper .filter-news {
    border: 1px solid #90B8DD;
    display: inline-flexbox;
    width: 100%;
  }
  .news-page-section .news-title-wrapper h1 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 8px;
  }
  .news-page-section .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .news-page-section .news-page-wrapper .news-card {
    margin-bottom: 26px;
  }
  .news-page-section .news-page-wrapper .news-card .news-card-content .news-card-info {
    margin-bottom: 6px;
  }
  .news-page-section .news-page-wrapper .news-card .news-card-content a.news-title {
    font-size: 16px;
    line-height: 22px;
  }
}
.news-details-page-section .breadcrumb {
  margin-bottom: 34px;
  background: transparent;
  padding: 0;
}
.news-details-page-section .breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: #000000;
}
.news-details-page-section .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: #000000;
}
.news-details-page-section .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.news-details-page-section .breadcrumb .breadcrumb-item.active {
  color: #000;
  opacity: 40%;
}
.news-details-page-section .news-img {
  margin-bottom: 20px;
}
.news-details-page-section .news-img img {
  width: 100%;
  height: auto;
}
.news-details-page-section .news-details-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 23px;
}
.news-details-page-section .news-details-info span {
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  color: #000;
  opacity: 40%;
}
.news-details-page-section .news-details-title {
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 26px;
  color: #0A4D68;
}
.news-details-page-section p {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  line-height: 31px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #000;
  margin-bottom: 20px;
}
.news-details-page-section .news-details-sub-title {
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.2px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 14px;
  color: #0a4d68;
}
.news-details-page-section ul {
  margin-bottom: 20px;
  padding-left: 18px;
}
.news-details-page-section ul li {
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  line-height: 31px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #000;
}

/* Related News Section */
.news-details-section {
  background-color: #fff;
  padding: 1.5rem;
}
.news-details-section .section-title-wrapper {
  margin-bottom: 20px;
}
.news-details-section .section-title-wrapper .section-info {
  font-size: 24px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  color: #0a4d68;
  margin-bottom: 18px;
}
.news-details-section .news-card img {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
.news-details-section .news-card .news-card-content .news-card-info {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.news-details-section .news-card .news-card-content .news-card-info span {
  font-size: 14px;
  color: #555;
}
.news-details-section .news-card .news-card-content .news-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  text-decoration: none;
}
.news-details-section .news-card .news-card-content .news-title:hover {
  color: #0a4d68;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 900px) {
  .news-details-page-section .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .news-details-page-section .breadcrumb {
    margin-bottom: 24px;
    background: transparent;
    padding: 0;
  }
  .news-details-page-section .breadcrumb .breadcrumb-item {
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: #000000;
  }
  .news-details-page-section .breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: #000000;
  }
  .news-details-page-section .breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
  }
  .news-details-page-section .breadcrumb .breadcrumb-item.active {
    color: #000;
    opacity: 40%;
  }
  .news-details-page-section .news-img {
    margin-bottom: 20px;
  }
  .news-details-page-section .news-img img {
    width: 100%;
    height: auto;
  }
  .news-details-page-section .news-details-info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
  }
  .news-details-page-section .news-details-info span {
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    color: #000;
    letter-spacing: -0.2px;
    opacity: 50%;
  }
  .news-details-page-section .news-details-title {
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    line-height: 31px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #0A4D68;
  }
  .news-details-page-section p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: #000;
    margin-bottom: 20px;
  }
  .news-details-page-section .news-details-sub-title {
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.2px;
    font-weight: 500;
    margin-top: 26px;
    margin-bottom: 10px;
    color: #0a4d68;
  }
  .news-details-page-section ul {
    margin-bottom: 20px;
    padding-left: 16px;
  }
  .news-details-page-section ul li {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: #000;
    margin-bottom: 10px;
  }
  /* Related News Section */
  .news-details-section {
    background-color: #fff;
    padding: 0 !important;
  }
  .news-details-section .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .news-details-section .section-title-wrapper {
    margin-bottom: 20px;
  }
  .news-details-section .section-title-wrapper .section-info {
    font-size: 24px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    color: #0a4d68;
    margin-bottom: 18px;
  }
  .news-details-section .news-card img {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
  .news-details-section .news-card .news-card-content .news-card-info {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
  }
  .news-details-section .news-card .news-card-content .news-card-info span {
    font-size: 14px;
    color: #555;
  }
  .news-details-section .news-card .news-card-content .news-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
    text-decoration: none;
  }
  .news-details-section .news-card .news-card-content .news-title:hover {
    color: #0a4d68;
    text-decoration: underline;
  }
}
.contact-page-wrapper h1 {
  max-width: 834px !important;
  width: 100%;
}

.contact-page-content-section h3 {
  font-family: "DM Sans", sans-serif;
  border: none;
  font-size: 30px;
  line-height: 42px;
  letter-spacing: -0.2px;
  font-weight: 400;
  color: #0a4d68;
  margin-bottom: 1.6rem;
}
.contact-page-content-section form {
  background: #fff;
}
.contact-page-content-section form .form-label {
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 6px;
  color: #333;
}
.contact-page-content-section form .form-control {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  max-width: 509px;
  padding: 10px 14px;
  border: 1px solid #90B8DD;
  border-radius: 6px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.contact-page-content-section form .form-control::-moz-placeholder {
  color: #999;
  font-size: 15px;
}
.contact-page-content-section form .form-control::placeholder {
  color: #999;
  font-size: 15px;
}
.contact-page-content-section form .form-control:focus {
  border-color: #0a4d68;
  background-color: #fff;
  box-shadow: none !important;
}
.contact-page-content-section form textarea.form-control {
  resize: none;
  min-height: 120px;
}
.contact-page-content-section form .contact-btn-wrapper {
  max-width: 509px;
}
.contact-page-content-section form .contact-btn-wrapper .contact-btn {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  padding: 12px 40px;
  border-radius: 100px;
  background-color: #0a4d68;
  border: none;
  transition: all 0.3s ease;
}
.contact-page-content-section form .contact-btn-wrapper .contact-btn:hover {
  background-color: rgb(6.4210526316, 49.4421052632, 66.7789473684);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 900px) {
  .contact-page-content-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .contact-page-content-section form {
    padding: 0px 0px;
    margin-bottom: 3rem;
  }
  .contact-page-content-section form .form-label {
    font-size: 14px;
  }
  .contact-page-content-section form .form-control {
    font-size: 14px;
  }
  .contact-page-content-section form .btn {
    font-size: 15px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  .contact-page-content-section iframe {
    height: 400px;
    margin-top: 20px;
    margin: 0 !important;
    padding: 0 !important;
  }
}

.project-details-page-section {
  /* Project Info */
  /* Project Gallery */
  /* Content */
}
.project-details-page-section .breadcrumb {
  margin-bottom: 34px;
  background: transparent;
  padding: 0;
}
.project-details-page-section .breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: #000000;
}
.project-details-page-section .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: #000000;
}
.project-details-page-section .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.project-details-page-section .breadcrumb .breadcrumb-item.active {
  color: #000;
  opacity: 40%;
}
.project-details-page-section .project-details-title {
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #0A4D68;
  margin-bottom: 3rem;
}
.project-details-page-section .project-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 20px 60px;
  margin-bottom: 28px;
}
.project-details-page-section .project-info .pr-left span,
.project-details-page-section .project-info .pr-right span {
  display: block;
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: -0.1px;
  color: #000;
  margin-bottom: 4px;
  opacity: 80%;
}
.project-details-page-section .project-info .pr-left p,
.project-details-page-section .project-info .pr-right p {
  font-size: 22px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  color: #0A4D68;
  letter-spacing: -0.2px;
  margin-bottom: 0px;
}
.project-details-page-section .project-gallery {
  margin-bottom: 28px;
}
.project-details-page-section .project-gallery img {
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}
.project-details-page-section p {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  line-height: 31px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #000;
  margin-bottom: 20px;
}
.project-details-page-section h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: #0a4d68;
  margin-top: 34px;
  margin-bottom: 18px;
}

/* Mobile */
@media (max-width: 900px) {
  .project-details-page-section .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .project-details-page-section .breadcrumb {
    margin-bottom: 20px;
  }
  .project-details-page-section .breadcrumb .breadcrumb-item {
    font-size: 13px;
  }
  .project-details-page-section .project-details-title {
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    line-height: 31px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #0A4D68;
  }
  .project-details-page-section .project-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px 0px;
    margin-bottom: 28px;
  }
  .project-details-page-section .project-info .pr-left span,
  .project-details-page-section .project-info .pr-right span {
    display: block;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    letter-spacing: -0.1px;
    color: #000;
    margin-bottom: 0px;
    opacity: 80%;
  }
  .project-details-page-section .project-info .pr-left p,
  .project-details-page-section .project-info .pr-right p {
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    color: #0A4D68;
    letter-spacing: -0.2px;
    margin-bottom: 0px;
  }
  .project-details-page-section .project-gallery {
    margin-bottom: 20px;
  }
  .project-details-page-section .project-gallery img {
    margin-bottom: 12px;
  }
  .project-details-page-section p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 16px;
  }
  .project-details-page-section h3 {
    font-size: 20px;
    line-height: 28px;
    margin-top: 24px;
    margin-bottom: 12px;
  }
}
.quote-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.quote-popup {
  position: fixed;
  top: 0;
  right: -100%;
  width: 40%;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
  padding: 80px 70px;
  z-index: 1000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}
.quote-popup .quote-popup-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.quote-popup .quote-popup-header h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.3px;
  font-weight: 500;
  color: #0a4d68;
  margin-bottom: 13px !important;
}
.quote-popup .quote-popup-header p {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #0a4d68;
  opacity: 60%;
  max-width: 300px;
  margin-bottom: 16px;
}
.quote-popup .quote-popup-header .close-quote {
  position: absolute;
  top: 3rem;
  right: 3rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.quote-popup .quote-form {
  flex: 1;
  overflow-y: auto;
}
.quote-popup .quote-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.quote-popup .quote-form .form-group label {
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 6px;
  color: #333;
}
.quote-popup .quote-form .form-group input,
.quote-popup .quote-form .form-group select,
.quote-popup .quote-form .form-group textarea {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  max-width: 509px;
  padding: 10px 14px;
  border: 1px solid #90B8DD;
  border-radius: 6px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.quote-popup .quote-form .form-group input::-moz-placeholder, .quote-popup .quote-form .form-group select::-moz-placeholder, .quote-popup .quote-form .form-group textarea::-moz-placeholder {
  color: #999;
  font-size: 15px;
}
.quote-popup .quote-form .form-group input::placeholder,
.quote-popup .quote-form .form-group select::placeholder,
.quote-popup .quote-form .form-group textarea::placeholder {
  color: #999;
  font-size: 15px;
}
.quote-popup .quote-form .form-group input:focus,
.quote-popup .quote-form .form-group select:focus,
.quote-popup .quote-form .form-group textarea:focus {
  border-color: #0a4d68;
  background-color: #fff;
  box-shadow: none !important;
  outline: none;
}
.quote-popup .quote-form .form-group textarea {
  resize: none;
  min-height: 120px;
}
.quote-popup .quote-form .enquiry-submit-btn {
  max-width: 509px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  border-radius: 100px;
  padding: 12px 40px;
  background-color: #0a4d68;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.quote-popup .quote-form .enquiry-submit-btn:hover {
  background-color: rgb(6.4210526316, 49.4421052632, 66.7789473684);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quote-popup.active {
  right: 0;
}

.quote-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .quote-popup {
    width: 96%;
    padding: 2rem 1.5rem;
  }
  .quote-popup .quote-popup-header h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .quote-popup .quote-popup-header p {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .quote-popup .quote-popup-header .close-quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .quote-popup .quote-form .form-group label {
    font-size: 14px;
  }
  .quote-popup .quote-form .form-group input,
  .quote-popup .quote-form .form-group select,
  .quote-popup .quote-form .form-group textarea {
    font-size: 14px;
  }
  .quote-popup .quote-form .enquiry-submit-btn {
    font-size: 15px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}
.request-quote-btn {
  position: fixed;
  right: 0px;
  top: 200%;
  cursor: pointer;
  z-index: 999;
  text-decoration: none;
  display: inline-block;
  transition: top 0.3s ease; /* smooth transition */
}

/* When scrolled */
.request-quote-btn.sticky {
  top: 120px; /* stick to top */
}

@media (max-width: 900px) {
  .request-quote-btn a img {
    width: 35px;
  }
  .request-quote-btn.sticky {
    top: 70px; /* stick to top */
  }
}
.faqs-accordion {
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.faqs-section {
  padding: 60px 0;
  margin: 0;
}
.faqs-section .accordion {
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.faqs-section .accordion .accordion-item {
  border: 1px solid #d6e4f0;
  margin-bottom: -1px;
  background: #fff;
}
.faqs-section .accordion .accordion-item .accordion-header .accordion-button {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #0a4d68;
  background-color: #f9fcfe;
  padding: 16px 20px;
  border: none;
  box-shadow: none !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.faqs-section .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none !important;
  border: 1px solid #0a4d68;
}
.faqs-section .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #0a4d68;
}
.faqs-section .accordion .accordion-item .accordion-header .accordion-button::after {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem;
  content: "";
}
.faqs-section .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.faqs-section .accordion .accordion-item .accordion-body {
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.6;
  font-family: "DM Sans", sans-serif;
  color: #333;
  border-top: 1px solid #d6e4f0;
  background: #fff;
}

/* ✅ Mobile (≤900px) */
@media (max-width: 900px) {
  .faqs-section {
    padding: 40px 0;
  }
  .faqs-section .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 15px;
    padding: 12px;
  }
  .faqs-section .accordion .accordion-item .accordion-body {
    font-size: 14px;
    padding: 12px;
    line-height: 1.5;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  background-color: #fff;
  font-family: "DM Sans", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.outline-btn {
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 19px;
  line-height: 27px;
  border: 1px solid #9DB8C3;
  padding: 10px 16px;
  border-radius: 100px;
  transition: all 0.3s ease, transform 0.2s ease;
}
.outline-btn:hover {
  color: #fff;
  background-color: #0A4D68;
  border: 1px solid #0A4D68;
}

.service-card-content-btn {
  font-size: 17px;
  line-height: 27px;
  font-weight: 300;
  color: #fff;
}

@media (max-width: 900px) {
  .outline-btn {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    border: 1px solid #9DB8C3;
    padding: 9px 16px;
    border-radius: 100px;
    transition: all 0.3s ease, transform 0.2s ease;
  }
  .outline-btn:hover {
    color: #fff;
    background-color: #0A4D68;
    border: 1px solid #0A4D68;
  }
}
.margin-90px {
  padding: 90px 0;
}

.margin-bottom-90px {
  padding-bottom: 90px;
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1080px) {
  .margin-90px {
    padding: 64px 0;
  }
  .margin-bottom-90px {
    padding-bottom: 64px;
  }
}
/* Mobile */
@media (max-width: 900px) {
  .margin-90px {
    padding: 60px 0;
  }
  .margin-bottom-90px {
    padding-bottom: 60px;
  }
}
/* Large desktops (≥1080px) */
@media (min-width: 1089px) {
  .container {
    margin-left: 80px;
    margin-right: 80px;
    max-width: calc(100% - 160px); /* 80px left + 80px right */
  }
}
/* Tablets & small laptops (901px–1079px) */
@media (min-width: 901px) and (max-width: 1080px) {
  .container {
    margin-left: 40px;
    margin-right: 40px;
    max-width: calc(100% - 80px); /* 40px left + 40px right */
  }
}
/* Mobile & small tablets (≤900px) */
@media (max-width: 900px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
    max-width: calc(100% - 40px); /* 20px left + 20px right */
  }
}
/* Extra small mobile only (≤576px) */
@media (max-width: 576px) {
  .container {
    margin-left: 15px;
    margin-right: 15px;
    max-width: calc(100% - 30px); /* 15px left + 15px right */
  }
}
/* Default: show desktop, hide mobile */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Mobile-only: show mobile, hide desktop */
@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
.pagination .page-link.square {
  border-radius: 4px !important; /* removes rounded corners */
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  border: 1px solid #E9E9E9;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 16px;
}
.pagination .page-link.square.active, .pagination .page-link.square:hover {
  background: #0A4D68;
  color: #fff;
  border: 1px solid #0A4D68;
  box-shadow: none !important;
}
.pagination .page-link.square:focus {
  box-shadow: none !important;
}

.inner-page-section {
  height: 360px;
  background-color: #F1F2F9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-page-section .inner-page-wrapper span {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 30px;
  line-height: 42px;
  letter-spacing: -0.2px;
  text-align: center;
  margin-bottom: 6px;
}
.inner-page-section .inner-page-wrapper h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  color: #0A4D68;
  max-width: 800px;
  margin: 0 auto;
}

.h3 {
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -0.2px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

.para {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.1px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

ul {
  margin-bottom: 20px;
  padding-left: 18px;
}
ul li {
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  line-height: 31px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #000;
}

/* Mobile (≤900px) */
@media (max-width: 900px) {
  .h3 {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.2px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
  }
  .para {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.1px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
  }
}
/* Mobile (≤900px) */
@media (max-width: 900px) {
  ul {
    margin-bottom: 20px;
    padding-left: 16px;
  }
  ul li {
    font-family: "DM Sans", sans-serif;
    font-size: 15px !important;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: #000;
    margin-bottom: 10px;
  }
  .inner-page-section {
    height: 240px;
    background-color: #F1F2F9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .inner-page-section .inner-page-wrapper span {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.2px;
    text-align: center;
    margin-bottom: 12px;
  }
  .inner-page-section .inner-page-wrapper h1 {
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px !important;
  }
}/*# sourceMappingURL=main.css.map */