/* Apply for Funding Button */
.apply-funding-btn {
  display: inline-block;
  margin-top: 10px;
  background: #6A6A6A 0% 0% no-repeat padding-box;
  color: #fff;
  width: 210px;
  height: 51px;
  line-height: 51px;
  text-align: center;
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 1;
  text-decoration: none;
  transition: background 0.2s;
}
.apply-funding-btn:hover {
  background: #555;
}
/* Intro Button Styling */
.intro-btn {
  width: 138px;
  background: #6A6A6A;
  color: #fff;
  opacity: 1;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0px;
   opacity: 1;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  padding:10px;
}
.intro-btn:hover {
  background: #FDB913;
  color: #222;
  opacity: 1;
}
html, body {
  overflow-x: hidden !important;
  width: 100vw;
  max-width: 100%;
}

*{
  box-sizing: border-box;
}

/* --- PERKS & BENEFITS SECTION (Careers) --- */
.custom-arrow-list {
  background: transparent;
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  color: #222;
}

.custom-arrow-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
}

.custom-arrow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background: url('img/noun-arrow-3078248.png') no-repeat center center;
  background-size: contain;
}
.perks-benefits-section {
  background: #232323;
  color: #fff;
  
  padding: 0;
}
.perks-benefits-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  background: #232323;
  border-radius: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.03);
  padding: 0;
}
.perks-benefits-title-block {
  flex: 1 1 340px;
  min-width: 320px;
  padding: 48px 36px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #393939;
}
.perks-benefits-label {
  font-size: 1rem;
  color: #e6e6e6;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.perks-benefits-title {
  font-size: 2.2rem;
  font-family: 'roboto';
  font-weight: 700;
  margin: 0 0 18px 0;
  line-height: 1.2;
}
.perks-benefits-title span {
  color: #FDB913;
}
.perks-benefits-desc {
  font-size: 1.08rem;
  color: #e6e6e6;
  margin-bottom: 0;
}
.perks-grid {
  flex: 2 1 800px;
  min-width: 340px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  padding: 48px 48px 48px 36px;
  
}
.perk-item {
  
  
  padding: 32px 18px 28px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.perk-item img {
  height: 54px;
  margin-bottom: 14px;
}
.perk-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 7px;
    font-family: 'roboto';
      white-space: nowrap;
}
.perk-desc {
  color: #e6e6e6;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .perks-benefits-header {
    flex-direction: column;
    padding: 0;
    text-align: center;
  }
  .perks-benefits-title-block {
    border-right: none;
    border-bottom: 1px solid #393939;
    padding: 32px 24px 24px 24px;
    text-align: center;
  }
  .perks-benefits-label,
  .perks-benefits-title,
  .perks-benefits-desc {
    text-align: center;
  }
  .perks-grid {
    grid-template-columns: 1fr 1fr;
    padding: 32px 24px 24px 24px;
    gap: 24px 16px;
  }
}
@media (max-width: 600px) {
  .perks-grid {
    grid-template-columns: 1fr;
    padding: 18px 8px 18px 8px;
    gap: 16px 0;
  }
  .perks-benefits-title-block {
    padding: 18px 8px 12px 8px;
  }
}
.join-btn:hover {
  background: #FDB913 !important;
  color: #222 !important;
  transition: background 0.2s, color 0.2s;
}
/* Leadership Section (XD Spec) */
.leadership-section {
  background: #F8F8F8;
  padding: 64px 0 56px 0;
}

@media (max-width: 768px) {
  .leadership-section {
    padding: 32px 0 40px 0;
  }
}

.leadership-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.section-title {
  font-family: 'Roboto', 'Montserrat', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}
.leadership-section .accent-line {
  width: 100%;
  max-width: 900px;
  height: 2px;
  background: #FDB913;
  margin: 0 auto 32px auto;
}
.section-desc {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 17px;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-desc {
    text-align: left;
    padding: 0 20px;
  }
}

.leadership-cards {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
}
.leader-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  padding: 32px 36px;
  min-width: 340px;
  max-width: 420px;
  text-align: left;
  margin: 0;
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.leader-info h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 2px 0;
  color: #111;
}
.leader-title {
  font-size: 1rem;
  color: #FDB913;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.leader-dash {
  border-bottom: 1.5px dashed #bbb;
  width: 100%;
  margin: 8px 0 10px 0;
}
.leader-exp {
  font-size: 0.98rem;
  margin-bottom: 4px;
  color: #222;
}

.leader-journey strong {
  font-weight: 700;
  color: #000;
}
@media (max-width: 900px) {
  .leadership-cards {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .leader-card {
    min-width: 90vw;
    max-width: 98vw;
  }
}
.build-item .count-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.how-we-build{
  background:#3c3c3b;
  padding:90px 0 100px;
  text-align:center;
}

.how-we-build .container{
  max-width:1100px;
  margin:auto;
}

.how-we-build h2{
  color:#fff;
  font-size:28px;
  font-weight:700;
  margin-bottom:10px;
}

.hw-line{
  width:120px;
  height:2px;
  background:#f2c318;
  margin:10px auto 20px;
}

.hw-subtitle{
  color:#d6d6d6;
  font-size:14px;
  line-height:22px;
  max-width:780px;
  margin:auto;
}

.hw-subtitle span{
  display:block;
  margin-top:10px;
  font-weight:600;
  color:#fff;
}

.hw-box-wrap{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:40px;
}

.hw-box{
  background:#2b2b2a;
  padding:22px 25px 35px;
  border-radius:4px;
  border:1px solid rgba(255,255,255,.08);
  position:relative;
}

.hw-box h4{
  color:#f2c318;
  font-size:18px;
  font-weight:700;
  margin:0;
  line-height:23px;
}

.down-arrow{
  color:#fff;
  font-size:22px;
  display:block;
  margin-top:18px;
}


.box::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1px;
     width: 30px;
    height: 12px;
    background: #ffffff;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}



@media (max-width: 900px) {
  .build-grid {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .build-item {
    max-width: 98vw;
    text-align: left;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .build-item .count-wrap {
    margin-bottom: 18px;
    justify-content: center;
  }
}
}
.build-item {
  background: transparent;
  color: #fff;
  flex: 1 1 0;
  max-width: 340px;
  text-align: left;
}
.count-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.count {
  display: inline-block;
  background: #FDB913;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  text-align: center;
  line-height: 56px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  margin-right: 18px;
}
.build-item h4 {
  font-family: 'Roboto', 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.build-item p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .build-grid {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .build-item {
    max-width: 98vw;
    text-align: left;
  }
}

/* Font Face Definitions */
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat/static/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat/static/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/roboto/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Montserrat', 'Roboto';
}
/* --- CAREERS PAGE TABLE LAYOUT --- */
.careers-table-section {
  background: #ededed;
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.careers-table {
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
  margin: 0 auto 18px auto;
  background: #fff;
  font-size: 15px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.careers-table th, .careers-table td {
  border: 1px solid #ccc;
  padding: 14px 16px;
  text-align: left;
  font-family: 'Roboto', Arial, sans-serif;
}
.careers-table th {
  background: #f7f7f7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
}
.careers-table td {
  color: #222;
}
.careers-view-btn {
  display: inline-block;
  background: #393939;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 7px 22px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.careers-view-btn:hover {
  background: #FDB913;
  color: #222;
}
.careers-extra-msg {
  margin: 18px auto 0 auto;
  font-size: 15px;
  color: #222;
  text-align: center;
  max-width: 900px;
  font-family: 'Roboto', Arial, sans-serif;
}
.careers-mail {
  color: #FDB913;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .careers-table {
    font-size: 14px;
    max-width: 98vw;
  }
  .careers-table th, .careers-table td {
    padding: 10px 6px;
  }
  .careers-extra-msg {
    font-size: 14px;
    padding: 0 2vw;
  }
}
.contact-main{
  background:#f2f2f2;
  padding:60px 0 0 0;
}

/* WHITE BOX */
.contact-wrapper{
  width:1000px;
  margin:auto;
 
  display:flex;
  padding:40px 50px;
  gap:40px;
}

/* LEFT PANEL */
.contact-left{
  width:50%;
}

.small-label{
  font-size:12px;
  font-weight:600;
  margin-bottom:10px;
}

.big-title{
  font-size:28px;
  margin-bottom:25px;
}
.big-title::after {
    content: "";
    width: 400px;
    height: 1px;
    background: #D2A53C;
    display: block;
    margin-top: 10px;
}


.info-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:22px;
}



/* Create the grey square behind icon */


/* RIGHT FORM */
.contact-right{
  width:50%;
}

.form-title{
  font-size:22px;
  margin-bottom:15px;
  position:relative;
}

.form-title::after{
  content:"";
  width:400px;
  height:1px;
  background:#D2A53C;
  display:block;
  margin-top:10px;
}

form{
  margin-top:20px;
}

input, textarea {
  font-family: 'Roboto';
  width:100%;
  border:1px solid #ddd;
  padding:10px;
  margin-bottom:12px;
  font-size:13px;
}

textarea{
  height:90px;
}

button{
  width:100%;
  background:#6b6b6b;
  border:none;
  color:#fff;
  padding:10px;
  font-size:12px;
  letter-spacing:1px;
}

/* SOCIAL SECTION */
.social-row{
  background:#fff;
  text-align:center;
  padding:25px 0 5px 0;
}

.social-row span{
  font-weight:600;
}

.line{
  display:inline-block;
  width:120px;
  height:2px;
  background:#c9c9c9;
  margin:0 10px;
  position:relative;
  top:-4px;
}

.icons{
  display:inline-flex;
  gap:12px;
  margin-left:10px;
}

.icons img{
  width:32px;
}

@media (max-width: 900px) {
  .social-row {
    padding: 25px 20px 5px 20px !important;
  }
  
  .social-row > div {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 20px;
  }
  
  .social-row .icons {
    margin-left: 0 !important;
  }
  
  .contact-wrapper {
    width: 100%;
    flex-direction: column;
    padding: 20px 20px;
    gap: 24px;
  }
  
  .contact-left,
  .contact-right {
    width: 100%;
  }
  
  .contact-content-row-v2 {
    flex-direction: column;
    gap: 24px;
    padding: 32px 0 0 0;
  }
  .contact-info-new-v2, .contact-form-box-new-v2 {
    max-width: 98vw;
    min-width: 0;
    padding: 18px 2vw 18px 2vw;
  }
}
/* --- CONTACT PAGE NEW LAYOUT --- */
.contact-hero-new {
  position: relative;
  background: #ededed;
  margin-bottom: 0;
}
.contact-hero-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  background: rgba(60,60,60,0.45);
  padding: 12px 0;
  letter-spacing: 0.5px;
}
.contact-main-new {
  background: #ededed;
  width: 100%;
  margin: 0;
  padding: 0;
}
.contact-content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 0 0 0;
}
.contact-info-new {
  flex: 1;
  min-width: 320px;
  max-width: 420px;
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-label {
  font-family: 'Roboto';
  font-size: 13px;
  font-weight: 700;
  color: #222;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.contact-info-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
  line-height: 1.2;
}
.contact-info-block {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-item-label {
  font-size: 15px;
  font-weight: 500;
  color: #393939;
  margin-bottom: 2px;
  border-bottom: 2px solid #FDB913;
  display: inline-block;
  padding-bottom: 2px;
}
.contact-info-item-value {
  font-size: 14px;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-form-box-new {
  flex: 1;
  min-width: 320px;
  max-width: 420px;
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px 28px 28px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.contact-form-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}
.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form-new input,
.contact-form-new textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-form-new textarea {
  resize: vertical;
}
.contact-form-btn-new {
  margin-top: 10px;
  background: #393939;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form-btn-new:hover {
  background: #FDB913;
  color: #222;
}
.contact-social-row {
  text-align: center;
  padding: 32px 0 0 0;
}
.contact-social-label-new {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
}
.contact-social-icons-new {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}
.contact-social-icon-new img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #FDB913;
  padding: 6px;
  transition: box-shadow 0.2s, background 0.2s;
}
.contact-social-icon-new img:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  background: #393939;
}
@media (max-width: 900px) {
  .contact-content-row {
    flex-direction: column;
    gap: 24px;
    padding: 32px 0 0 0;
  }
}
/* --- JOIN THE ECOSYSTEM TABLE LAYOUT --- */

.join-content-box-table {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
}
.join-table-box {
  flex: 1;
  min-width: 220px;
  max-width: 370px;
  background: #fff;
  border-radius: 8px;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.join-table-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
  line-height: 1.2;
}
.join-table-subtext {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
  color: #222;
  margin-bottom: 10px;
}
.join-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 15px;
}
.join-table td {
  border: 1px solid #ccc;
  padding: 7px 10px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
}
.join-table tr td:first-child {
  font-weight: 700;
  width: 120px;
  background: #f7f7f7;
}
.join-table-btn {
  display: inline-block;
  background: #393939;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 8px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 4px;
  transition: background 0.2s, color 0.2s;
}
.join-table-btn:hover {
  background: #FDB913;
  color: #222;
}
@media (max-width: 900px) {
  .join-content-box-table {
    flex-direction: column;
    gap: 18px;
    padding: 24px 4vw 18px 4vw;
    align-items: stretch;
  }
  .join-table-box {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    gap: 12px;
    padding: 10px 8px;
  }
  .nav {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .join-hero-img, .privacy-hero-img {
    max-height: 120px;
  }
  .join-hero-title, .privacy-hero-title {
    font-size: 1rem;
    padding: 7px 0;
  }
  .join-content-box, .privacy-content-box, .apply-section, .funding-section {
    padding: 12px 2vw 12px 2vw;
    flex-direction: column !important;
    gap: 10px !important;
  }
  .join-content-img-wrap, .join-form-box {
    max-width: 50%;
    min-width: 0;
  }
  .join-form-box h3, .privacy-content-box h2, .apply-form h2, .funding-form h2 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .join-form input, .privacy-list, .apply-form input, .funding-form input {
    font-size: 14px;
  }
  .footer-grid {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
  .contact-cta h3 {
    font-size: 1rem;
  }
  .contact-cta .join-btn, .apply-submit, .funding-next, .join-form-btn {
    font-size: 14px;
    padding: 8px 0;
  }
}
/* ================= JOIN THE ECOSYSTEM PAGE ================= */
.join-main {
  background: #ededed;
  padding:50px;
  width: 100%;
  margin: 0;
}
.join-hero {
  width: 100vw;
  height: 60vh;
  min-height: 380px;
  background: #ededed;
  position: relative;
  margin-bottom: 0;
}
.join-hero-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.7);
}
.join-hero-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  background: rgba(60,60,60,0.45);
  padding: 10px 0;
  letter-spacing: 0.5px;
}
.join-content-section {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #ededed;
  padding: 0 0 32px 0;
}
.join-content-box {
  background: #fff;
  max-width: 800px;
  width: 100%;
  margin-top: 0;
  padding: 0px 20px 0px 20px;
  display: flex;
  align-items: center;
}
.join-content-img-wrap {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
}

.join-form-box {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
}
.join-form-box h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}
.join-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.join-form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.join-form label {
  font-size: 15px;
  font-weight: 500;
  color: #393939;
  margin-bottom: 2px;
}
.join-form input[type="text"],
.join-form input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  transition: border 0.2s;
}
.join-form input:focus {
  border: 1.5px solid #FDB913;
  outline: none;
}
.join-form-btn {
  width: 100%;
  background: #393939;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
}
.join-form-btn:hover {
  background: #FDB913;
  color: #222;
}
@media (max-width: 900px) {
  .join-main {
    padding: 20px 0;
  }
  
  .join-content-row {
    flex-direction: column !important;
    padding: 0 20px !important;
    gap: 0 !important;
  }
  
  .join-content-img.new-align {
    width: 100% !important;
    order: 1;
  }
  
  .join-content-img.new-align img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  
  .join-content-box.new-align {
    width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    padding: 24px 20px !important;
    order: 2;
    background: #fff !important;
  }
  
  .join-content-title {
    font-size: 24px !important;
    margin-bottom: 16px !important;
  }
  
  .join-content-box {
    flex-direction: column;
    padding: 24px 4vw 18px 4vw;
  }
  .join-content-img-wrap, .join-form-box {
    max-width: 100%;
    min-width: 0;
  }
}
/* ================= FUNDING PAGE ================= */
.funding-main {
  background: #f7f7f7;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
}
.funding-section {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 40px 32px 32px 32px;
  margin-top: 60px;
}
.funding-form h2 {
  font-family: 'Roboto';
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #222;
}
.funding-form {
  width: 100%;
}
.funding-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 520px;
  margin: 0 auto 8px auto;
  position: relative;
  z-index: 2;
}
.funding-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #bdbdbd;
  border: 2px solid #ededed;
  position: relative;
  z-index: 2;
}
.funding-step.active {
  background: #FDB913;
  color: #fff;
  border: 2px solid #FDB913;
}
.funding-step span {
  display: block;
  line-height: 1;
}
.funding-divider {
  width: 100%;
  height: 3px;
  background: #FDB913;
  margin: -18px 0 28px 0;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}
.funding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 28px;
}
.funding-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.funding-form label {
  font-size: 15px;
  font-weight: 500;
  color: #393939;
  margin-bottom: 2px;
}
.funding-form input[type="text"],
.funding-form input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  transition: border 0.2s;
}
.funding-form input:focus {
  border: 1.5px solid #FDB913;
  outline: none;
}
.funding-next {
  width: 400px;
  background: #6A6A6A;
  color: #fff;
  border: none;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  margin: 10px auto 0 auto;
  display: block;
  transition: background 0.2s, color 0.2s;
}
.funding-next:hover {
  background: #FDB913;
  color: #222;
}
.required {
  color: #FF0000;
  font-size: 1em;
}
@media (max-width: 900px) {
  .funding-next {
    width: 200px;
    margin: 10px auto 0 auto;
    display: block;
  }
  
  .funding-section {
    padding: 28px 8vw 24px 8vw;
  }
  .funding-grid {
    grid-template-columns: 1fr;
    gap: 18px 0;
  }
}
/* ================= PRIVACY POLICY PAGE ================= */
.privacy-main {
  background: #ededed;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
}
.privacy-hero {
  width: 100vw;
  height: 60vh;
  min-height: 380px;
  background: #ededed;
  position: relative;
  margin-bottom: 0;
}
.privacy-hero-img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.7);
}
.privacy-hero-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  background: rgba(60,60,60,0.45);
  padding: 10px 0;
  letter-spacing: 0.5px;
}
.privacy-content-section {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #ededed;
  padding: 0 0 32px 0;
}
.privacy-content-box {

  border-radius: 8px;

  max-width: 800px;
  width: 100%;
  margin-top: 0;
  padding: 36px 32px 32px 32px;
}
.privacy-content-box h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.privacy-divider {
  width: 100%;
  height: 2px;
  background: #FDB913;
  margin: 12px 0 18px 0;
  border-radius: 2px;
}
.privacy-list {
  font-size: 15px;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.privacy-list li {
  margin-bottom: 0;
  line-height: 1.7;
}
.privacy-list b {
  color: #393939;
}
@media (max-width: 900px) {
  .privacy-content-box {
    padding: 24px 4vw 18px 4vw;
  }
}
/* ================= APPLY NOW PAGE ================= */
.apply-main {
background: #F2F2F2;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 50px;
}

@media (max-width: 768px) {
  .apply-main {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .apply-main {
    padding: 15px 10px;
  }
}
.apply-section {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 32px 32px 32px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .apply-section {
    padding: 30px 20px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .apply-section {
    padding: 20px 15px;
    margin-top: 20px;
  }
}
.apply-form h2 {
  font-family: 'roboto';
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #222;
}

.form-divider {
  height: 3px;
  background: #FDB913;
  border: none;
  border-radius: 2px;
  margin: 16px auto 24px auto;
}

@media (max-width: 768px) {
  .apply-form h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .form-divider {
    margin: 12px auto 20px auto;
  }
}

@media (max-width: 480px) {
  .apply-form h2 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .form-divider {
    margin: 10px auto 18px auto;
    height: 2px;
  }
}
.apply-form {
  width: 100%;
  margin-top:0px;
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 28px;
}
.apply-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.apply-field-full {
  grid-column: 1 / 3;
}
.apply-form label {
  font-size: 15px;
  font-weight: 500;
  color: #393939;
  margin-bottom: 2px;
}
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="url"],
.apply-form input[type="file"],
.apply-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  transition: border 0.2s;
}
.apply-form input[type="file"] {
  padding: 6px 0 6px 0;
  font-size: 14px;
}
.apply-form input:focus,
.apply-form textarea:focus {
  border: 1.5px solid #FDB913;
  outline: none;
}
.apply-form textarea {
  resize: vertical;
  min-height: 38px;
}
.apply-submit {
    width: 400px;
    max-width: 100%;
    background: #6A6A6A;
    color: #fff;
    border: none;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    margin: 10px auto 0 auto;
    display: block;
    transition: background 0.2s, color 0.2s;
}

.apply-submit:hover {
  background: #FDB913;
  color: #222;
}

@media (max-width: 768px) {
  .apply-submit {
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .apply-submit {
    padding: 12px 0;
    font-size: 13px;
  }
}
.apply-form input[type="file"]::-webkit-file-upload-button {
  background: #ededed;
  border: none;
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
}
.apply-form input[type="file"]::file-selector-button {
  background: #ededed;
  border: none;
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
}

/* Checkbox Section Styles */
.apply-checkbox-section {
  margin-bottom: 0;
}

.checkbox-title {
  font-size: 16px;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
  cursor: pointer;
}

.checkbox-input {
  width: 24px;
  height: 24px;
  accent-color: #222;
  border: 2px solid #222;
  border-radius: 4px;
  margin-right: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-text {
  font-weight: 500;
}

.checkbox-divider {
  width: 100%;
  border-bottom: 2px solid #FDB913;
  margin: 12px 0 24px 0;
}

@media (max-width: 768px) {
  .checkbox-title {
    font-size: 15px;
  }
  
  .checkbox-label {
    font-size: 15px;
    gap: 10px;
  }
  
  .checkbox-input {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .checkbox-title {
    font-size: 14px;
  }
  
  .checkbox-label {
    font-size: 14px;
    gap: 8px;
  }
  
  .checkbox-input {
    width: 20px;
    height: 20px;
    margin-right: 2px;
  }
  
  .checkbox-divider {
    margin: 10px 0 20px 0;
  }
}

@media (max-width: 900px) {
  .apply-section {
    padding: 28px 8vw 24px 8vw;
  }
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 18px 0;
  }
  .apply-field-full {
    grid-column: 1 / 2;
  }
}

@media (max-width: 600px) {
  .apply-section {
    padding: 20px 15px;
  }
  .apply-form {
    padding-top: 20px;
  }
  .apply-grid {
    gap: 15px 0;
  }
  .apply-form label {
    font-size: 14px;
  }
  .apply-form input[type="text"],
  .apply-form input[type="email"],
  .apply-form input[type="url"],
  .apply-form input[type="file"],
  .apply-form textarea {
    font-size: 14px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .apply-section {
    padding: 15px 10px;
  }
  .apply-form label {
    font-size: 13px;
  }
  .apply-form input[type="text"],
  .apply-form input[type="email"],
  .apply-form input[type="url"],
  .apply-form input[type="file"],
  .apply-form textarea {
    font-size: 13px;
    padding: 7px;
  }
}
/* ================= CONTACT PAGE ================= */
.contact-hero {
  background: #ededed;
  padding: 0;
  width: 100vw;
  height: 60vh;
  min-height: 380px;
  margin-bottom: 0;
}
.contact-hero-img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
}

.contact-main {
  background: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 0 0 0;
}
.contact-info {
  flex: 1;
  min-width: 320px;
  max-width: 420px;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 32px 24px;
}
.contact-info h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.contact-detail {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #222;
}
.contact-detail img {
  height: 24px;
  margin-right: 10px;
}
.contact-form-box {
  flex: 1;
  min-width: 320px;
  max-width: 420px;
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  border: 1px solid #f0f0f0;
}
.contact-form-box h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #FDB913;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  margin-top: 10px;
  background: #393939;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #FDB913;
  color: #222;
}

.contact-social {
  text-align: center;
  padding: 32px 0 0 0;
}
.contact-social-label {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
}
.contact-social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.contact-social-icons a img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #FDB913;
  padding: 6px;
  transition: box-shadow 0.2s, background 0.2s;
}
.contact-social-icons a img:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  background: #393939;
}

.contact-map-section {
  margin: 40px 0 0 0;
}
.contact-map-wrap {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.contact-map-wrap img {
  width: 100%;
  border-radius: 8px;
  min-height: 220px;
  object-fit: cover;
}

.contact-cta {
  text-align: center;
  padding: 40px 20px 60px 20px;
}
.contact-cta h3 {
  font-size: 1.3rem;
  font-family: 'roboto';
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-cta .join-btn {
    background: #6A6A6A;
    color: #fff;
    padding: 10px 32px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
    width: 323px;
    max-width: 100%;
}
.contact-cta .join-btn:hover {
  background: #FDB913;
  color: #222;
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 30px 20px 40px 20px;
  }
  .contact-cta h3 {
    font-size: 1.1rem;
  }
  .contact-cta .join-btn {
    width: 100%;
    max-width: 320px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-cta {
    padding: 25px 15px 35px 15px;
  }
  .contact-cta h3 {
    font-size: 1rem;
  }
  .contact-cta .join-btn {
    width: 100%;
    max-width: 280px;
    padding: 10px 15px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    gap: 24px;
    padding: 32px 0 0 0;
  }
  .contact-map-wrap {
    max-width: 98vw;
  }
}


.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-hero-title {
  font-family: 'Roboto';
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 32px 0;
  text-shadow: 0 3px 6px rgba(0,0,0,0.25);
  letter-spacing: 0.75px;
  line-height: 1.1;
  max-width: 820px;
}
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 380px;
  width: 100vw;
  background: url('assets/Mask Group 15@2x.png') center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.about-intro-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.section-tag {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}
.about-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.about-intro p {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}


/* ---------- DARK SECTION ---------- */

.how-we-build {
  background: #393939;
  padding: 70px 0 80px 0;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ---------- CONTAINER ---------- */
.how-we-build .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* ---------- HEADING ---------- */
.how-we-build h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'Roboto';
}

/* ---------- YELLOW LINE ---------- */
.how-we-build .accent-line {
  width: 80%;
  height: 2px;
  background: #FDB913;
  margin: 18px auto 28px auto;
  border-radius: 2px;
}

/* ---------- TOP DESCRIPTION ---------- */
.how-we-build .subtitle {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #ddd;
  max-width: 820px;
  margin: auto;
}

/* ---------- "our model text" ---------- */
.how-we-build .subtitle span{
  font-size:15px;
  margin-top:12px;
}

/* ---------- GRID ---------- */
.build-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ---------- EACH COLUMN ---------- */
.build-item {
  background: #323232;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  text-align: left;
  padding: 32px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
}

/* ---------- NUMBER TAG ---------- */
.count {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FDB913;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 6px;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  margin-right: 0;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* ---------- TITLE ---------- */
.build-item h4 {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-left: 0;
  display: block;
  margin-top: 0;
}

/* ---------- TEXT ---------- */
.build-item p {
  color: #e6e6e6;
  font-size: 0.98rem;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.7;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .build-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .build-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 12px 24px 12px;
    min-height: unset;
  }
  .count {
    margin: 0 0 14px 0;
  }
}




.count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FDB913;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  margin-right: 12px;
  margin-top: 0;
}
.build-item h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
}
.build-item p {
  color: #fff;
  font-size: 0.98rem;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 900px) {
  .build-grid {
    flex-direction: column;
    gap: 24px;
  }
  .build-item {
    padding: 0 0 24px 0;
    align-items: flex-start;
  }
}
.how-we-build h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-we-build .subtitle {
  color: #fff;
  font-size: 15px;
  margin-bottom: 36px;
  text-align: left;
  padding: 0 20px;
}
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.build-item {
  background: transparent;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 28px 18px 22px 18px;
  text-align: left;
  position: relative;
}
.count {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--yellow);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.build-item h4 {
  margin-left: 56px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.build-item p {
  margin-left: 56px;
  color: #fff;
  font-size: 15px;
}

.belief {
  background: var(--dark-alt);
  padding: 50px 0 30px 0;
}
.belief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.belief-card {
  background: var(--dark);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 28px 18px 22px 18px;
  color: var(--white);
  text-align: left;
}
.belief-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}
.belief-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.belief-card p {
  color: var(--light);
  font-size: 15px;
}

.leadership {
  background: var(--white);
  padding: 50px 0 30px 0;
}
.leader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.leader-card {
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 28px 18px 22px 18px;
  color: var(--dark);
  text-align: center;
}
.leader-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 0px solid var(--yellow);
}
.leader-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.leader-card span {
  color: #FDB913;
  font-size: 15px;
}

.cta {
  background: var(--yellow);
  padding: 40px 0;
  text-align: center;
}
.cta-btn:hover {
  background: #FDB913;
  color: #222 ;
  border: none;
  padding: 14px 48px;
  font-size: 20px;
  font-weight: 700;
  
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 300px;

  display: block;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .about-intro-grid, .build-grid, .belief-grid, .leader-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-hero h1 {
    font-size: 32px;
    color: #fff;
  }
}
:root {
  --yellow: #FDB913;
  --dark: #3C3B3B;
  --dark-alt: #3B3B3B;
  --light: #F2F2F2;
  --gray: #6A6A6A;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;

}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #5c5b5b75;
  opacity: 1;

}

 .header-two{
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  z-index: 20;
  background: #525151bf;
  opacity: 1;

}
.header-three{
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  z-index: 20;
  background: rgb(88 87 87 / 76%);
}



.header-container {
 
  margin: auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 1px;
}

.logo-wrap img {
  height: 28px;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.nav a.active::after {
    content: "";
    position: absolute;
    width: 65px;
    height: 2px;
    background: var(--yellow);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.join-btn {
  background: var(--white);
  color: var(--dark);
  border: none;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
}

.join-btn.active {
  background: #FDB913 !important;
  color: #222 !important;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100vw;
  height: 90vh;
  min-height: 380px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 2;
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.hero-content h1 {
  color: var(--white);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}

/* ================= BOTTOM STRIP ================= */
.hero-strip {
  position: absolute;
  bottom: 0;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0;
  z-index: 6;
}

.strip-item {
  color: var(--white);
  font-size: 14px;
  padding: 0 30px;
  white-space: nowrap;
}

.strip-divider {
  width: 1px;
  height: 24px;
  background: var(--yellow);
}

/* INTRO */
.intro {
  padding: 80px 0;
  background: #ffffff;
}

.intro-card {
  max-width: 1200px;
  margin: auto;
  background: #f2f2f2;
  padding: 60px 70px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

/* LEFT SIDE */
.intro-eyebrow {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000;
  display: block;
  margin-bottom: 18px;
}

.intro-title {
  font-size: 44px;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
  margin-bottom: 22px;
}

.intro-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #000;
  max-width: 480px;
  margin-bottom: 26px;
}


/* RIGHT SIDE */
.intro-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Montserrat';
}

.stat-block {
  margin-bottom: 24px;
}

.stat-label {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 12px;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.stat-row.reverse {
  justify-content: space-between;
}

.stat-number {
  font-size: 100px;
  font-weight: 700;
  color: #fdb913;
  line-height: 1;
}

.stat-text {
    font-size: 32px;
    color: #525252;
    line-height: 1.3;
    font-family: 'montserrat';
}

/* Divider */
.stat-divider {
  height: 1px;
  border: 2px dashed #707070;
  margin: 30px 0;
}

/* CAPABILITIES */
/* CAPABILITIES SECTION */
.capabilities {
  background: #3a3a3a;
  padding: 90px 0 110px;
  color: #ffffff;
}

.capabilities .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* TITLE */
.capabilities-title {
  font: normal normal bold 32px/39px Roboto;
  margin-bottom: 10px;
}

.capabilities-subtitle {
  font: normal normal normal 16px/24px Roboto;
  color: #fff;
  margin-bottom: 64px;
}

/* GRID – XD spacing */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 64px;
  row-gap: 42px;
  text-align: left;
}

/* ITEM */
.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-family: 'roboto';
}
.capability-item h4{
  font-size: 16px;
  font-weight: bold;

}
.capability-item p{
  font-size: 14px;
  font-weight: normal;
}
/* ICON */
.capability-item img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  margin-top: 4px;
  /* exact XD alignment */
}

/* TEXT BLOCK */
.capability-text {
  max-width: 260px;
}

.capability-text h4 {
  font: normal normal bold 16px/20px Montserrat;
  margin: 0 0 4px;
  color: #ffffff;
}

.capability-text p {
  font: normal normal normal 14px/22px Montserrat;
  color: #d1d1d1;
  margin: 0;
}

/* CTA BETWEEN CAPABILITIES & FOOTER */

/* CTA BAR (XD Spec) */
.cta-wrap {
  background: #fff;
  position: relative;
  z-index: 2;

  padding: 0;
}
.cta-inner {
  background: #fff;
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.cta-title {
  font-family: 'Roboto';
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 32px;
  text-align: center;
}
.cta-btn {
  background: #666;
  color: #fff;
  border: none;
  font-family: 'Roboto';
  font-size: 20px;
  font-weight: 700;
  padding: 12px 48px;
  border-radius: 0;
  box-shadow: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  width:300px;
}
.cta-btn:hover {
  background: #FDB913 !important;
  color: #222 !important;
  transition: background 0.2s, color 0.2s;
}


/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  padding: 70px 0 30px;
  font-family: Montserrat, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 16px;
}

.footer p {
  font-size: 13px;
  line-height: 20px;
  color: #cfcfcf;
}

.footer h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  font-size: 13px;
  color: #cfcfcf;
  text-decoration: none;
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.socials a {
  font-size: 14px;
  color: #fff;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .intro-grid,
  .capability-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }

  .nav {
    display: none;
  }

  .intro {
    padding: 0;
  }

  .intro-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .intro-left {
    text-align: center;
  }

  .intro-eyebrow {
    font-size: 14px;
  }

  .intro-title {
    font-size: 28px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-desc {
    font-size: 13px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-btn {
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-right {
    text-align: center;
    align-items: center;
  }

  .stat-block {
    text-align: center;
  }

  .stat-label {
    font-size: 18px;
    text-align: center;
  }

  .stat-row,
  .stat-row.reverse {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .stat-number {
    font-size: 60px;
  }

  .stat-text {
    font-size: 20px;
    text-align: center;
  }

  .stat-divider {
    margin: 20px auto;
    max-width: 80%;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-grid {
    display: block;
    margin-bottom: 30px;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-logo {
    margin: 0 auto 16px;
    display: block;
  }

  .footer-brand p {
    text-align: center;
    font-size: 14px;
    line-height: 22px;
  }

  .footer-grid > div:not(.footer-brand) {
    border-top: 1px solid #333;
    padding: 20px 0;
  }

  .footer-grid > div h5 {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 0;
    padding-right: 30px;
  }

  .footer-grid > div h5::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
  }

  .footer-grid > div.expanded h5::after {
    content: '−';
  }

  .footer-grid > div a {
    display: none;
    margin-top: 12px;
    font-size: 14px;
  }

  .footer-grid > div.expanded a {
    display: block;
  }

  .socials {
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
  }

  .socials a img {
    width: 24px !important;
    height: 24px !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 11px;
    padding-top: 20px;
  }

  .footer-bottom a {
    display: inline;
    font-size: 11px;
  }
  
  .header-container {
    padding: 14px 20px;
    flex-wrap: nowrap;
    min-height: 56px;
  }
  
  .join-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .strip-item {
    font-size: 12px;
    padding: 0 16px;
  }
  
  .header-container {
    padding: 14px 24px;
    flex-wrap: nowrap;
  }
  
  .logo-wrap {
    order: 1;
    margin-right: auto;
    flex-shrink: 0;
  }
  
  .join-btn {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
  }
  
  .logo-wrap img {
    height: 24px;
  }
}

@media (max-width: 768px) {
  .about-hero-overlay {
    background: none !important;
    opacity: 0 !important;
  }
  
  .header-container {
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  
  .logo-wrap {
    flex: 0 0 auto !important;
    margin-right: auto !important;
  }
  
  .mobile-menu-toggle {
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }
  
  .hero-content {
    bottom: 70px !important;
    padding: 0 20px !important;
    width: 90% !important;
  }
  
  .hero-content h1 {
    font-size: 38px !important;
    margin-bottom: 24px !important;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .capabilities-title {
    text-align: left;
  }
  
  .capabilities-subtitle {
    text-align: left;
  }

  .hero-strip {
    flex-direction: column;
    gap: 10px;
  }

  .strip-divider {
    display: none;
  }
  
  .header, .header-two, .header-three {
    width: 100% !important;
  }
  
  .header-container {
    padding: 10px 15px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 10px !important;
    overflow: visible !important;
  }
  
  .header-container.container {
    padding: 10px 15px !important;
    max-width: 100% !important;
  }
  
  .header-container * {
    flex-wrap: nowrap !important;
  }
  
  .logo-wrap {
    order: 1 !important;
    flex: 0 0 auto !important;
    margin: 0 auto 0 0 !important;
    padding: 0 !important;
    width: auto !important;
    min-width: 0 !important;
  }
  
  .nav {
    display: none !important;
  }
  
  .join-btn {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    order: 2 !important;
    flex: 0 0 auto !important;
    margin: 0 0 0 auto !important;
    padding: 5px !important;
    width: auto !important;
    min-width: 40px !important;
  }
  
  .logo-wrap img {
    height: 22px !important;
    width: auto !important;
    display: block !important;
  }
  
  .hero-content {
    bottom: 70px !important;
    padding: 0 15px !important;
    width: 95% !important;
  }
  
  .hero-content h1 {
    font-size: 28px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
  }
  
  .hero-strip {
    font-size: 13px !important;
    padding: 12px 10px !important;
  }
  
  .strip-item {
    font-size: 12px !important;
    padding: 0 10px !important;
  }
  
  .footer-grid {
    padding: 0 15px;
    text-align: center;
  }
  
  .footer-brand p {
    font-size: 13px;
  }
  

  
  .socials {
    justify-content: center;
  }
}



/* ================= ABOUT PAGE ================= */

/* ABOUT HERO (reuses .hero but different height if needed) */


.about-hero .hero-content h1 {
  font-size: 48px;
}



/* ================= ABOUT INTRO ================= */

.about-intro {
  padding: 90px 0;
  background: var(--white);
}

.about-intro-card {
  max-width: 1200px;
  margin: auto;
  background: var(--light);
  padding: 60px 70px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */
.about-intro-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* RIGHT CONTENT */
.about-intro-content span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gray);
  display: block;
  margin-bottom: 16px;
}

.about-intro-content h2 {
  font: normal normal bold 32px/39px Montserrat;
  color: var(--dark);
  margin-bottom: 18px;
}

.about-intro-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 460px;
}

/* ================= HOW WE BUILD ================= */

.about-build {
  padding: 90px 0;
  background: var(--white);
  text-align: center;
}

.about-build h2 {
  font: normal normal bold 32px/39px Montserrat;
  margin-bottom: 14px;
}

.about-build p {
  font-size: 14px;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 60px;
}

/* GRID */
.about-build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: left;
}

.about-build-item {
  display: flex;
  gap: 18px;
}

.about-build-num {
  background: var(--yellow);
  color: #000;
  font: normal normal bold 14px/18px Montserrat;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-build-text h4 {
  font: normal normal bold 16px/20px Montserrat;
  margin-bottom: 6px;
}

.about-build-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

/* ================= BELIEF SECTION ================= */

.about-belief {
  background: #2f2f2f;
  color: #fff;
  padding: 80px 0;
}

.about-belief-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-belief-card {
  background: #3a3a3a;
  padding: 40px;
}

.about-belief-card img {
  width: 100%;
  margin-bottom: 20px;
}

.about-belief-card h4 {
  font: normal normal bold 16px/20px Montserrat;
  margin-bottom: 10px;
}

.about-belief-card p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* ================= LEADERSHIP ================= */

.about-leadership {
  padding: 90px 0;
  background: var(--white);
  text-align: center;
}

.about-leadership h2 {
  font: normal normal bold 32px/39px Montserrat;
  margin-bottom: 14px;
}

.about-leadership p {
  font-size: 14px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 60px;
}

/* LEADER CARDS */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.leader-card {
  background: var(--light);
  padding: 30px 20px;
  text-align: center;
}



.leader-card h4 {
  font: normal normal bold 14px/18px Montserrat;
  margin-bottom: 6px;
}

/* ================= ABOUT – ECOSYSTEM ================= */

.about-ecosystem {

  background: #F2F2F2 0% 0% no-repeat padding-box;

  padding: 60px 0 60px;
  text-align: center;
}

.about-ecosystem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-ecosystem h2 {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  color: #000000;
  margin-bottom: 22px;
}

.about-lead {
  font-size: 15px;
  line-height: 24px;
  color: #3c3b3b;
  max-width: 720px;
  margin: 0 auto 16px;
}

.about-subtext {
  font-size: 14px;
  line-height: 22px;
  color: #6a6a6a;
  max-width: 720px;
  margin: 0 auto;
}


/* ================= RESPONSIVE (ABOUT) ================= */

@media (max-width: 992px) {
  .about-intro-card,
  .about-belief-grid {
    grid-template-columns: 1fr;
  }

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

  .leader-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .leader-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-card {
    padding: 40px 30px;
  }
}
.custom-arrow-list {
  list-style: none;
  padding: 0;
}

.custom-arrow-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.custom-arrow-list li::before {
  content: "➜";      /* Bold wide arrow like XD */
  font-weight: 900;   /* Bold */
  position: absolute;
  left: 0;
  top: 0;
  color: #000;        /* Same black as text */
}


.careers-openings-section{
  background:#f7f7f7;
  padding:40px 0 40px 0;
}

.careers-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
  color:#222;
}

.careers-container h2{
  font-family:'Roboto';
  font-size:18px;
  font-weight:700;
  margin-bottom:24px;
}

.filters{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  margin-bottom:18px;
}

.filters label{
  font-weight:500;
  color:#444;
  margin-right:6px;
}

.filters select{
  padding:4px 18px 4px 8px;
  border:1px solid #ccc;
  border-radius:4px;
  background:#f7f7f7;
}

.openings-box{
  width:900px;
  max-width:100%;
  margin:auto;
  background:#fff;
  border:1.5px solid #bdbdbd;
  box-shadow:0 2px 16px rgba(0,0,0,0.06);
}

table{
  width:100%;
  border-collapse:collapse;
}

tr{
  border-bottom:1.5px solid #000;
}

.role-title{
  width:28%;
  padding:22px 18px 22px 24px;
  font-family:'roboto';
  font-size:16px;
  font-weight:700;
  border-right:2px solid #000;
  text-align:left;
  border-top:1px solid#000;

}
.role-btn{
  width:140px;
  text-align:center;
  border-top:1px solid #000;
}


.careers-container{
  max-width:1100px;
  margin:0 auto;
}

.openings-title{
  text-align:center;
  font-family:'Montserrat',sans-serif;
  font-size:1.5rem;
  font-weight:700;
  letter-spacing:0.5px;
  color:#222;
  margin-bottom:24px;
}

.career-filters{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  margin-bottom:18px;
}

.career-filters select{
  padding:4px 18px 4px 8px;
  border:1px solid #ccc;
  background:#f7f7f7;
}

@media (max-width: 768px) {
  .careers-container {
    padding: 0 20px;
  }
  
  .openings-title {
    font-size: 1.2rem;
    padding: 0 10px;
  }
  
  .career-filters {
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
  }
  
  .career-filters > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .career-filters label {
    margin-bottom: 6px;
    font-weight: 600;
  }
  
  .career-filters select {
    width: 100%;
    max-width: 100%;
    padding: 8px 12px;
    box-sizing: border-box;
  }
  
  .career-table-wrapper {
    margin: 0 20px;
    overflow-x: auto;
    width: calc(100% - 40px);
  }
  
  .career-footer {
    padding: 0 20px;
  }
}

/* Table Box */
.career-table-wrapper{
  background:#fff;
  border:1px solid #000;
  box-shadow:0 2px 16px rgba(0,0,0,0.06);
  width:1200px;
  max-width:100%;
  margin:0 auto;

}
/* Table */
.career-table{
  width:100%;
  border-collapse:collapse;
  font-family:'Roboto';
  border:1px solid #000;
}

.career-table tr{
  border-bottom:1px solid #000;
}

/* Title Column */


/* Description Column With Divider + Space */
.role-desc{
  color:#222;
  font-size:1.04rem;
  padding:22px 40px 22px 18px;
  border-right:2px solid #000;
  border-top:1px solid #000;
}

/* Button Column */



.view-role-btn {
    display: inline-block;
    background: #6A6A6A;
    color: #fff;
    font-family: 'Roboto';
    font-size: 10px;
    font-weight: 600;
    padding: 5px 8px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.2s;
}

.view-role-btn:hover{
  background:#FDB913;
  color:#111;
}

/* Footer */
.career-footer{
  text-align:center;
  margin:24px 0;
  color:#222;
  font-size:1rem;
}

.career-footer a{
  color:#FFD600;
  text-decoration:underline;
}

.role-btn {
    width: 200px;
    text-align: center;
}
.info-item img{
  width:35px;
  height:35px;

  background:none;   /* remove background */
  padding:0;         /* remove box spacing */
  border-radius:0;  
  margin-top:8px; /* remove rounding */
}
.full-map-section {
  width: 100%;
  height: 100vh;     /* full screen height */
  position: relative;
}

.full-map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  margin-top: 24px;
  align-self: center;
  min-width: 0;
  padding: 14px 48px;
  font-size: 20px;
  font-family: 'Roboto', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  letter-spacing: 1px;
  background: #666;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}


.how-build-boxes{
  display:flex;
  justify-content:center;
  gap:32px;
  width:90%;
  max-width:1100px;
}

.box{
  background:#464646;
  width:340px;
  height:180px;
  padding:18px 14px;
  text-align:left;
  color:#EAA704;
  font-family:'Roboto',sans-serif;
  position:relative;
  overflow:hidden;
  transition:height .35s ease;
}

/* Heading */
.box h3{
  margin:0 0 10px 0;
  font-size:20px;
  font-weight:700;
}

/* Polygon Arrow */

/* Hidden Text */
.box-text{
  color:white;
  font-size:14px;
  margin-top:10px;
  margin-bottom:20px;
  opacity:0;
  transform:translateY(10px);
  transition:all .35s ease;
  text-align: left;
}

/* 🔥 Hover Effect — Open Like XD */
.box:hover{
  height:280px;
}

.box:hover .box-text{
  opacity:1;
  transform:translateY(0);
}

/* Mobile styles for how-build-boxes */
@media (max-width: 768px) {
  .how-build-boxes {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    align-items: center;
  }
  
  .box {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
  }
  
  .box-text {
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px;
  }
}

/* ================= MOBILE MENU STYLES ================= */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 25;
  width: 40px;
  height: 40px;
  align-items: center;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
}

.mobile-menu {
  display: none !important;
  flex-direction: column;
  position: fixed;
  top: 56px;
  left: -100%;
  width: 0;
  height: 0;
  background: rgba(82, 81, 81, 0.98);
  padding: 0;
  z-index: -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  visibility: hidden;
  opacity: 0;
  clip: rect(0, 0, 0, 0);
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #FDB913;
}

.mobile-menu .mobile-join-btn {
  background: #FDB913;
  color: #222;
  text-align: center;
  padding: 12px 20px;
  margin-top: 10px;
  border: none;
  font-weight: 600;
}

/* Hide mobile menu completely on desktop */
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    z-index: -9999 !important;
  }
  
  .mobile-menu * {
    display: none !important;
  }
  
  .mobile-menu.active {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
  }
}

/* Show mobile menu toggle only on tablet and mobile */
@media (max-width: 1024px) {
  .mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 19;
    padding: 10px 20px;
    clip: auto;
  }
  
  .mobile-menu.active {
    display: flex !important;
    max-height: 400px;
    visibility: visible;
    opacity: 1;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 900px) {
  .mobile-menu {
    top: 56px;
    padding: 8px 20px;
  }
}

@media (max-width: 600px) {
  .mobile-menu {
    top: 56px;
    padding: 8px 20px;
  }
  
  .mobile-menu a {
    font-size: 14px;
    padding: 10px 0;
  }
}

/* Landscape orientation for tablets and phones */
@media (max-height: 600px) and (orientation: landscape) {
  .apply-main {
    padding: 20px 10px;
  }
  
  .apply-section {
    padding: 20px 15px;
    margin-top: 20px;
  }
  
  .apply-form h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .form-divider {
    margin: 10px auto 15px auto;
  }
  
  .apply-grid {
    gap: 12px 0;
  }
  
  .contact-cta {
    padding: 20px 15px 30px 15px;
  }
}

/* Very small devices */
@media (max-width: 360px) {
  .apply-main {
    padding: 10px 5px;
  }
  
  .apply-section {
    padding: 15px 8px;
    margin-top: 15px;
  }
  
  .apply-form h2 {
    font-size: 1rem;
  }
  
  .apply-form label {
    font-size: 12px;
  }
  
  .apply-form input[type="text"],
  .apply-form input[type="email"],
  .apply-form input[type="url"],
  .apply-form input[type="file"],
  .apply-form textarea {
    font-size: 12px;
    padding: 6px;
  }
  
  .apply-submit {
    padding: 10px 0;
    font-size: 12px;
  }
  
  .checkbox-title,
  .checkbox-label {
    font-size: 13px;
  }
  
  .contact-cta h3 {
    font-size: 0.9rem;
  }
  
  .header-container {
    padding: 8px 10px !important;
  }
  
  .logo-wrap img {
    height: 20px !important;
  }
}

/* Print styles */
@media print {
  .header-two,
  .mobile-menu-toggle,
  .mobile-menu,
  .join-btn,
  .contact-cta,
  .footer {
    display: none;
  }
  
  .apply-main {
    padding: 0;
    background: #fff;
  }
  
  .apply-section {
    max-width: 100%;
    box-shadow: none;
  }
}
