/* ================================================================== */

.header {
  width: 100%;
  height: 100vh;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* ========================== Navigation Bar ===========================*/
.nav_link {
  position: relative;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
  color: black;
}

.links {
  width: 350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
}

.logo-icon {
  width: 80px;
  position: relative;
  object-fit: cover;
}

.links2 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.links1 {
  width: 350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
}

.navigation-bar {
  width: 100%;
  position: relative;
  height: 68px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 64px 0px 64px;
  box-sizing: border-box;
  text-align: left;
  font-size: 18px;
  color: #000000;
  font-family: "Poppins";
}

/* ===================== Contact Section ===================== */

.contact-section {
  background-color: #f3f0eb;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.contact-section > .content-wrapper {
  display: flex;
  flex-direction: row;
  height: 80vh;
  width: 100%;
  margin: 124px 64px 32px 64px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.113);
}

.contact-group:nth-child(1) {
  width: 50%;
  background-image: url(../../assets/Commericial/Saja_Boulevard/08.jpeg);
  background-size: cover;
}

.contact-group:nth-child(2) {
  width: 50%;
  background-color: white;
}

.contact-group:nth-child(1) > .subgroup {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.661);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10%;
}

.contact-group:nth-child(2) > .subgroup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-title {
  font-size: 52px;
  color: white;
  font-family: "Poppins";
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 64px;
  /*! margin-left: 32px; */
  width: 400px;
}

.contact-link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 400px;
  width: 400px;
}

.contact-link > img {
  filter: brightness(8);
  width: 20px;
  margin-right: 16px;
}

.contact-link > span {
  display: flex;
  flex-direction: column;
  font-family: "Poppins";
  font-size: 16px;
  color: #d0c3ae;
}

.contact-link > span > span {
  margin-bottom: 16px;
  font-weight: 600;
  color: #dbdbdb;
  font-size: 16px;
  line-height: 17px;
  text-transform: uppercase;
}

.contact-link > span > a {
  text-decoration: none;
  color: #d0c3ae;
}
/* ========== Form styles ============== */
.contact-form {
  width: 80%;
  max-width: 800px; /* Adjust based on desired max width */
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*! gap: 10px; */
  /*! margin: 0 20px; */ /* Margin to prevent overflow and allow space around the form */
  padding: 0; /* Remove padding to prevent overflow */
  /*! overflow: hidden; */ /* Prevent overflow */
  align-items: center;
}

/* Title styling */
.form-title {
  font-size: 3em; /* Larger title size */
  font-weight: bold;
  color: #484848; /* Slightly tinted whitesmoke */
  letter-spacing: -2px; /* Negative letter spacing */
  text-align: center;
  margin-bottom: 20px; /* Add margin to space out from inputs */
  font-family: "Poppins";
  text-transform: uppercase;
}

/* Label styling */
.contact-form label {
  font-size: 1.1em;
  color: #555;
  display: block;
  margin-bottom: 10px; /* Add margin for spacing between labels */
  font-family: "Poppins";
  width: 100%;
}

/* Input and textarea styling */
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-size: 1em;
  color: #333;
  background-color: #f9f9f9;
  border: none; /* Removed borders */
  border-radius: 4px;
  margin-bottom: 15px; /* Add margin for spacing between input fields */
  padding: 12px 15px; /* Padding inside the input fields */
  transition: box-shadow 0.3s ease;
  min-height: 30px; /* Minimum height to avoid shrinking */
}

/* Textarea specific height */
.contact-form textarea {
  min-height: 120px; /* Minimum height for the textarea */
  resize: vertical; /* Allow resizing vertically */
}

/* Focus effect for input fields and textarea */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.24); /* Soft focus effect */
}

/* Placeholder styling */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

/* Button styling */
.contact-form button {
  padding: 12px 20px;
  background-color: white;
  color: black;
  border: 1px solid black;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px; /* Add margin on top of the button */
  width: 100%; /* Make button fill the container */
}

.contact-form button:hover {
  background-color: #000;
  transform: translateY(-2px);
  color: white;
}

.contact-form button:active {
  background-color: #388e3c;
  transform: translateY(1px);
}

/* Responsiveness */
@media (max-width: 600px) {
  .form-title {
    font-size: 2em; /* Slightly smaller title on smaller screens */
  }

  .contact-form {
    margin: 0 10px; /* Smaller margin for smaller screens */
  }

  .contact-form input,
  .contact-form textarea {
    height: auto; /* Adjust input height to auto for small screens */
  }

  .contact-form button {
    font-size: 1em; /* Smaller button font size on smaller screens */
  }
}
/* ============== Decorative Text Above Titles =============== */
.decoration-text {
  position: relative;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Poppins";
}

.decoration-line {
  width: 200px;
  position: relative;
  border-top: 1px solid rgba(51, 42, 29, 0.79);
  box-sizing: border-box;
  height: 1px;
}

.decoration {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 0px 0px 4px;
  gap: 12px;
  color: rgba(51, 42, 29, 0.79);
}

/* ================ Gallery Section ================= */
.gallery {
  width: 100%;
  height: 600px;
  z-index: 1;
}

.gallery-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  transition: all 5s ease-in-out;
}

.gallery-img {
  height: 100%;
  width: calc(100% / 6);
  background-size: cover;
  filter: saturate(1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  min-width: 10%;
  transition: all 5s ease-in-out;
  text-decoration: none;
}

.gallery-img:nth-child(1) {
  background-image: url(../../assets/Commericial/Saja_Boulevard/08.jpeg);
}

.gallery-img:nth-child(2) {
  background-image: url(../../assets/Adminstrative/Investment_Bank/038.jpg);
}

.gallery-img:nth-child(3) {
  background-image: url(../../assets/Industrial/Samsung_Factory/01.jpg);
}

.gallery-img:nth-child(4) {
  background-image: url(../../assets/Manufacturing/steel-02.jpg);
}

.gallery-img:nth-child(5) {
  background-image: url(../../assets/Retail/Kabbani_Showroom/Kabbani_12.jpeg);
}

.gallery-img:nth-child(6) {
  background-image: url(../../assets/GSM/1.jpg);
}

.gallery-title {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: #00000053;
  transition: all 3s ease-in-out;
  text-decoration: none;
  text-decoration-color: black;
}

.gallery-img-title {
  display: flex;
  rotate: z -90deg;
  /*! width: 100%; */
  height: fit-content;
  font-size: 34px;
  font-family: "Poppins";
  color: whitesmoke;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 3s ease-in-out;
}

.gallery-hidden {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.6542949943649334) 48%,
    rgba(0, 0, 0, 0.41900087671787467) 100%
  );
  position: absolute;
  transition: all 1s ease-in;
}

.hidden-body {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  color: #f3f0eb;
  font-family: "Poppins";
  transition: all 3s ease-in-out;
  position: absolute;
}

.hidden-title {
  padding: 0px 16px 0px 32px;
  font-size: 48px;
}

.hidden-text {
  padding: 16px 100px 0px 32px;
  transition: all 3s ease-in-out;
}

/* ========= Footer ========== */
.footer {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #d0c3ae;
  font-family: "Poppins";
}

.footer > .content-wrapper {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 64px 64px 64px;
}

.first-frame {
  width: 40%;
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-logo {
  width: 70px;
}

.footer-motto {
  font-weight: 500;
  font-size: 20px;
  padding: 16px 0px 16px 0px;
}

.bold-motto {
  font-weight: 800;
}

.socials {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
  gap: 4px;
}

.social-link {
  width: 36px;
  border-radius: 4px;
}

.social-link:nth-child(2) {
  margin: 0px 8px 0px 8px;
}

.copyright {
  font-size: 12px;
}

.second-frame {
  width: 60%;
  height: 100%;
  flex: 1 1 60%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.link-frame {
  flex: 1 1 auto;
  flex-direction: column;
  display: flex;
  height: 100%;
}

.link-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 800;
}

.line-div {
  width: 35%;
  position: relative;
  border-top: 2px solid #987f57;
  box-sizing: border-box;
  height: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.footer-links > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.footer-links > div > div:nth-child(1) {
  margin-right: 8px;
}

.footer-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: black;
}

.link-icon {
  width: 20px;
  margin-right: 8px;
}
