@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --color-default: #2b180d;
  --color-primary: #ff8f04;
  --color-secondary: #6ac96a;
  --color-light-grey: #f7f9fc;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

h1,
h2,
h3,
#about.content-section h1,
#mission.content-section h1 {
  font-family: "Rubik", sans-serif;
}

a,
h1,
h2,
h3 {
  text-decoration: none;
}

.carousel-item h2 {
  font-size: 48px;
  line-height: 60px;
}

.carousel-item h2 span {
  color: var(--color-primary);
}
.carousel-item p {
  color: #ccc;
  font-size: 17px;
  line-height: 29px;
  margin-bottom: 20px;
}

.fullscreen-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.fullscreen-bg:before {
  content: "";
  background: rgba(25, 25, 25, 0.5);
  position: absolute;
  inset: 0;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.overlay-text button,
.overlay-text hr {
  align-self: center;
  margin-top: 1em;
}

@media (max-width: 768px) {
  .overlay-text h1 {
    font-size: 2em;
  }
  .overlay-text p {
    font-size: 1em;
  }
  .overlay-text button {
    padding: 0.5em 1em;
  }
}

.btn-get-started {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

.btn-get-started:hover {
  opacity: 0.8;
  color: #fff;
}

.btn-text {
  font-family: "Rubik", sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 25px;
  padding: 16px 35px;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--color-primary);
  border-radius: 5px;
}

.content-section {
  padding: 40px;
  background-color: #fff;
  color: #333;
  font-family: "Rubik", sans-serif;
}

.content-section h1 {
  font-size: 24px;
  color: #333;
}

.content-section h1 span,
#about.content-section h1 span,
#mission.content-section h1 span {
  color: var(--color-primary);
}

.content-section h1::after {
  content: "";
  width: 90px;
  height: 3px;
  margin: 20px 0;
  background: var(--color-primary);
  display: block;
  transition: all 500ms ease;
}

.signature-image {
  max-width: 200px;
  margin: 20px 0;
}

#mission.content-section {
  background-color: #0f0f16;
  color: #eeeeee;
}

#mission.content-section h1,
#mission.content-section p {
  color: #eeeeee;
}

.image-section {
  background: url("/assets/images/nathan-waters-j7q-Z9DV3zw-unsplash.jpg")
    no-repeat center center;
  background-size: cover;
  min-height: 400px;
}

.image-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* services */

.services-list .service-item .icon i {
  font-size: 32px;
  margin-right: 20px;
  color: var(--color-primary);
}
.services-list .service-item .title {
  font-family: "Rubik";
  font-size: 18px;
  color: #041230;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0px;
}
.services-list .service-item .title a {
  color: black;
}
.services-list .service-item .title a:hover {
  opacity: 1;
}
.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

.footer {
  font-size: 12px;
  font-family: "Rubik";
}
.footer .footer-legal {
  background: #0f0f16;
  padding: 30px 0;
}

.footer .footer-legal .copyright {
  color: #eeeeee;
}

.contact {
  background-color: #333; /* Adjust to match your site's colors */
  color: #eeeeee;
  background-image: url("/assets/images/contact-bg.jpeg"); /* Link to your background image */
  background-size: cover; /* Cover the entire area */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  position: relative; /* Ensure the pseudo-element is positioned relative to the footer */
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(17, 17, 25, 0.9); /* Black overlay with 50% opacity */
  z-index: 0;
}

/* Style footer content to ensure it's on top of the overlay */
.contact * {
  position: relative;
  z-index: 1;
}

.contact h5 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.contact .underline {
  width: 50px;
  height: 3px;
  background-color: #ff8f04; /* Adjust to match the underline color in your design */
  margin-bottom: 20px;
}

.contact p {
  font-size: 14px;
  line-height: 1.7;
}

.contact-links {
  list-style: none;
  padding: 0;
}

.contact-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.7;
}

.contact-links li a:hover {
  color: #ff8f04; /* Adjust to match your hover color */
}

@media (max-width: 767px) {
  .contact .col-md-4 {
    margin-bottom: 30px;
  }
}

.equal-size {
  width: 100%; /* make image responsive, fill the container width */
  height: 300px; 
  /* fixed height, you can adjust this value */
  object-fit: cover; 
  /* this will cover the area, can crop the image if it does not have the same aspect ratio */
}

.card-border {
  border: 1px solid #dee2e6; /* Bootstrap's default border color */

  border-radius: 0.25rem; /* Bootstrap's default border radius */
}

.lighter-image {
  filter: brightness(250%); 
}