/* career-contact.css - Dark Premium (Coffee Brown Tone) */

:root{
  --bg: #2f2320;       /* deep brown */
  --card: #3b2f2f;     /* card background */
  --muted: #bfa48a;    /* golden beige */
  --accent: #d9b56a;   /* gold */
  --text: #fff9f6;     /* off-white */
  --field-bg: #3f3432;

}

/*--------------------Header--------------------*/
*{
margin: 1px;
}
.header{
  width: 100%;
  height: auto;
  background: #ffffff;
  background-position: center;
  background-size: cover;
  position: relative;
}
.header h1{
  font-weight: 600;
  font-size: 30px;
  color: #7F356E;
  text-align: left;
  margin-top: 1.5%;
  margin-left: -30%;
}
nav{
  display: flex;
  padding: 1% 4%;
  justify-content: space-between;
  align-items: center;
}

nav img{
  display: none;
}


.logo img{
  width: 150px;
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
}

.nav-links {
  overflow: hidden;
}


.nav-links a {
  float: left;
  display: block;
  color: #414141;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 18px;
}
.nav-links a::after{
  content: '';
  width: 0;
  height: 2px;
  background-color: #465e14;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links a:hover::after{
  width: 100%;

}
.nav-links a.active {
  background-color: #465e14;
  color: white;
}

.nav-links .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .nav-links a:not(:first-child) {display: none;}
  .nav-links a.icon {
    float: right;
    display: block;
  }
  .nav-links .icon {
      padding-left: 20px;
    }

}

@media screen and (max-width: 600px) {
  .nav-links.responsive {position: relative;}
  .nav-links.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .nav-links.responsive a {
    float: none;
    display: block;
    text-align: right;
    color: #465e14;
    font-size: 14px;
  }
    nav img{
    display: block;
  }
  .nav-links a{
    display: none;

  }
  .nav-links{
    width: 150px;
  }
  .logo img{
    width: 150px;
    margin-bottom: 20px;
  }
  .header h1{
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    text-align: left;
    margin-top: 1.5%;
    margin-left: 3.5%;
  }
  

}


*{box-sizing:border-box}
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg,var(--bg) 0%, #261b18 100%);
  color: var(--text);
  -webkit-font-smoothing:antialiased;
  padding: 0px;
}

.page-wrap { 
  max-width:1100px; 
  margin:30px auto; }

.card{
  display:grid;
  grid-template-columns: 1fr 480px;
  gap: 32px;
  align-items:start;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.left-col h1{
  margin:6px 0 8px;
  font-size:28px;
  color: var(--text);
}
.lead{ color: var(--muted); margin:0 0 18px; }
.benefits{ color: var(--muted); padding-left:18px; margin-top:8px; }

.form-wrap{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.04));
  padding:18px;
  border-radius:10px;
  border: 1px solid rgba(255,255,255,0.02);
}

form .row{ display:flex; gap:12px; }
.field{ margin-bottom:12px; display:flex; flex-direction:column; }
.field label{ font-size:13px; margin-bottom:6px; color:var(--muted); }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="number"], select, textarea, input[type="file"]{
  background: var(--field-bg);
  border: 1px solid rgba(255,255,255,0.03);
  color: var(--text);
  padding:10px 12px;
  border-radius:8px;
  font-size:14px;
  outline:none;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 8px rgba(217,181,106,0.12);
  border-color: var(--accent);
}

textarea { min-height:100px; resize:vertical; }

.actions{ display:flex; align-items:center; gap:16px; margin-top:8px; }
.btn{
  background: linear-gradient(90deg,var(--accent), #c69b4a);
  color: #2b1a13;
  padding:10px 18px;
  border:none;
  font-weight:700;
  border-radius:8px;
  cursor:pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.btn:disabled{ opacity:0.6; cursor:not-allowed; }

.small-note{ color:var(--muted); font-size:13px; margin:0; }

/* conditional hidden */
.hidden{ display:none; }

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  animation: fadeIn 0.3s ease-out;
}

.hidden {
  display: none !important;
}

/* Modal Box */
.modal-box {
  background: #3b2f2f;
  padding: 28px 32px;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  color: #f5f3ef;
  border: 1px solid rgba(217,181,106,0.4);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  animation: slideUp 0.3s ease-out;
}

/* Modal Message */
.modal-message {
  font-size: 17px;
  margin-bottom: 22px;
  line-height: 1.4;
  color: #f8f4ef;
}

/* OK Button */
.modal-btn {
  background: linear-gradient(90deg, #d9b56a, #c69b4a);
  padding: 10px 24px;
  color: #3b2f2f;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.modal-btn:hover {
  opacity: 0.9;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/*-----------------------Footer----------------------------*/

.row1{
  margin-top: 6%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 1%;
}
.row2{
  margin-top: 2%;
  display: flex;
  justify-content: space-between;
}

.footer{
  width: 100%;
  height: auto;
  background-color: #FDFCE8;
  padding-bottom: 1%;
}
.footer-col1{
  width: 30%;
  text-align: right;
}
.footer-col1 img{
  width: 100%;
  margin-top: 30px;
}
.footer-col2{
  width: 60%;
  text-align: left;
  margin-left: 2%;
}
.footer-col2 h4{  
  font-size: 36px;
  color: #341e13;
  margin-top: 40px;
}
.footer-col2 p{
  font-weight: 500;
  font-size: 14px;
  color: #465e14;
}
.fbtn{
  width: 238px;
  height: 57px;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #f8a94d;
  color: #ffffff;
  cursor: pointer;
}
.footer-col4{
  width: 10%;
  text-align: right;
}
.footer-col5{
  width: 60%;
  text-align: left;
  margin-left: 2%;
}
.footer-col6{
  width: 30%;
  text-align: center;
}
.line{
  width: 95%;
  padding-left: 2%;
}
.line img{
  width: 100%;
}
.copy-col1{
  width: 80%;
  padding-left: 2%;
  font-weight: normal;
  font-size: 16px;
  color: #341e13;
}
.copy-col2{
  width: 10%;
  font-size: 16px;
  color: #341e13
}
.copy-col2 p{
  font-weight: 700;
  font-size: 12px;
  color: #341e13;
}
.copy-col3{
  width: 10%;
  font-size: 16px;
  color: #341e13;
}
.copy-col3 p{
  font-size: 12px;
  color: #341e13;
}
.tcg{
  width: 100%;
  color: #465e14;
  text-align: center;
}
.line{
  width: 100%;
}
/*------------------------Responsive Fotter--------------*/
@media (max-width: 700px){
  .row1{
    flex-direction: column;
  }
  .row2{
    flex-direction: column;
  }
  .footer{
    height: auto;
  }
  .footer-col1{
    width: 100%;
    text-align: center;
  }
  .footer-col1 img{
    width: 50%;
  }
  .footer-col2{
    width: auto;
    text-align: center;
  }
  .footer-col2 h4{
    font-size: 24px;
  }
  .footer-col2 p{
    font-size: 14px;
    padding: 1%;
  }
  .footer-col2 h3{
    font-size: 20px;
    color: #f8a94d;
  }
  .fbtn{
    margin-top: 20px;
  }
  .footer-col3{
    width: 100%;
    text-align: center;
  }
  .footer-col4{
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .footer-col5{
    width: auto;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-col6{
    width: 100%;
    text-align: center;
  }
  .copy-col1{
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .copy-col2{
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .copy-col3{
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .copy-col4{
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .copy-col3 p{
    margin-top: -35px;
  }
}