@font-face {
  font-family: "Cabinet";
  src: url(CabinetGrotesk-Variable.ttf);
}
@font-face {
  font-family: "Satoshi";
  src: url(Satoshi-Variable.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  font-family: "Cabinet", sans-serif;
  background-color: #f8f5f1;
}
html {
  scroll-behavior: smooth;
}
/* Hero Section */
.hero-section {
  background: url("assests/about-page.avif") no-repeat center/cover;
  height: 60vh;
  position: relative;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.position-btn {
  background-color: #e2252d;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.position-btn a {
  color: #fff;
  text-decoration: none;
  font-family: "Cabinet";
  font-size: 15px;
}
/* 🔴 Overlay to darken background */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 48%);
  z-index: 1;
}

/* 🟡 Make sure all inner content stays above overlay */
.hero-section * {
  position: relative;
  z-index: 2;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.logo1 img {
  width: 160px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
  justify-content: center;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Cabinet";
  font-size: 1.1vw;
}
.active-nav {
  background-color: #e2252d;
  padding: 12px;
  border-radius: 6px;
}
.visit-btn {
  background-color: #e2252d;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Cabinet";
  font-size: 1.1vw;
}
.visit-btn {
  background-color: #e2252d;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Cabinet";
  font-size: 1.1vw;
}
.visit-btn a {
  color: white;
  text-decoration: none;
}
/* Hero Content */
.hero-content {
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 17vh;
}
.hero-content h1 {
  font-family: "Cabinet";
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
/* Work */
.tag {
  background: #e2252d;
  color: white;
  border: none;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 20px;
  width: fit-content;
}
#work {
  width: 100vw;
  padding: 40px 66px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.main-heading {
  font-size: 32px;
}
.inner-2 {
  display: flex;
  gap: 15px;
}
.inner-box {
  background-color: #ffffff;
  color: #1c1c1c;
  padding: 32px 22px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;

  /* Balanced shadow all around */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  border: 1px solid #eaeaea;

  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.inner-box img {
  width: 46px;
}
/* job opening */
.job-openings-section {
  width: 100vw;
  padding-left: 66px !important;
  padding-right: 66px !important;
  margin: 50px auto;
  padding: 0 20px;
}

.job-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #1c1c1c;
  margin-bottom: 30px;
}

.job-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  margin-top: 22px;
}

.job-card:hover {
  transform: translateY(-2px);
}

.job-info {
  display: flex;
  flex-direction: column;
}

.job-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #222;
}

.job-location {
  font-size: 0.95rem;
  color: #555;
}

.apply-button {
  background: #e2252d;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.apply-button:hover {
  background: #601515;
}
/* Form */
#form-parent {
  width: 100vw;
  padding: 20px 66px;
}
.form-container {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 66px !important;
  padding-right: 66px !important;
  margin: 30px auto;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #222;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
  background-color: #fafafa;
  font-family: "Cabinet";
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e2252d;
  background-color: #fff;
  font-family: "Cabinet";
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: "Cabinet";
}

.file-upload {
  display: flex;
  align-items: center;
  font-family: "Cabinet";
}

.file-upload input[type="file"] {
  padding: 8px 0;
  font-family: "Cabinet";
}

.submit-btn {
  width: 12%;
  padding: 14px;
  background-color: #e2252d;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  font-family: "Cabinet";
}

.submit-btn:hover {
  background-color: #e2252d;
}
.file-upload-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px 16px;
  background-color: #fafafa;
  cursor: pointer;
  transition: border 0.3s ease;
  margin-bottom: 22px;
}

.file-upload-wrapper:hover {
  border-color: #a62828;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-label {
  font-size: 16px;
  color: #555;
}

.file-name {
  font-size: 14px;
  color: #333;
  margin-left: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}
@media (max-width: 640px) {
  .form-container {
    margin: 30px 16px;
  }
}
/* FOOTER */
footer {
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  color: #fff;
  background-color: #e2252d;
}
#footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 40px 30px;
  background-color: #e2252d;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

#footer-brand img {
  width: 200px;
  margin-bottom: 10px;
}

#footer-brand p {
  margin: 6px 0;
}

#footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

#footer-social img {
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid #fff;
  border-radius: 10px;
}

#footer-nav,
#footer-resources,
#footer-location {
  min-width: 180px;
}

#footer-nav h4,
#footer-resources h4,
#footer-location h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
}

#footer-nav ul,
#footer-resources ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer-nav li,
#footer-resources li {
  margin-bottom: 10px;
  color: #fff;
}

#footer-nav a,
#footer-resources a,
#footer-location a {
  text-decoration: none;
  color: #fff;
}
#footer-location {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#footer-location img {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
  margin-top: 5px;
}

#footer-bottom {
  margin-top: 40px;
  padding: 20px 40px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #fff;
  background-color: #e2252d;
}

#footer-links a {
  text-decoration: none;
  color: #fff;
  margin: 0 5px;
}
footer h4 {
  font-family: "Cabinet";
}
#footer-location .box {
  display: flex;
  align-items: center;
}
