
     :root {
      --accent: #9c5c1c;
      --accent-light: #f3e58d;
      --dark: #0d1b25;
      --gold-dark: #9c5c1c;
      --gold-light: #f3e58d;
      --black: #000000;
      --white: #ffffff;
      --text: #222222;
    }
    * {
      margin: 0; padding: 0; box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    /* ===== Top Header ===== */
   .top-header{
    background-color: rgba(0, 0, 0, 0.9);
    color:white;
    font-size:15px;
   }
   .header1 .social-icons{
    margin-left: 40%;
   margin-top: 15px;
}
@media screen  and (max-width: 768px){
  .header1 .social-icons{
    margin-left: 0%;
    margin-bottom: 10px;
    margin-top: 0px;
}
.top-text{
  text-align: center;
}
}
/* Social Icons */

.top-text{
  font-size: 15px;
  color: white;
}
.header1 .social-icons a {
  display: inline-block;
  margin-right: 12px;
 background: black;
 border: 2px solid white;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  transition: 0.3s ease;
}

.header1 .social-icons a:hover {
 background: linear-gradient(135deg, #9c5c1c, #f3e58d);
  color: black;
  border: 2px solid white;
  box-shadow: 0px 0px 10px 0px white;
  transform: translateY(-4px);
}
/* first header end */
    /* ===== Header with Video ===== */
    /* ===== Header with Background Image ===== */
header {
  position: relative;
  height: 500px;
  overflow: hidden;
  color: white;
  width: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), 
              url('../images/bg-career.png') center/cover;
  color: white;
}
/* ===== Header Heading & Paragraph Styling ===== */
header h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  color: #f3e58d;
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}

header p {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* To vertically center heading and paragraph below navbar */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px; /* 👈 150 se 20px kam kar diya */
  text-align: center;
}


@media (max-width: 768px) {
  header h2 {
    font-size: 30px;
  }
  header p {
    font-size: 16px;
    padding: 0 20px;
  }
  header {
    padding-top: 180px;
  }
}
header h2, header p {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}
header p {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


    /* ===== Navbar ===== */
    .navwrap {
      position: absolute; top: 40px; left: 0; right: 0;
      z-index: 4; display: flex; justify-content: center;
      pointer-events: none;
    }
    nav.site-nav {
      pointer-events: all; width: 100%;
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 26px; border-radius: 6px;
      background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.06));
      transition: all 0.3s ease;
    }
    .brand { display: flex; align-items: center; gap: 12px; }
    .brand .mark {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      color: #081018; font-weight: 700; font-size: 18px;
    }
    .brand .name { color: var(--accent); font-weight: 700; font-size: 20px; }
    .navlinks { display: flex; align-items: center; gap: 8px; list-style: none; }
    .navlinks a {
      color: rgba(255,255,255,.95); text-decoration: none;
      padding: 10px 14px; border-radius: 6px; font-weight: 600; transition: all .25s ease;
    }
    .navlinks .active a {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018;
    }
    .navlinks a:hover {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018;
    }
    .cta {
      display: inline-flex; align-items: center; gap: 8px;
      border: 2px solid var(--accent);
      padding: 8px 18px;
      background: transparent; color: #fff;
      font-weight: 700; text-decoration: none; transition: all .3s ease;
    }
    .cta:hover {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018; border-color: transparent;
    }

    /* ===== Hamburger ===== */
    .hamburger { display: none; width: 42px; height: 40px;
      background: transparent; border: none; cursor: pointer;
      align-items: center; justify-content: center; z-index: 1001;
    }
    .hamburger .bar { width: 26px; height: 3px; background: #fff; border-radius: 2px; position: relative; transition: all .3s; }
    .hamburger .bar::before, .hamburger .bar::after {
      content:""; position:absolute; width:100%; height:3px; background:#fff; border-radius:2px; transition: all .3s;
    }
    .hamburger .bar::before { top:-8px; } .hamburger .bar::after { top:8px; }
    .hamburger.active .bar { background:transparent; }
    .hamburger.active .bar::before { transform: rotate(45deg) translate(5px,5px); background: var(--accent); }
    .hamburger.active .bar::after { transform: rotate(-45deg) translate(5px,-5px); background: var(--accent); }

    @media (max-width:900px){
      .navlinks { position: fixed; top:-100%; left:0; width:100%; background: rgba(13,27,37,0.98);
        flex-direction: column; align-items:center; gap:25px; padding:100px 0 40px; transition: top .4s ease;
      }
      .navlinks.active { top:0; }
      .cta { display:none; }
      .hamburger { display:flex; }
    }

    /* Heading from top */
@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text and button from bottom */
@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


    /* Button with animated border effect */
   @media only screen and (max-width: 768px) {
 

  header {
    height: 600px;
  }

}

.button_effect {
  position: relative;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 35px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-transform: uppercase;
}

/* Top-left corner */
.button_effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 2px solid #9c5c1c;
  border-left: 2px solid #9c5c1c;
  transition: all 0.4s ease;
}

/* Bottom-right corner */
.button_effect::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid #9c5c1c;
  border-right: 2px solid #9c5c1c;
  transition: all 0.4s ease;
}

/* Hover – smoothly expand both borders to full box */
.button_effect:hover::before,
.button_effect:hover::after {
  width: 100%;
  height: 100%;
}





    /* Sections */
    .section {
      padding: 80px 10%;
    }

    .section-title {
      text-align: center;
      color: white;
      font-size: 2.3rem;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: white;
      border-radius: 10px;
    }

    .section-hiring {
      text-align: center;
      color: #9c5c1c;
      font-size: 2.3rem;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    .section-hiring::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: #9c5c1c;
      border-radius: 10px;
    }

    /* WHY WORK WITH US */
    .why-us {
      background: white;
      text-align: center;
    }

    .features {
       max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
    }

    .feature-box {
     background: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow:  0 10px 30px rgba(0,0,0,0.1);;
  transition: all 0.4s ease;
    }

    .feature-icon {
      font-size: 2.5rem;
      color: #9c5c1c;
      margin-bottom: 15px;
    }

    .feature-title {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .feature-text {
      font-size: 0.95rem;
    }

    .feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

/* =================== JOB SECTION =================== */
.section.jobs {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(120deg, #f8f8f8, #e9f3ec);
}


.section.jobs p {
  color: #555555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.job-grid {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.job-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.job-card::before {
  content: "Hiring";
  position: absolute;
  top: 20px;
  right: -60px;
  transform: rotate(45deg);
  background-color: #9c5c1c;
  color: #ffffff;
  padding: 5px 60px;
  font-size: 0.8rem;
  font-weight: 600;
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.job-icon {
  font-size: 2.2rem;
  color: #9c5c1c;
  margin-bottom: 15px;
}

.job-title {
font-size: 1.3rem;
      margin-bottom: 10px;
      color: #9c5c1c;
}

.job-text {
  color: #444444;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.apply-btn {
    background: transparent;
      color: #9c5c1c;
      padding: 10px 25px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
}

.apply-btn:hover {
 color:#9c5c1c;
}

/* =================== BUTTON EFFECT =================== */

/* =================== RESPONSIVE DESIGN =================== */

/* Tablets */
@media (max-width: 992px) {
  .section.jobs {
    padding: 60px 15px;
  }
  .section-hiring {
    font-size: 1.9rem;
  }
  .section.jobs p {
    font-size: 0.95rem;
  }
  .job-card {
    padding: 25px;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .section.jobs {
    padding: 50px 15px;
  }
  .section-hiring {
    font-size: 1.7rem;
  }
  .job-title {
    font-size: 1.1rem;
  }
  .job-icon {
    font-size: 2rem;
  }
  .job-text {
    font-size: 0.9rem;
  }
}

/* Mobile Portrait (Small Phones) */
@media (max-width: 576px) {
  .section.jobs {
    padding: 40px 10px;
  }
  .section-hiring {
    font-size: 1.4rem;
  }
  .section.jobs p {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }
  .job-card {
    padding: 20px 15px;
  }
  .job-title {
    font-size: 1rem;
  }
  .job-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

}
    
    /* REQUIREMENTS */
    .requirements {
      max-width: 700px;
      margin: auto;
      background: white;
            background: linear-gradient(135deg, rgba(0,64,128,0.05) 50%, white 50%);

      border-left: 6px solid #f3e58d;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .requirements-list {
      list-style: none;
      padding-left: 0;
    }

    .requirements-item {
      padding: 10px 0;
      border-bottom: 1px dashed #f3e58d;
      display: flex;
      align-items: center;
    }

    .requirements-item i {
      color: #9c5c1c;
      margin-right: 10px;
    }

    /* BENEFITS */
    .benefit-main{
                  background: linear-gradient(135deg, rgba(0,64,128,0.05) );

    }
    .benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 25px;
    }

    .benefit-card {
      text-align: center;
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      transition: all 0.4s ease;
    }

    .benefit-icon {
      font-size: 2.2rem;
      color: #9c5c1c;
      margin-bottom: 12px;
      transition: 0.3s;
    }

    .benefit-card:hover {
      background: linear-gradient(135deg, #9c5c1c, #f3e58d);
      color: black;
      transform: translateY(-10px);
    }

    .benefit-card:hover .benefit-icon {
      color: white;
    }

    /* CTA */
    .cta-career {
      text-align: center;
      background: linear-gradient(135deg, #9c5c1c, #f3e58d);
      color: black;
      padding: 70px 20px;

      margin-top: 50px;
      animation: fadeIn 1.5s ease;
    }

    .cta-btn-career {
      background: transparent;
      color: black;
      padding: 12px 25px;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      margin-top: 20px;
      transition: 0.3s;
    }


    /* HIRING PROCESS */
    .steps {
      max-width: 800px;
      margin: auto;
    }

    .step {
      background: white;
      border-radius: 15px;
      margin: 20px 0;
      padding: 20px 25px;
      border-left: 5px solid #f3e58d;
      box-shadow: 0 3px 8px rgba(0,0,0,0.05);
      transition: 0.3s;
    }

    .step:hover {
      transform: translateX(10px);
      background: white;
    }

    .step-icon {
      color: #9c5c1c;
      margin-right: 10px;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }
/* cv section */
.cv-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 20px auto;
}
.cv-form input, .cv-form button {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.cta-btn-career {
  background: #9c5c1c;
  color: #fff;
  border: none;
  transition: 0.3s;
}
.cta-btn-career:hover {
  background: #f3e58d;
  color: #222;
}