/* Importing Bebas Neue font from Google Fonts API */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

/* Defining font-face for Muli Regular */
@font-face {
  font-family: muli-regular;
  src: url(../fonts-and-links/Muli/static/Muli-Regular.ttf);
}

/* Defining font-face for Muli Bold */
@font-face {
  font-family: muli-bold;
  src: url(../fonts-and-links/Muli/static/Muli-Bold.ttf);
  font-weight: bold;
}

/* Defining font-face for Muli Extra Bold */
@font-face {
  font-family: muli-extrabold;
  src: url(../fonts-and-links/Muli/static/Muli-ExtraBold.ttf);
  font-weight: bolder;
}

/* Defining font-face for Muli Semi Bold */
@font-face {
  font-family: muli-semibold;
  src: url(../fonts-and-links/Muli/static/Muli-SemiBold.ttf);
  font-weight: 500;
}

/* Defining custom CSS variables for color values */
:root {
  --primary-color: #172631;
  --secondary-color: #b2a897;
  --tertiary-color: #b29575;
  --light-color: #ffffff;
}

/* Applying Muli Regular as the font-family for the entire body of the webpage */
html {
  scroll-padding-top: 70px;
}

body {
  font-family: muli-regular;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

::selection {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.navbar-toggler:focus {
  color: var(--primary-color) !important;
}

.top_header h1,
.top_header a {
  font-size: 13px;
  font-family: muli-extrabold;
  margin: 0;
  background-color: var(--primary-color);
  color: var(--light-color);
  text-align: center;
  padding: 20px 0px;
  text-transform: uppercase;
  text-decoration: none;
}

#navbar_top {
  background-color: var(--light-color);
}

#navbar_top ul li a .active {
  color: var(--secondary-color);
}

#navbar_top ul li a {
  font-size: 13.5px;
  font-family: muli-extrabold;
  color: var(--primary-color);
  text-transform: uppercase;
}

#navbar_top ul li a:hover {
  color: var(--secondary-color);
}

.hero {
  background-image: url(../images/fe-home-hero-header.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero .flexbox {
  flex: 1;
}

.hero .flexbox h1 {
  color: var(--light-color);
  font-size: 57px;
  font-family: "Bebas Neue", cursive;
}

.hero .flexbox p {
  color: var(--light-color);
  font-size: 18px;
  font-family: muli-regular;
}

.primary_button {
  padding: 10px 25px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: var(--secondary-color);
  color: var(--light-color);
  font-size: 13.5px;
  font-family: muli-extrabold;
  border: 2px solid var(--secondary-color);
}

.primary_button:hover {
  transition: all 0.3s ease;
  font-size: 13.5px;
  font-family: muli-extrabold;
  border: 2px solid var(--primary-color);
  background-color: var(--light-color);
  color: var(--primary-color);
}

.primary_button:active {
  /* transform: scale(0.98); */
  box-shadow: 3px 2px 22px 1px var(--secondary-color);
}

.underhero {
  background-image: url(../images/fe-home-banner-upload-plans.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0px;
}

.underhero h1 {
  font-family: muli-extrabold;
  font-size: 20px;
  color: var(--light-color);
  margin: 0;
}

.secondary_button {
  padding: 10px 25px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--light-color);
  font-size: 13.5px;
  font-family: muli-extrabold;
  border: 2px solid var(--primary-color);
}

.secondary_button:hover {
  transition: all 0.3s ease;
  font-size: 13.5px;
  font-family: muli-extrabold;
  border: 2px solid var(--primary-color);
  background-color: var(--light-color);
  color: var(--primary-color);
}

.secondary_button:active {
  /* transform: scale(0.98); */
  box-shadow: 3px 2px 22px 1px var(--primary-color);
}

.ptb-100 {
  padding: 100px 0px;
}

.our_vision h1 {
  font-family: "Bebas Neue", cursive;
  color: var(--primary-color);
  font-size: 46px;
}

.our_vision p {
  font-family: muli-regular;
  font-size: 18px;
}

.about {
  background-image: url(../images/fe-about-us-bkgd.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 12px;
}

.about .about_box {
  background-color: var(--secondary-color);
  background-image: linear-gradient(var(--secondary-color), var(--light-color));
  text-align: left;
  padding: 100px 20px;
}

.about .about_box h1 {
  font-family: "Bebas Neue", cursive;
  color: var(--primary-color);
  font-size: 46px;
}

.about .about_box p {
  font-family: muli-regular;
  font-size: 18px;
}

.portfolio {
  text-align: center;
}
.portfolio-card {
  background-color: var(--secondary-color);
  background-image: linear-gradient(var(--secondary-color), var(--light-color));
  padding: 30px;
  border-radius: 6px;
  height: 100%;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.portfolio h1 {
  font-family: "Bebas Neue", cursive;
  color: var(--primary-color);
  font-size: 46px;
}

.portfolio h2 {
  margin-top: 0px;
  font-family: muli-extrabold;
  color: var(--primary-color);
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 700;
}

.portfolio p {
  font-family: muli-regular;
  font-size: 16px;
  text-align: center;
}

.portfolio img {
  width: 50%;
}

.ptb-50 {
  padding: 50px 0px;
}

.contact {
  background-color: var(--primary-color);
}

.contact .contact_area h1 {
  color: var(--light-color);
  font-family: muli-extrabold;
  font-size: 18px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contact .contact_area h2 {
  color: var(--light-color);
  font-family: muli-extrabold;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact .contact_area p,
.contact .contact_area a {
  color: var(--light-color);
  font-family: muli-regular;
  font-size: 16px;
  text-decoration: none;
  margin: 0;
  display: block;
  margin-bottom: 5px;
}

.contact .contact_area a:hover {
  color: var(--tertiary-color);
}

.contact .quote_area h1 {
  color: var(--light-color);
  font-family: muli-extrabold;
  font-size: 18px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contact .quote_area .form-control {
  background-color: var(--primary-color);
  border-radius: 0 !important;
  color: var(--light-color);
}

.contact .custom-file-upload {
  background-color: var(--primary-color);
  border-radius: 0 !important;
  color: var(--light-color);
  border: 2px solid var(--light-color);
  font-family: muli-extrabold;
  padding: 10px;
  font-size: 16px;
}

.contact .quote_area ::placeholder {
  color: var(--light-color) !important;
  font-family: muli-regular;
  font-size: 16px;
  opacity: 0.5;
}

.contact .form-control:focus {
  box-shadow: 0 0 0 0.25rem #8f7b5af6 !important;
}

.contact input[type="file" i] {
  color: var(--light-color);
}

.contact .custom-file-upload {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.contact .custom-file-upload input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.contact .pdftext {
  color: var(--light-color);
  font-family: muli-regular;
  font-size: 13px;
}

.contact .pdftext span {
  font-weight: 600;
}

.contact .pdftext a {
  color: var(--light-color);
  text-decoration: none;
}

.contact .pdftext a:hover {
  color: var(--tertiary-color);
  text-decoration: underline;
}

.contact .error-message {
  font-family: muli-regular;
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

footer {
  background-color: var(--primary-color);
}

footer .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

footer .social-icons a img {
  width: 30px;
}

footer h1 {
  color: var(--light-color);
  font-family: muli-extrabold;
  font-size: 18px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

footer .cta {
  margin: 0;
  color: var(--light-color) !important;
  font-family: muli-regular;
  font-size: 14px;
  padding: 30px 0 50px 0;
}

.main-hero {
  background-image: url(../images/fe-portfolio-hero-header.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
  text-align: center;
}

.main-hero .main-hero-heading {
  color: var(--light-color);
  font-size: 57px;
  font-family: "Bebas Neue", cursive;
}

.gallery {
  /* margin-top: -100px; */
  padding: 70px 0;
}

.gallery img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery .project-label h1 {
  color: var(--primary-color);
  font-size: 50px;
  font-family: "Bebas Neue", cursive;
}

.video {
  background-color: #b2937531;
}

.video video {
  max-width: 100%;
  height: auto;
}

#scroll {
  position: fixed;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: var(--tertiary-color);
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}

#scroll:hover {
  background-color: var(--secondary-color);
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.thanks {
  background-color: var(--primary-color);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks .wrapper {
  max-width: 800px;
  margin: auto;
}

.thanks .wrapper h1 {
  color: var(--light-color);
  font-size: 100px;
  font-family: "Bebas Neue", cursive;
}

.thanks .wrapper p {
  color: var(--light-color);
  font-size: 20px;
  font-family: muli-regular;
}
.our_north_star h1 {
  font-family: "Bebas Neue", cursive;
  color: var(--primary-color);
  font-size: 46px;
}

.our_north_star p {
  font-family: muli-regular;
  font-size: 18px;
}
.how_we_work h1 {
  font-family: "Bebas Neue", cursive;
  color: var(--primary-color);
  font-size: 46px;
}
.our_north_star p {
  font-family: muli-regular, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.how_we_work h1 {
  font-family: "Bebas Neue", cursive;
  color: var(--primary-color);
  font-size: 46px;
  letter-spacing: 1px;
}

.service-card {
  padding: 35px 10px;
  height: 100%;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.section-padding {
  padding: 70px 0;
}

.section-bg {
  background: #f8f8f8;
}

.service-card h3 {
  font-family: "Bebas Neue", cursive;
  color: var(--primary-color);
  font-size: 30px;
  margin-bottom: 5px;
}
.service-card h2 {
  font-family: "Bebas Neue", cursive;
  color: rgb(90, 90, 90);
  font-size: 20px;
  margin-bottom: 15px;
  font-style: italic;
}

.support-list li {
  margin-bottom: 0px;
  font-size: 18px;
}
@media only screen and (max-width: 667px) {
  .sm_mtop {
    margin-top: 30px;
  }

  .navbar-brand img {
    width: 200px;
  }

  .underhero h1 {
    margin-bottom: 30px !important;
  }

  .swiper-container .swiper-button-prev {
    display: none !important;
  }

  .swiper-container .swiper-button-next {
    display: none !important;
  }

  .thanks .wrapper h1 {
    font-size: 50px;
  }

  .about .about_box {
    padding: 50px 12px;
  }
}
