@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "Melbourne";
  src: url("../fonts/Melbourne.ttf") format("truetype"),
    url("../fonts/Melbourne.woff") format("woff"),
    url("../fonts/Melbourne.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: "Melbourne Bold";
  src: url("../fonts/Melbourne-Bold.ttf") format("truetype"),
    url("../fonts/Melbourne-Bold.woff") format("woff"),
    url("../fonts/Melbourne-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

/* Italic */
@font-face {
  font-family: "Melbourne Italic";
  src: url("../fonts/Melbourne-Italic.ttf") format("truetype"),
    url("../fonts/Melbourne-Italic.woff") format("woff"),
    url("../fonts/Melbourne-Italic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}

/* Bold Italic */
@font-face {
  font-family: "Melbourne Bold Italic";
  src: url("../fonts/Melbourne-Bold-Italic.ttf") format("truetype"),
    url("../fonts/Melbourne-Bold-Italic.woff") format("woff"),
    url("../fonts/Melbourne-Bold-Italic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
}

/* Light */
@font-face {
  font-family: "Melbourne Light";
  src: url("../fonts/Melbourne-Light.ttf") format("truetype"),
    url("../fonts/Melbourne-Light.woff") format("woff"),
    url("../fonts/Melbourne-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

/* Light Italic */
@font-face {
  font-family: "Melbourne Light Italic";
  src: url("../fonts/Melbourne-Light-Italic.ttf") format("truetype"),
    url("../fonts/Melbourne-Light-Italic.woff") format("woff"),
    url("../fonts/Melbourne-Light-Italic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

/* Medium */
@font-face {
  font-family: "Melbourne Medium";
  src: url("../fonts/Melbourne-Medium.ttf") format("truetype"),
    url("../fonts/Melbourne-Medium.woff") format("woff"),
    url("../fonts/Melbourne-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

/* Medium Italic */
@font-face {
  font-family: "Melbourne Medium Italic";
  src: url("../fonts/Melbourne-Medium-Italic.ttf") format("truetype"),
    url("../fonts/Melbourne-Medium-Italic.woff") format("woff"),
    url("../fonts/Melbourne-Medium-Italic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}

/* Semi Bold */
@font-face {
  font-family: "Melbourne Semi Bold";
  src: url("../fonts/Melbourne-Semi-Bold.ttf") format("truetype"),
    url("../fonts/Melbourne-Semi-Bold.woff") format("woff"),
    url("../fonts/Melbourne-Semi-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

/* Semi Bold Italic */
@font-face {
  font-family: "Melbourne Semi Bold Italic";
  src: url("../fonts/Melbourne-Semi-Bold-Italic.ttf") format("truetype"),
    url("../fonts/Melbourne-Semi-Bold-Italic.woff") format("woff"),
    url("../fonts/Melbourne-Semi-Bold-Italic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
}

/* Thin */
@font-face {
  font-family: "Melbourne Thin";
  src: url("../fonts/Melbourne-Thin.ttf") format("truetype"),
    url("../fonts/Melbourne-Thin.woff") format("woff"),
    url("../fonts/Melbourne-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

/* Thin Italic */
@font-face {
  font-family: "Melbourne Thin Italic";
  src: url("../fonts/Melbourne-Thin-Italic.ttf") format("truetype"),
    url("../fonts/Melbourne-Thin-Italic.woff") format("woff"),
    url("../fonts/Melbourne-Thin-Italic.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background: #fff;
}

.navbar {
  padding: 10px 50px;
  background-color: #fff;
}

.navbar.sticky-top {
  z-index: 1050;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  /* Ensure it stays above other elements */
}

.navbar .nav-link {
  color: #272361;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.navbar-nav .nav-link.active {
  color: #ca8900 !important;
}

.navbar li {
  padding: 0px 5px;
}

.navbar .header-button {
  font-weight: 600;
  color: #fff;
  background: #3b85fb;
  border: #3b85fb;
  font-size: 14px;
  margin-top: 3px;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.default-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Close (X) Icon */
.close-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
}

.hero-section {
  position: relative;
  z-index: 1;
  background: #e1ffff;
  height: 720px;
  /* Default height */
  overflow: hidden;
}

.hero-section .image-right {
  margin-top: -20px;
  width: 285px;
  height: 270px;
}

.hero-section .hero-title {
  color: #2f2f33;
  margin-top: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 62px !important;
  font-weight: 600;
  width: 816px;
  height: 222px;
  text-align: initial;
}

.hero-section .lead {
  font-size: 20px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-top: 30px;
  text-align: initial;
  line-height: 54px;
}

.hero-section .btn {
  padding: 0.8rem 1.5rem;
}

.image-position {
  position: relative;
}

.image-position .left-image {
  margin-left: 430px !important;
  margin-top: 45px;
}

.rotate {
  animation: rotate-animation 15s ease-in-out infinite;
  position: absolute;
  top: 50%;
  left: 65%;
  margin-top: 152px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  4.17% {
    transform: rotate(-90deg);
  }

  25% {
    transform: rotate(-90deg);
  }

  29.17% {
    transform: rotate(-180deg);
  }

  50% {
    transform: rotate(-180deg);
  }

  54.17% {
    transform: rotate(-270deg);
  }

  75% {
    transform: rotate(-270deg);
  }

  79.17% {
    transform: rotate(-360deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/* Features Section */
.features {
  z-index: 2;
  background: #ffffff;
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-radius: 20px 20px 0 0;
}

.features .frame {
  margin-top: -155px;
  margin-left: 307px;
}

.features h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #3d3d3d;
}

.features .subtitles {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #4d4d4d;
  line-height: 120%;
  text-align: left;
  margin-bottom: 3rem;
}

.features .col-lg-3 {
  padding-right: 3rem;
  padding-left: 3rem;
}

.features .icon {
  font-size: 2rem;
  color: #28a745;
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0;
}

.features .icon img.image {
  width: 65px;
  height: 70px;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.features .icon:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(59, 133, 251, 0.1);
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 1;
}

.features .title {
  font-family: "Melbourne Medium", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #3d3d3d;
  margin-top: 1rem;
  text-align: left;
}

.features .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
  line-height: 120%;
  text-align: left;
}

.features .mb-5.subtitle {
  text-align: inherit;
}

.features .button {
  background: #3b85fb;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  border: none;
  color: #ffffff;
  margin-top: 1rem;
}

/*Service*/

.services .card {
  border: 2px solid #f4d099;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  margin-left: 10px;
height: 100%;
}

.services .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: 0;
  padding: 0;
}

.services .card-body {
  padding: 1.5rem;
  background: #fff;
}

.services h2 {
  font-family: "Melbourne Semi Bold", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #3d3d3d;
  margin-bottom: 1rem;
}

.services .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #4d4d4d;
  line-height: 120%;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.services .col-lg-5 {
  padding-left: 15px;
  padding-right: 15px;
}

.services .icon {
  font-size: 2rem;
  color: #28a745;
}

.services h5 {
  font-family: "Melbourne Semi Bold", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #3d3d3d;
  line-height: 120%;
  text-align: left;
  margin-bottom: 0.5rem;
}

.services p {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
  line-height: 140%;
  text-align: left;
  letter-spacing: -0.02em;
  /* Fixed letter-spacing syntax */
  margin-bottom: 0;
}

.services .button {
  background: #3b85fb;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-top: 2rem;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.services .button:hover {
  background: #2a6fd9;
  text-decoration: none;
}

/* Additional spacing and layout improvements */
.services {
  padding: 4rem 0;
}

.services .row {
  margin-bottom: 2rem;
}

.services .row:last-of-type {
  margin-bottom: 0;
}

/*Our Works*/
.works h2 {
  font-family: "Melbourne Semi Bold", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  color: #3d3d3d;
}

.works .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  margin-left: 0px;
  line-height: 120%;
  color: #4d4d4d;
  margin-bottom: 3rem;
}

.works .card {
  border: transparent;
  background: transparent;
  display: contents;
}

.works .card-img-top {
  width: 85%;
  height: 70%;
  border-radius: 10px;
}

.works h5 {
  font-family: "Melbourne Medium", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: #3d3d3d;
  letter-spacing: 4%;
  display: flex;
  text-transform: uppercase;
}

.works .card-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #4d4d4d;
  text-align: left;
  line-height: 130%;
  display: flex;
}

.works .button {
  background: #3b85fb;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-top: 1rem;
}

/*Steppers*/

.steppers h2 {
  font-family: "Melbourne Semi Bold", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #2f2f33;
  line-height: 120%;
}

.steppers .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-left: 0px;
  line-height: 140%;
  color: #4d4d4d;
  margin-bottom: 3rem;
}

.step-container {
  position: relative;
}

.step {
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
}

.step-content {
  align-items: center;
}

.step-number {
  background-color: #ffffff;
  border: 2px solid #f4d099;
  color: #3b85fb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-family: "Mulish", sans-serif;
  z-index: 2;
  line-height: 120%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-number-1 {
  background-color: white;
  border: 2px solid #f4d099;
  color: #ca8900;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 115px;
  z-index: 2;
}

.step-header {
  color: #3d3d3d;
  font-family: "Melbourne Semi Bold", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

.step-description {
  color: #4d4d4d;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 120%;
}

.step-image {
  width: 442px;
  height: 208px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.steppers .step-container .stepper-image1 {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  margin-top: 20px;
}

.steppers .step-container .stepper-image2 {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  margin-top: 12px;
}

.steppers .step-container .stepper-image3 {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  margin-top: 20px;
}

.steppers .step-container .stepper-image4 {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  margin-top: 20px;
}

.dotted-line-horizontal-1 {
  position: absolute;
  top: 12.1%;
  left: 175px;
  width: 66%;
  height: 0;
  border-top: 3px dashed #ca8900;
  z-index: 1;
}

.dotted-line-horizontal-2 {
  position: absolute;
  top: 11%;
  left: 360px;
  width: 25%;
  height: 0;
  border-top: 3px dashed #ca8900;
  z-index: 1;
}

.dotted-line-horizontal-3 {
  position: absolute;
  top: 11%;
  left: 195px;
  width: 52%;
  height: 0;
  border-top: 3px dashed #ca8900;
  z-index: 1;
}

.dotted-line-horizontal-4 {
  position: absolute;
  top: 80%;
  left: 55px;
  width: 95%;
  height: 0;
  border-top: 3px dashed #ca8900;
  z-index: 1;
}

.dotted-line-horizontal-5 {
  position: absolute;
  top: 9.5%;
  left: 368px;
  width: 8%;
  height: 0;
  border-top: 3px dashed #ca8900;
  z-index: 1;
}

.dotted-line-horizontal-6 {
  position: absolute;
  top: 9.5%;
  left: 56%;
  width: 21%;
  height: 0;
  border-top: 3px dashed #ca8900;
  z-index: 1;
}

.dotted-line-vertical-1 {
  position: absolute;
  left: 100%;
  top: 45px;
  width: 2px;
  height: 90%;
  background: repeating-linear-gradient(180deg,
      #ca8900,
      #ca8900 4px,
      transparent 4px,
      transparent 8px);
  z-index: 1;
}

.dotted-line-vertical-2 {
  position: absolute;
  left: 36px;
  top: 42.1%;
  width: 2px;
  height: 98px;
  background: repeating-linear-gradient(180deg,
      #ca8900,
      #ca8900 4px,
      transparent 4px,
      transparent 8px);
  z-index: 1;
}

.dotted-line-vertical-3 {
  position: absolute;
  left: 36%;
  top: 40px;
  width: 2px;
  height: 90px;
  background: repeating-linear-gradient(180deg,
      #ca8900,
      #ca8900 4px,
      transparent 4px,
      transparent 8px);
  z-index: 1;
}

.step-row {
  position: relative;
}

.steppers .button {
  background: #3b85fb;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-top: 1rem;
}

.action-button {
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-left: 24px;
}

.action-button button {
  background-color: #ca8900;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.action-button button:hover {
  background-color: #008d82;
}

/*Estimation Cost*/
.estimation {
  background: #ffffff;
}

.estimation h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #000;
}

.estimation .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  margin-left: 0px;
  color: #4d4d4d;
}

.estimation label {
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.estimation .container {
  background: #ffffff;
  border-radius: 10px;
  padding: 50px 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  width: 100%;
}

.package-container {
  display: flex;
  width: 75%;
  justify-content: center;
  align-items: center;
  height: 220px;
  text-align: center;
  font-weight: 800;
  font-size: 26px;
  font-family: "Montserrat", sans-serif;
  background-color: #00897b;
  color: #fff;
  position: relative;
  border-radius: 10px;
}

.package-container p {
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: flex;
  margin-top: 10px;
}

.package-slide {
  display: none;
}

.package-slide.active {
  display: block;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00897b;
  padding: 10px;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

.action-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 15px;
}

.action-container .see-more {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
  background: #ca8900 !important;
  font-weight: 600;
}

.action-container .next-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00897b;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  margin-left: 30px;
  margin-top: -10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.action-container .next-btn:hover {
  background-color: #00897b;
}

.arrow-symbol {
  font-size: 20px;
  font-weight: bold;
}

.estimation .button {
  background: #ca8900;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

/*Our Clients*/
.our-clients h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #000;
}

.our-clients .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  margin-left: 0px;
  color: #4d4d4d;
}

.card-content {
  font-size: 20px;
  color: #6c757d;
  padding: 20px;
}

.client-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.client-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.client-feedback {
  font-family: "Montserrat", sans-serif;
  background-color: transparent;
  box-shadow: none;
  font-size: 20px;
  font-weight: 700;
  border: transparent;
  height: 100%;
  width: 100%;
}

.our-clients .button {
  background: #ca8900;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

/*Contact US*/
.contact_us {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.contact_us h2 {
  font-family: "Melbourne Semi Bold", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #3d3d3d;
  line-height: 120%;
}

.contact_us .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  margin-left: 0px;
  line-height: 120%;
  color: #4d4d4d;
  margin-bottom: 3rem;
}

.contact_us .contact-bottom {
  margin-bottom: 1rem;
}

.contact_us .text-start {
  font-family: "Melbourne Semi Bold", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: center;
  color: #3d3d3d;
}

.contact_us .content {
  padding: 10px 0px;
}

.contact_us i {
  margin-right: 15px;
  font-size: 20px;
  color: #3d3d3d;
}

.contact_us span {
  font-family: "Melbourne", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #3d3d3d;
}

.contact_us.container {
  margin-top: 30px;
}

.contact_us .form-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.contact_us .form-control {
  border-radius: 6px;
  border-color: #f4d099;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact_us .card-contact {
  padding: 35px;
  background: #eaf1ff;
  border-radius: 6px;
  border: 2px solid #f4d099;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact_us .input-group select {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.contact_us .input-group input {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.contact_us .exploreButton {
  display: flex;
  justify-content: center;
}

.contact_us .exploreButton button {
  background: #3b85fb;
  padding: 12px 25px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border: #3b85fb;
  color: #fff;
}
.subscribe_btn {
    margin: 0px !important;
}
/* Footer */
footer {
  background: #3b85fb;
  color: #000;
  box-shadow: 0 4px 15px rgb(0, 0, 0, 1);
  margin-top: 80px;
}

.footerImage {
  max-width: 100%;
}

.text-gray-footer {
  color: #6c757d;
}

.footers .image {
  text-align: center;
  margin-top: 1rem;
}

.footers .pad {
  margin-top: 3rem;
}

.footers .tags {
  font-family: "Montserrat", sans-serif;
  text-align: initial;
  font-size: 16px;
  font-weight: 400;
}

.footers p {
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-align: initial;
  color: #f4d099;
}

.text-blue1 a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.text-blue1 a:hover {
  color: #f4d099;
}

.footers .copy-right {
  font-family: "Mulish", sans-serif;
  color: #fff;
}

.footers .security {
  text-decoration: none;
  color: #fff;
}

.text-black-text {
  color: #000;
  /* Black color */
}

.font-normal {
  font-weight: normal;
}

.font-semibold {
  font-weight: 600;
}

.w-48 {
  width: 48%;
}

.modal-content {
  background: #eaf1ff;
}
.modal-content .modal-title {
    font-size: 24px;
}
.exploreButton button {
  padding: 10px 20px;
  background: #fff;
  border: none;
  color: #3b85fb;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  margin-top: 20px;
}

.exploreButton button:hover {
  background-color: #3b85fb;
  border: 1px solid #fff;
}

/* Structural */
.structural-section {
  background-image: url("../images/structural-bg.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  height: 832px;
  margin-bottom: 50px;
}

.structural-section1 {
  background-image: none;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  height: 600px;
}

.structural-section .structural-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.structural-section .structural-title {
  text-align: initial;
  font-size: 60px;
  color: #545454;
  line-height: 120%;
  font-family: "Melbourne Bold", sans-serif;
}

.structural-section span {
  color: #e8a63d;
}

.structural-section p {
  text-align: justify;
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
  color: #3d3d3d;
  font-family: "Montserrat", sans-serif;
}

.structural-section .structural-content {
  position: relative;
  z-index: 2;
  margin-top: 130px;
}

.structural-dropdown h1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  font-family: "Montserrat", sans-serif;
}

.structural-dropdown p {
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -1%;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
}

.structural-dropdown .title {
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 600;
}

.structural-dropdown .dropdown {
  position: relative;
  display: inline-block;
}

.structural-dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 250px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Dropdown links */
.structural-dropdown .dropdown-content a {
  color: black;
  padding: 0px 30px;
  text-decoration: none;
  display: block ruby;
  font-size: 16px;
}

.structural-dropdown .dropdown-content a:hover {
  background-color: #3b85fb;
  color: #fff;
}

/* Show the dropdown content when the user hovers over the icon */
.structural-dropdown .dropdown:hover .dropdown-content {
  display: block;
}

.structural-dropdown .icon {
  cursor: pointer;
  font-size: 30px;
  color: #3b85fb;
  border: 1px solid #e8a63d;
  padding: 0px 5px;
  border-radius: 5px;
}

.structural .card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px auto;
  cursor: pointer;
  background: transparent;
  border: none;
}

.structural .card-img-top {
  width: 100%;
  height: 397px;
  object-fit: cover;
}

.structural .card-body {
  padding: 15px;
}

.structural .card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.structural .title {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
}

.structural .sub-title {
  font-size: 20px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.structural .button-title {
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
}

.structural .btn-success {
  background: #3b85fb;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  text-transform: uppercase;
  border: #3b85fb;
}

.structural .btn-success:hover {
  background: #3b85fb;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  text-transform: uppercase;
  border: #3b85fb;
}

.structural .card-text {
  margin-bottom: 0;
}

.structural .card-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 0%;
  font-family: "Montserrat", sans-serif;
}

.structural .card-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 4%;
}

.search-bar {
  max-width: 600px;
  margin: auto;
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

/* medium and up screens */

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
  transform: translateX(0);
}

/* Blogs */
.blog-section {
  color: #000;
  padding: 100px 0;
  text-align: center;
  position: relative;
  background: #fff;
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-content {
  position: relative;
  z-index: 2;
}

.blogs {
  background: #fff;
}

.blogs .card {
  background: transparent;
  border: none;
}

.blogs .blog-image {
  width: 100%;
  height: 100%;
}

.blogs .blog-tag {
  font-size: 14px;
  font-weight: 600;
  color: #3b85fb;
}

.blogs .blog-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  font-family: "Montserrat", sans-serif;
  line-height: 28px;
}

.blogs .blog-description {
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 24px;
  color: #475467;
}

.blogs .meta-name {
  margin: 0;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 20px;
  color: #000;
}

.blogs .meta-date {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  color: #475467;
}

.blog .card {
  background: transparent;
  border: none;
}

.blog .blog-image {
  width: 100%;
  height: 100%;
}

.blog .blog-tag {
  font-size: 14px;
  font-weight: 600;
  color: #3b85fb;
}

.blog .blog-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  font-family: "Montserrat", sans-serif;
  line-height: 28px;
}

.blog .blog-description {
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 24px;
  color: #475467;
}

.blog .meta-name {
  margin: 0;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 20px;
  color: #000;
}

.blog .meta-date {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  color: #475467;
}

.bottom-content {
  margin: 20px 0px;
}

.bottom-content h1 {
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 120%;
  color: #3d3d3d;
  letter-spacing: -1%;
}

.bottom-content p {
  font-weight: 500;
  font-size: 22px;
  color: #4d4d4d;
  font-family: "Montserrat", sans-serif;
  line-height: 120%;
  letter-spacing: 0%;
}

.bottom-content .button {
  background: #3b85fb;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  text-transform: uppercase;
  margin-top: 1rem;
}

/*Interiors */
.interiors {
  margin-top: 3rem;
  padding-right: 3rem;
  padding-left: 3rem;
}

.interiors-section {
  background-image: url("../images/interiors-bg.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  height: 632px;
  margin-bottom: 50px;
}

.interiors-section1 {
  background-image: none;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  height: 600px;
}

.interiors-section .interiors-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.interiors-section .interiors-title {
  text-align: initial;
  font-size: 60px;
  color: #545454;
  line-height: 120%;
  font-family: "Melbourne Bold", sans-serif;
}

.interiors-section span {
  color: #e8a63d;
}

.interiors-section p {
  text-align: justify;
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
  color: #3d3d3d;
  font-family: "Montserrat", sans-serif;
}

.interiors-section .interiors-content {
  position: relative;
  z-index: 2;
}

.interiors-dropdown h1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  font-family: "Montserrat", sans-serif;
}

.interiors-dropdown p {
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -1%;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
}

.interiors-dropdown .title {
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 600;
}

.interiors-dropdown .dropdown {
  position: relative;
  z-index: 9998;
}

.interiors-dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  min-width: 250px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  /* Ensure it is above all elements */
  margin-top: 10px;
}

/* Dropdown links */
.interiors-dropdown .dropdown-content a {
  color: black;
  padding: 0px 20px;
  text-decoration: none;
  display: block ruby;
  font-size: 16px;
}

.interiors-dropdown .dropdown-content a:hover {
  background-color: #3b85fb;
  color: #fff;
}

/* Show the dropdown content when the user hovers over the icon */
.interiors-dropdown .dropdown:hover .dropdown-content {
  display: block;
}

.interiors-dropdown .icon {
  cursor: pointer;
  font-size: 30px;
  color: #3b85fb;
  border: 1px solid #e8a63d;
  padding: 0px 5px;
  border-radius: 5px;
}

.interiors .card {
  width: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  cursor: pointer;
}

.interiors .card-img-top {
  width: 100%;
  height: 397px;
  object-fit: cover;
}

.interiors .card-body {
  padding: 15px;
}

.interiors .card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.interiors .card-text {
  margin-bottom: 0;
}

/* Hover effect */
.interiors .card:hover {
  background: #3b85fb;
  color: #fff;
  transform: translateY(-5px);
}

.interiors .card-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 0%;
  font-family: "Montserrat", sans-serif;
}

.interiors .card-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 4%;
}

.interiors .swiper-slide img {
  width: 100%;
  transition: transform 0.5s ease;
  min-height: 350px;
  obhect-fit: cover;
}

.interiors.swiper-slide-active img {
  transform: scale(1);
  /* Zoom effect */
  opacity: 1;
}

.interiors.swiper-container {
  overflow: hidden;
}

/*Constructions */
.constructions {
  padding-right: 8rem;
  padding-left: 8rem;
}

.constructions-section {
  background-image: url("../images/constructions-bg.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  height: 832px;
  margin-bottom: 50px;
}

.constructions-section1 {
  background-image: none;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  height: 600px;
}

.constructions-section .constructions-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.constructions-section .constructions-title {
  text-align: initial;
  font-size: 60px;
  color: #545454;
  line-height: 120%;
  font-family: "Melbourne Bold", sans-serif;
}

.constructions-section span {
  color: #e8a63d;
}

.constructions-section p {
  text-align: justify;
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
  color: #3d3d3d;
  font-family: "Montserrat", sans-serif;
}

.constructions-section .constructions-content {
  position: relative;
  z-index: 2;
  margin-top: 130px;
}

.constructions-dropdown h1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  font-family: "Montserrat", sans-serif;
}

.constructions-dropdown p {
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -1%;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
}

.constructions-dropdown .title {
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  line-height: 120%;
  font-weight: 600;
}

.constructions-dropdown .dropdown {
  position: relative;
  display: inline-block;
}

.constructions-dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 250px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Dropdown links */
.constructions-dropdown .dropdown-content a {
  color: black;
  padding: 0px 20px;
  text-decoration: none;
  display: block ruby;
  font-size: 16px;
}

.constructions-dropdown .dropdown-content a:hover {
  background-color: #3b85fb;
  color: #fff;
}

/* Show the dropdown content when the user hovers over the icon */
.constructions-dropdown .dropdown:hover .dropdown-content {
  display: block;
}

.constructions-dropdown .icon {
  cursor: pointer;
  font-size: 30px;
  color: #3b85fb;
  border: 1px solid #e8a63d;
  padding: 0px 5px;
  border-radius: 5px;
}

.constructions .card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  cursor: pointer;
}

.constructions .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.constructions .card-body {
  padding: 15px;
}

.constructions .card-title {
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 10px;
}

.constructions .card-text {
  margin-bottom: 0;
}

/* Hover effect */
.constructions .card:hover {
  background: #3b85fb;
  color: #fff;
  transform: translateY(-5px);
}

.constructions .card-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 0%;
  font-family: "Montserrat", sans-serif;
}

.constructions .card-text {
  font-size: 8px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 4%;
}

/* Constructions Details */
.constructions-details {
  margin: 50px 0px;
}

.constructions-details .card-detail {
  background: #3b85fb;
  color: #fff;
  border-radius: 20px;
}

.constructions-details .card-detail h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  border-bottom: 1px solid #d4d4d4;
  /* Add this line */
  padding-bottom: 5px;
  /* Optional: adds space between text and border */
  margin-bottom: 10px;
  /* Optional: space below the border */
}

.constructions-details .card-detail h4 {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.constructions-details .card-detail h5 {
  font-size: 16px;
  margin-top: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.constructions-details .card-detail .product-description span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 120%;
  margin-bottom: 2px;
}

.constructions-details .card-detail .product-description p {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  text-align: initial;
}

.constructions-details .card-detail .inside-card {
  background: #23517c;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 2px solid #d4d4d4;
}

.constructions-details .card-detail .inside-card img {
  height: 50px;
  width: 50px;
}

.constructions-details .contact-btn {
  background: #3b85fb !important;
  border: none;
  color: #fff;
  padding: 15px 50px;
  text-transform: uppercase;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-top: 3rem;
}

.constructions-details .card-detail .inside-card .inside-card-text {
  font-family: "Poppins", sans-serif;
  color: #d1fdfb;
}

.constructions-details .card-detail .inside-card .inside-card-data {
  margin-top: -15px;
  font-weight: 800;
  color: #d1fdfb;
  font-family: "Poppins", sans-serif;
}

/* Architectural content */

.architectural {
  padding-right: 8rem;
  padding-left: 8rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.architectural-section {
  background-image: url("../images/architectural-bg.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  height: 832px;
  margin-bottom: 50px;
}

.architectural-section1 {
  background-image: none;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  height: 600px;
}

.architectural-section .architectural-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.architectural-section .architectural-title {
  text-align: initial;
  font-size: 60px;
  color: #545454;
  line-height: 120%;
  font-family: "Melbourne Bold", sans-serif;
}

.architectural-section span {
  color: #e8a63d;
}

.architectural-section p {
  text-align: justify;
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
  color: #3d3d3d;
  font-family: "Montserrat", sans-serif;
}

.architectural-section .architectural-content {
  position: relative;
  z-index: 2;
  margin-top: 130px;
}

.architectural-dropdown h1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  font-family: "Montserrat", sans-serif;
}

.architectural-dropdown p {
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -1%;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
}

.architectural-dropdown .title {
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  line-height: 120%;
  font-weight: 600;
}

.architectural-dropdown .dropdown {
  position: relative;
  display: inline-block;
}

.architectural-dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 250px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Dropdown links */
.architectural-dropdown .dropdown-content a {
  color: black;
  padding: 0px 20px;
  text-decoration: none;
  display: block ruby;
  font-size: 16px;
}

.architectural-dropdown .dropdown-content a:hover {
  background-color: #3b85fb;
  color: #fff;
}

/* Show the dropdown content when the user hovers over the icon */
.architectural-dropdown .dropdown:hover .dropdown-content {
  display: block;
}

.architectural-dropdown .icon {
  cursor: pointer;
  font-size: 30px;
  color: #3b85fb;
  border: 1px solid #e8a63d;
  padding: 0px 5px;
  border-radius: 5px;
}

.architectural .card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  cursor: pointer;
}

.architectural .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.architectural .card-body {
  padding: 15px;
}

.architectural .card-text {
  margin-bottom: 0;
}

/* Hover effect */
.architectural .card:hover {
  background: #3b85fb;
  color: #fff;
  transform: translateY(-5px);
}

.architectural .card-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 120%;
  letter-spacing: 0%;
  font-family: "Montserrat", sans-serif;
}

.architectural .card-text {
  font-size: 8px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 4%;
}

/* Architectural Details */
.architectural-details {
  margin: 50px 0px;
  padding-right: 3rem;
  padding-left: 3rem;
}

.architectural-details .card-detail {
  background: #3b85fb;
  color: #fff;
  border-radius: 20px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 3rem;
  padding-left: 3rem;
}

.architectural-details .card-detail h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  line-height: 120%;
}

.architectural-details .card-detail h4 {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}

.architectural-details .card-detail h5 {
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  line-height: 120%;
  border-bottom: 1px solid #d4d4d4;
  /* Add this line */
  padding-bottom: 5px;
  /* Optional: adds space between text and border */
  margin-bottom: 10px;
  /* Optional: space below the border */
}

.architectural-details .card-detail .product-description span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 120%;
  margin-bottom: 2px;
}

.architectural-details .card-detail .product-description p {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  text-align: initial;
}

.architectural-details .card-detail .inside-card {
  background: #23517c;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 2px solid #d4d4d4;
}

.architectural-details .card-detail .inside-card img {
  height: 50px;
  width: 45px;
}

.architectural-details .card-detail .inside-card .inside-card-text {
  font-family: "Poppins", sans-serif;
  color: #d1fdfb;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}

.architectural-details .card-detail .inside-card .inside-card-data {
  margin-top: -15px;
  font-weight: 800;
  color: #d1fdfb;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}

.architectural-details .contact-btn {
  background: #3b85fb !important;
  border: none;
  color: #fff;
  padding: 15px 50px;
  text-transform: uppercase;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-top: 3rem;
}

/*testimonial*/
.testimonial h2 {
  font-family: "Melbourne Semi Bold", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  color: #3d3d3d;
  vertical-align: middle;
}

.testimonial .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 120%;
  font-weight: 500;
  letter-spacing: 0%;
  text-align: initial;
  color: #4d4d4d;
  margin-bottom: 3rem;
}

.testimonial .card {
  width: 80%;
  border-radius: 20px;
  border: none;
  margin-left: 30px;
}

.testimonial .card-img-top {
  border-radius: 20px;
  height: 400px;
  width: 310px;
}

.testimonial .button {
  background: #3b85fb;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-top: 1rem;
}

.mission-vision {
  margin: 60px 0px;
}

.mission-vision .content p {
  color: #3d3d3d;
  margin-top: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  text-align: initial;
  line-height: 36px;
  font-weight: 500;
}

.mission-vision .row {
  margin: 20px 0px;
  padding: 0px 50px;
}

.mission-vision .mission {
  margin-top: 80px;
}

.mission-vision .mission .mission-row {
  margin-top: -5px;
}

.about-us {
  margin-top: 80px;
}

.about .content {
  margin-top: 20px;
}

.mission-vision .vision-image {
  width: 90%;
  height: 81%;
  margin-top: 56px;
}

.mission-vision .mission-image {
  width: 80%;
  height: 81%;
  margin-left: 75px;
  margin-top: 58px;
}

.about .content p {
  color: #3d3d3d;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.about .about-us-image {
  width: 100%;
  height: 100%;
  margin-top: -12px;
  margin-left: 20px;
}

.about h1 {
  font-weight: 800;
  font-size: 80px;
  text-transform: uppercase;
  color: #3d3d3d;
  font-family: "Melbourne", sans-serif;
  margin-bottom: 25px;
  text-align: center;
}

.about span {
  color: #3b85fb;
}

.mission-vision h1 {
  font-weight: 800;
  font-size: 80px;
  text-transform: uppercase;
  color: #3d3d3d;
  font-family: "Melbourne", sans-serif;
  text-align: center;
}

.mission-vision span {
  color: #3b85fb;
}

.hiring {
  margin-bottom: 140px;
}

.hiring h1 {
  font-weight: 800;
  font-size: 80px;
  text-transform: uppercase;
  color: #3b85fb;
  font-family: "Mulish", sans-serif;
}

.hiring span {
  color: #3d3d3d;
}

.hiring .float {
  display: flex;
  justify-content: flex-end;
}

.hiring a {
  background: #3b85fb;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hiring a:hover {
  background: #3b85fb;
}

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

body {
  background-color: #ffffff;
  color: #000000;
  overflow-y: scroll;
  font-family: "Montserrat", sans-serif;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: #ffffff;
  border-radius: 100px;
}

body::-webkit-scrollbar-thumb {
  background-color: #3b85fb;
  border-radius: 100px;
}

a {
  text-decoration: none;
}

.faq-section {
  padding: 60px 0;
  background-color: #fff;
}

.faq-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #3d3d3d;
  margin-bottom: 15px;
}

.faq-section .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 120%;
  font-weight: 500;
  letter-spacing: 0%;
  color: #4d4d4d;
  margin-bottom: 50px;
}

.faq-section .accordion {
  width: 100%;
}

.faq-section .card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-section .card-body {
  padding: 0;
}

.faq-section .accordion-item {
  border: none;
  background: transparent;
}

.faq-section .accordion-button {
  background-color: #fff;
  border: none;
  position: relative;
  box-shadow: none;
}

.faq-section .accordion-button h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0px;
  color: #3d3d3d;
  margin: 0;
  text-align: left;
  width: 100%;
}

.faq-section .accordion-body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0px;
  color: #6c6c6c;
  padding: 0 30px 25px 30px;
  background-color: #fff;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #3d3d3d;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  display: none;
}

/* Custom plus/minus icons with circular background */
.accordion-button {
  position: relative;
}

.accordion-button::after {
  display: none;
}

/* Circular background for collapsed state (plus) */
.accordion-button.collapsed::before {
  content: "+";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 32px;
  background-color: #f7f7ff;
  border-radius: 20%;
  color: #3b85fb;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Blue circular background for expanded state (minus) */
.accordion-button:not(.collapsed)::before {
  content: "−";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 32px;
  background-color: #3b85fb;
  border-radius: 20%;
  color: white;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.accordion-collapse {
  border: none;
}
.privacy h1 {
  font-weight: 800;
  font-size: 80px;
  text-transform: uppercase;
  color: #3d3d3d;
  font-family: "Melbourne", sans-serif;
  margin: 25px 0px;
  text-align: center;
}
.privacy span {
  color: #3b85fb;
}
.privacy .content p {
  color: #3d3d3d;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;

}