/* @import url("https:/../fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"); */
/* @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"); */

:root {
  --navbar-height-md: 90px;
  --navbar-height-sm: 70px;

  --pri-text-dark: #2e3135;
  --pri-text-yellow: #fecb00;
  --pri-text-light: #fefefb;
  --pri-text-orange: #ffae00;

  --secon-text-dark: #2c2c2c;

  --pri-bg-dark: #2e3135;
  --pri-bg-yellow: #fecb00;
  --pri-bg-light: #fefefb;
  --pri-bg-orange: #ffae00;

  --secon-bg-dark: #7a7a7a;
}

/* ROBOTO FONT */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Black.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-BlackItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
/* ROBOTO FONT */

/* OSWALD FONT */
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/static/Oswald-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/* OSWALD FONT */

/* OPEN SANS FONT */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/Open_Sans/static/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

.palette {
  /* PRIMARY COLORS */
  color: #2e3135; /* Primary background, text */
  color: #fff; /* Text, backgrounds, icons */
  color: #facc15; /* Primary action buttons, highlights */
  color: #ffd700; /* Primary action buttons, highlights */

  /* SECONDARY COLORS */
  color: #333333; /* Text, secondary elements */
  color: #ffbe00; /* Buttons, calls to action, accents */
  color: #4682b4; /* Accents, secondary buttons, borders */

  /* ACCENT COLORS */
  color: #a9a9a9; /* Secondary background, footer, borders */
  color: #ffeb3b; /* Hover effects, highlights */
  color: #4a4a4a; /* Text, backgrounds, industrial feel */

  color: #533f00;
}

.pri-text-dark {
  color: var(--pri-text-dark);
}
.pri-text-yellow {
  color: var(--pri-text-yellow);
}
.secondary-text-orange {
  color: var(--pri-text-orange);
}
.acc-text-lightgray {
  color: #a9a9a9;
}
.acc-textgray {
  color: #4a4a4a;
}
.acc-text-yellow {
  color: #ffeb3b;
}

.pri-bg-dark {
  background-color: var(--pri-bg-dark);
}
.pri-bg-yellow {
  background-color: var(--pri-bg-yellow);
}
.secondary-bg-orange {
  background-color: var(--pri-bg-orange);
}
.acc-bg-lightgray {
  background-color: #a9a9a9;
}
.acc-bg-gray {
  background-color: #4a4a4a;
}
.acc-bg-yellow {
  background-color: #ffeb3b;
}

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

/* ROBOTO CLASS */
.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}
/* ROBOTO CLASS */

/* OSWALD CLASS */
.oswald-extralight {
  font-family: "Oswald";
  font-weight: 200;
  font-style: normal;
}

.oswald-light {
  font-family: "Oswald";
  font-weight: 300;
  font-style: normal;
}

.oswald-regular {
  font-family: "Oswald";
  font-weight: 400;
  font-style: normal;
}

.oswald-medium {
  font-family: "Oswald";
  font-weight: 500;
  font-style: normal;
}

.oswald-semibold {
  font-family: "Oswald";
  font-weight: 600;
  font-style: normal;
}

.oswald-bold {
  font-family: "Oswald";
  font-weight: 700;
  font-style: normal;
}
/* OSWALD CLASS */

/* OPEN SANS CLASS */
.open_sans-regular {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
}
/* OPEN SANS CLASS */

* {
  font-family: "Open Sans";
  /* font-family: "Roboto"; */
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  margin-bottom: 0;
}

body {
  /* background-color: #e3e9f7; */
  /* background-color: white; */
  /* overflow-y: hidden; */
  /* padding-top: var(--navbar-height-md); */
  scroll-behavior: smooth;
  height: 100%;
}

/* Style for the button */
.scroll-to-top-btn {
  background-color: var(--pri-bg-yellow);
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: none;
  padding: 9px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  color: var(--pri-text-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

img {
  width: 100%;
}

header {
  width: 100%;
  height: var(--navbar-height-md);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  margin: 0 auto;
  top: 0;
  z-index: 1001;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease; /* Smooth transition for background and shadow */
}

header.scrolled {
  background-color: white;
  box-shadow: 0 3px 30px rgba(90, 90, 90, 0.2); /* Optional: add a subtle shadow to the navbar when scrolled */
  position: fixed;
}

header.not-scrolled {
  background-color: transparent;
  box-shadow: none;
  position: fixed;
}

header.not-scrolled-not-home {
  position: sticky;
  box-shadow: 0 1px 1px rgba(90, 90, 90, 0.2);
}

header nav ul li a.a-scrolled {
  color: var(--pri-text-dark);
}

header nav ul li a.a-scrolled:not(.active):hover {
  color: var(--pri-text-yellow);
}

.logo {
  width: 200px;
}

.next-img {
  position: relative;
  width: 100%;
}

nav {
  margin-top: 17px;
}

nav .logo {
  display: none;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li a {
  color: white;
  /* color: #212529; */
  display: block;
  margin: 0 2px;
  padding: 8px 18px;
  transition: 0.2s;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

/* nav ul li:last-child > a {
  padding: 8px 0px; Different padding for the last item
} */

nav ul li a:not(.active):hover {
  /* color: #ffbe00; */
  color: var(--pri-text-yellow);
}

nav ul li a.active {
  background-color: var(--pri-bg-yellow);
  color: var(--pri-text-dark);
  /* font-weight: 500; */
}

.hamburger {
  display: none;
  height: fit-content;
  cursor: pointer;
  transition: 0.2s;
  padding: 20px 20px;
  margin-top: -4px;
  padding: 27px 20px;
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.hamburger div {
  width: 30px;
  height: 2.5px;
  margin: 6px 0;
  border-radius: 5px;
}
.hamburger-scrolled {
  background-color: var(--pri-bg-dark);
}
.hamburger-not-scrolled {
  background-color: white;
}
/* HEADER */
/* NAVIGATION BAR */

/* Hero Section Styles */
.hero {
  /* background: var(--pri-bg-dark); */
  background: transparent;
  color: white; /* White text */
  height: 100svh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
  user-select: none;
}

.hero-not-home {
  background: transparent;
  color: white; /* White text */
  /* height: calc(100svh - var(--navbar-height-md)); */
  height: calc(88svh - var(--navbar-height-md));
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
  user-select: none;
}

.hero-content {
  z-index: 2;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
} */

h1 {
  font-size: 63px;
}

#hero-btn {
  color: var(--pri-text-dark);
  background-color: var(--pri-text-yellow);
  padding: 12px 35px;
}

#hero-btn:hover {
  background-color: var(--pri-text-orange);
  /* color: #ffbe00;  */
}
/* Hero Section Styles */

#about {
  background-color: white;
  width: 100%;
}

.lower-section {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  width: 100%;
  max-width: 1220px;
  padding: 100px 51px;
  /* height: calc(100svh - var(--navbar-height-md)); */
  height: 100%;
  gap: 50px;
}

.section-text {
  color: var(--pri-text-yellow);
  font-size: 20px;
  font-family: "Open Sans";
  font-weight: 800;
}

.why-choose-us-heading {
  color: black;
  font-size: 60px;
  font-family: "Oswald";
  font-weight: 400;
  /* font-family: "Roboto", sans-serif;
  font-weight: 900; */
  font-style: normal;
  line-height: 1;
}

.section-heading {
  color: black;
  font-size: 60px;
  font-family: "Oswald";
  font-weight: 700;
  /* font-family: "Roboto", sans-serif;
  font-weight: 900; */
  font-style: normal;
  line-height: 1;
}

.section-body {
  font-size: 17px;
  color: var(--secon-text-dark);
  margin-top: 20px;
  line-height: 1.6;
}

#services {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: calc(100vh - var(--navbar-height-md)); */
  height: 100%;
}

.services-cards {
  width: 100%;
  max-width: 1220px;
  padding: 100px 51px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
}

.services-card {
  border: 4px solid white;
  padding: 20px 22px;
  transition:
    border-color 0.3s ease,
    transform 0.8s ease;
}

.services-card:hover {
  border: 4px solid var(--pri-bg-yellow);
  transform: scale(1.05); /* Example of another transition property */
}

.service-img {
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-card-title {
  font-size: 24px;
}

.home-projects-wrapper {
  max-width: 1220px;
  padding: 100px 51px;
}

/* ABOUT SECTION */
/* ABOUT SECTION */

.second-section-about {
  display: grid;
  grid-template-columns: 1fr minmax(0, 300px);
  width: 100%;
  max-width: 1220px;
  padding: 100px 51px;
  height: 100%;
  gap: 50px;
}

.second-section-about-images {
  display: flex;
  flex-direction: column;
}

.third-section-about {
  display: grid;
  grid-template-columns: minmax(0, 300px) 1fr;
  width: 100%;
  max-width: 1220px;
  padding: 100px 51px;
  height: 100%;
  gap: 50px;
}

.mission-list {
  font-size: 17px;
  color: var(--secon-text-dark);
  margin-top: 20px;
  line-height: 1.6;
}

.certifications-section {
  width: 100%;
  max-width: 1220px;
  padding: 80px 51px;
  height: 100%;
  gap: 50px;
}

.iso-certs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.iso-cert {
  @apply px-5 py-4 hover:shadow-md rounded-lg border-gray-100 border-2;
  padding: 16px 20px;
  border-radius: 0.5rem /* 8px */;
  border: 2px solid #f3f4f6;
}

.iso-cert:hover {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.projects-home-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
  padding: 60px 0;
  gap: 40px;
  width: 100%;
  max-width: 1220px;
  height: 100%;
  display: grid;
  margin: auto;
}
.projects-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
  padding: 60px 51px;
  gap: 40px;
  width: 100%;
  max-width: 1220px;
  height: 100%;
  display: grid;
  margin: auto;
}
.project-wrapper {
  padding: 100px 51px;
  width: 100%;
  max-width: 1220px;
  height: 100%;
  margin: auto;
}

.project-wrapper img {
  height: 550px;
}

/* The initial opacity and scaling state before hover */
.group .bg-black {
  opacity: 0.4; /* Initial opacity value */
  transition:
    opacity 0.2s ease,
    transform 0.15s ease; /* Define the transition for both opacity and transform */
}

/* The hover state for the group container */
.group:hover .bg-black {
  opacity: 0.5; /* Change opacity on hover */
}

/* Hover effect for scaling the image */
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05); /* Scale the image on hover */
}

/* Transition for scaling */
.group .group-hover\:scale-105 {
  transition: transform 0.15s ease-in-out; /* Transition for scaling */
}

#projects > p {
  padding-top: 5rem;
}

.rental-services {
  width: 100%;
  max-width: 1220px;
  padding: 80px 51px;
  height: 100%;
  gap: 50px;
}

.rental-services-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3rem;
  gap: 1.25rem;
}

.rental-service {
  flex-grow: 1;
  flex-basis: 16rem;
}

.project-title {
  margin-top: 2rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-align: center;
}

.project-content {
  margin-top: 2.5rem;
  font-size: 17px;
  line-height: 1.75rem;
  color: var(--secon-text-dark);
}

.contact-section {
  padding: 80px 51px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  width: 100%;
  max-width: 1220px;
  height: 100%;
  gap: 20px;
}

.info-text {
  width: 18rem;
}

.company-details {
  gap: 1rem;
  width: 100%;
}

.contact-form-wrapper {
  padding: 2.5rem 3.5rem;
}

.contact-us-heading {
  line-height: 1.25;
  padding-top: 5rem;
}

.mission-list {
  list-style-type: disc;
  margin-left: 40px;
  margin-top: 12px;
}

/* FOOTER SECTION */
.footer {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, auto)); */
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  background-color: #212529; /*#1a242f */
  padding: 80px 13% 70px;
}

.footer-content img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.footer-content h4 {
  color: var(--pri-bg-yellow);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 15px;
  /* @apply text-yellow-400 font-medium */
}

.footer-content li i {
  font-size: 1.1rem;
}

.footer-content li a,
.footer-content li {
  display: block;
  color: #d6d6d6;
  font-weight: 400;
  transition: all 0.4s ease;
}

.footer-content li a:hover {
  transform: translateY(-3px) translateX(-5px);
  color: #fff;
}

.footer-content p {
  color: #d6d6d6;
  font-size: 16px;
  line-height: 30px;
  /* margin: 30px 0; */
  margin: 15px 0;
}

.footer-content li {
  line-height: 30px;
}

.icons a {
  display: inline-block;
  font-size: 22px;
  color: #d6d6d6;
  margin-right: 17px;
  transition: all 0.4s ease;
}

.icons a:hover {
  color: #fff;
  transform: translateY(-5px);
}
/* FOOTER SECTION */

@media only screen and (max-width: 1280px) {
  /* HEADER */
  /* NAVIGATION BAR */
  nav ul li a {
    padding: 8px 12px;
  }

  nav ul li:last-child > a {
    padding: 8px 18px; /* Different padding for the last item */
  }
  /* HEADER */
  /* NAVIGATION BAR */

  /* FOOTER SECTION */
  .footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer h4 {
    margin-bottom: 0.5rem;
  }

  .footer img {
    max-width: 200px;
    width: 100%;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-evenly; */
    text-align: center;
  }

  .footer-content:first-child p,
  .icons {
    margin-top: 10px;
  }

  .icons {
    margin-top: -10px;
  }
  /* FOOTER SECTION */
}

@media only screen and (max-width: 1130px) {
  /* HEADER */
  /* NAVIGATION BAR */
  nav ul li {
    margin-right: -6px;
  }
  /* HEADER */
  /* NAVIGATION BAR */
  #services {
    height: 100%;
  }
  .services-cards {
    height: 100%;
    padding: 80px 51px;
  }

  .services-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .services-card {
    padding: 22px 27px;
  }
}

@media only screen and (max-width: 1080px) {
  /* HEADER */
  /* NAVIGATION BAR */
  header {
    padding: 0 50px;
  }

  h1 {
    font-size: 50px;
    font-weight: 900;
  }

  nav {
    margin-top: 0;
    position: absolute;
    left: -300px;
    top: 0;
    z-index: 1004;
    width: 280px;
    height: 100vh;
    /* background-color: #212529; */
    background-color: white;
    transition: 0.2s;
    box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.2);
  }

  nav ul li a {
    /* color: white; */
    color: #212529;
  }

  #nav_check:checked ~ nav {
    left: 0;
  }

  nav .logo {
    display: block;
    height: 70px;
    display: flex;
    align-items: center;
    margin-left: 30px;
  }

  nav ul li a {
    margin-bottom: 5px;
    padding: 10px 15px;
    border-radius: 5px;
  }

  nav ul {
    display: block;
    padding: 0 20px;
    margin-top: 30px;
  }

  .hamburger {
    display: block;
  }
  /* HEADER */
  /* NAVIGATION BAR */

  .lower-section {
    flex-direction: column;
    height: 100%;
    gap: 10px;
    padding: 80px 51px;
  }

  .why-choose-us-heading {
    font-size: 50px;
  }

  .section-heading {
    font-size: 50px;
  }

  .lower-section .about-img > img {
    width: 600px;
    display: block;
    margin: auto;
  }

  #services {
    height: 100%;
  }

  .services-cards {
    padding: 80px 51px;
  }

  .second-section-about {
    grid-template-columns: 1fr;
  }

  .second-section-about-images {
    display: none;
  }

  .third-section-about {
    grid-template-columns: 1fr;
  }

  .iso-certs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .projects-wrapper {
    grid-template-columns: 1fr 1fr;
    padding: 80px 51px;
    gap: 30px;
  }

  .projects-home-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .rental-services-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  nav ul li:last-child > a {
    /* Different padding for the last item */
    padding: 8px 15px;
  }

  .info-text {
    width: 14rem;
  }

  .company-details {
    width: calc(100% - 56px);
  }

  .contact-form-wrapper {
    padding: 2rem 1.75rem;
  }
}

@media only screen and (max-width: 830px) {
  .why-choose-us-heading {
    font-size: 40px;
  }

  .section-heading {
    font-size: 40px;
  }

  .services-cards {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-card {
    padding: 22px 27px;
  }

  .projects-wrapper {
    grid-template-columns: 1fr 1fr;
    padding: 40px 13px;
    gap: 20px;
  }

  #projects > p {
    padding-top: 40px;
  }

  .project-title {
    padding: 0 13px;
    margin-top: 1rem;
  }

  .project-content {
    margin-top: 1.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .projects-home-wrapper {
    padding: 40px 0px;
  }

  .project-wrapper {
    padding: 0;
    padding-bottom: 50px;
  }

  .project-wrapper img {
    height: 380px;
  }

  .contact-section {
    flex-direction: column;
    gap: 50px;
  }

  .info-text {
    width: 100%;
  }

  .company-details {
    padding: 0 13px;
    gap: 1.25rem;
    width: 100%;
  }

  .contact-form-wrapper {
    padding: 2.5rem 3.5rem;
  }

  .mission-list {
    margin-left: 8px;
  }

  /* FOOTER SECTION */
  .footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer h4 {
    margin-bottom: 0.5rem;
  }

  .footer img {
    max-width: 200px;
    width: 100%;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-evenly; */
    text-align: center;
  }

  .footer-content:first-child p,
  .icons {
    margin-top: 10px;
  }

  .icons {
    margin-top: -10px;
  }
  /* FOOTER SECTION */
}

@media only screen and (max-width: 570px /*1100px*/) {
  /* HEADER */
  /* NAVIGATION BAR */
  header {
    padding: 0 0px;
    height: var(--navbar-height-sm);
  }

  h1 {
    font-size: 43px;
  }

  .logo {
    width: 170px;
    margin: 0 16px;
  }

  .hamburger {
    padding: 17px 20px;
  }

  nav {
    width: 230px;
  }

  .lower-section {
    padding: 50px 13px;
  }

  #hero {
    height: 100svh;
  }
  /* HEADER */
  /* NAVIGATION BAR */

  .services-cards {
    padding: 50px 13px;
  }

  .services-card {
    padding: 22px 15px;
  }

  .second-section-about {
    padding: 50px 13px;
  }

  .hero-not-home {
    height: calc(100svh - var(--navbar-height-sm));
  }

  .third-section-about {
    padding: 50px 13px;
  }

  .certifications-section {
    padding: 50px 13px;
  }

  .projects-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .home-projects-wrapper {
    padding: 50px 13px;
  }

  .projects-home-wrapper {
    gap: 10px;
  }

  .rental-services {
    padding: 50px 13px;
  }

  .rental-services-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3.5rem;
  }

  .contact-us-heading {
    padding-top: 2.5rem /* 40px */;
    padding-bottom: 2.5rem /* 40px */;
  }

  /* .section-heading {
    color: black;
    font-size: 60px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
    line-height: 1;
  } */

  .contact-section {
    padding: 0px 0 0;
  }

  .company-details {
    padding: 0 13px;
    gap: 1.25rem;
  }

  .contact-form-wrapper {
    padding: 3.5rem 1.75rem;
  }

  /* FOOTER SECTION */
  .footer-content li {
    /* @apply mb-[10px] text-sm */
  }

  .footer-content p {
    color: #d6d6d6;
    font-size: 14px;
    line-height: 20px;
    margin: 20px 0;
  }
  /* FOOTER SECTION */
}

/* Basic form styles */
.custom-form {
  display: flex;
  flex-direction: column;
  gap: 16px; /* space-y-4 equivalent */
}

/* Heading styles */
.custom-heading {
  font-size: 1.5rem; /* text-2xl */
  font-weight: bold; /* font-bold */
  color: #1f2937; /* text-gray-900 */
  letter-spacing: -0.5px; /* tracking-tight */
}

/* Grouping label and input fields */
.form-group {
  display: flex;
  flex-direction: column;
}

/* Label styles */
.form-label {
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  color: #1f2937; /* text-gray-900 */
}

/* Input and textarea container */
.form-input {
  margin-top: 4px; /* mt-1 */
}

/* Input field and textarea field styles */
.input-field,
.textarea-field {
  width: 100%; /* w-full */
  background-color: white; /* bg-white */
  padding: 0.375rem 0.75rem; /* px-3 py-1.5 */
  font-size: 1rem; /* text-base */
  color: #1f2937; /* text-gray-900 */
  border: 1px solid #d1d5db; /* outline-1 outline-gray-300 */
  border-radius: 0.375rem; /* rounded-md */
  transition: border-color 0.2s ease;
}

.input-field::placeholder,
.textarea-field::placeholder {
  color: #9ca3af; /* placeholder:text-gray-400 */
}

/* Focused state */
.input-field:focus,
.textarea-field:focus {
  outline: 2px solid #6366f1; /* focus:outline-indigo-600 */
  outline-offset: -2px; /* focus:-outline-offset-2 */
}

/* Textarea-specific styling */
.textarea-field {
  height: 4.5rem; /* h-18 */
  resize: vertical; /* allow resizing */
}

/* Flex container for form labels */
.flex-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* ReCAPTCHA container */
.captcha-container {
  width: 100%;
  /* Add specific styles for reCAPTCHA if necessary */
}

/* Submit button styles */
.submit-button-container {
  width: 100%;
}

.submit-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.375rem 0.75rem; /* px-3 py-1.5 */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* roboto-medium */
  background-color: #4f46e5; /* bg-indigo-600 */
  color: white;
  border-radius: 0.375rem; /* rounded-md */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* shadow-sm */
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #4338ca; /* hover:bg-indigo-500 */
}

.submit-button:focus-visible {
  outline: 2px solid #6366f1; /* focus-visible:outline-indigo-600 */
  outline-offset: -2px; /* focus-visible:outline-offset-2 */
}

/* div.rc-anchor.rc-anchor-invisible.rc-anchor-light.rc-anchor-invisible-hover {
  position: fixed;
  top: 50%;
} */

.modal-pic-trigger:hover {
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.slide-img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.pagination-warning .page-item.active .page-link {
  background-color: var(
    --pri-bg-yellow
  ); /* Custom yellow background for active page */
  border-color: var(--pri-bg-yellow);
}

.pagination-warning .page-link {
  color: var(--pri-text-dark); /* Custom text color for links */
}
