
html {
  scroll-behavior: smooth;
}


.careers_landingpage {
  position: relative;
  background: #000;
  color: #fff;
  min-height: 100vh;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.careers_content {
  position: relative;
  z-index: 10;
  max-width: 890px;
}

.careers_landingpage h1 {
          font-size: 4.5rem;
        line-height: 1;
        font-family: Inter, sans-serif;

  font-weight: 700;
  /* line-height: 1.2; */
}

.careers_landingpage h1 span {
  color: #ffcc00;
}

.careers_landingpage p {
  color: #ccc;
  margin: 20px 0;
}

.careers_buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.careers_btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.careers_btn.glow {
  background: #ffcc00;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

.careers_btn.glow:hover {
  background: #e6b800;
}

.careers_buttons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.careers_btn {
  display: inline-flex;
  align-items: center; /* Align text and SVG vertically */
  gap: 8px; /* Add space between text and icon */
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #ffcc00;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.careers_btn svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.careers_btn:hover svg {
  transform: translateX(4px);
}

.careers_btn.outline {
  background: transparent;
  border: 1px solid #ffcc00;
  color: #ffcc00;
}

.careers_btn.outline:hover {
  background: #ffcc00;
  color: #000;
}

/* Floating blur circles */
.careers_blur_circle {
  position: absolute;
  width: 18rem;
  height: 18rem;
  background: #ffcc00;
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(64px);
  z-index: 1;
}

/* Floating image style */
.careers_floating_img {
  position: absolute;
  width: 10rem;
  height: 10rem;
  object-fit: cover;
  border-radius: 1rem;
  z-index: 2;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.float {
  animation: float 6s ease-in-out infinite;
}

/* Positioning */
.top-left {
  top: 60;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

.bottom-left {
  bottom: 30px;
  left: 230px;
}

.top-right {
  top: 190px;
  right: 230px;
}
.careers_about {
  padding: 80px 20px;
  text-align: center;
  background: #000;
  color: #fff;
}

.careers_about h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
}

.careers_about p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

.careers_about_image img {
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ------------------------- */

.careers_choose {
  background: #000;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.careers_choose h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 40px;
  font-family: Inter, sans-serif;
}

.careers_choose_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.careers_choose_card {
  background: #111;
  border: 1px solid #333;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.careers_choose_card .icon {
  background: #ffcc00;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.careers_choose_card .icon img {
  width: 22px;
  height: 22px;
}

.careers_choose_card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: yellow;
}

.careers_choose_card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

.careers_choose_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
  border-color: #ffcc00;
}
/* Timeline Section */
.careers_timeline {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.careers_timeline h2 {
  color: #ffcc00;
  font-size: 2rem;
  margin-bottom: 60px;
  font-weight: bold;
  font-family: Inter, sans-serif;
}

.timeline_steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.timeline_row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.timeline_box {
  background: transparent;
  padding: 20px;
  min-height: 100px;
}
.timeline_box.left {
  text-align: left;
  padding-left: 30px; /* ensures space from the edge */
}
.timeline_box h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline_box p {
  margin-top: 6px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}


.timeline_box.left,
.timeline_box.right {
  background: #111;
  border: 1px solid rgba(255, 204, 0, 0.4);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.timeline_box.left:hover,
.timeline_box.right:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(255, 204, 0, 0.3);
  border-color: #ffcc00;
}

.timeline_box h3 {
  color: #ffcc00;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.timeline_box p {
  color: #ccc;
  font-size: 14px;
}

.step_circle {
  background: #ffcc00;
  width: 50px;
  height: 50px;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  z-index: 2;
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
}


/* Eligibility Section */
.careers_eligibility {
  padding: 80px 20px;
  background-color: #000;
  color: #fff;
}

.careers_eligibility_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.careers_eligibility_text {
  flex: 1 1 500px;
}

.careers_eligibility_text h2 {
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 10px;
  text-align: left;
  font-weight: bold;
  font-family: Inter, sans-serif;
}

.careers_eligibility_text p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 24px;
  line-height: 1.6;
}

.careers_eligibility_text ul {
  list-style: none;
  padding: 0;
}

.careers_eligibility_text li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #fff;
  text-align: left;
}

.careers_eligibility_text li svg {
  width: 20px;
  height: 20px;
  fill: #ffcc00;
  flex-shrink: 0;
}

.careers_eligibility_image img {
  max-width: 450px;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 204, 0, 0.2);
}
.careers_internship {
  padding: 80px 20px;
  color: #fff;
  background: #000;
}

.careers_internship h2 {
  font-size: 2.2rem;
  text-align: center;
  color: #ffcc00;
  font-weight: bold;
  font-family: Inter, sans-serif;
}

.careers_internship p {
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
}

.internship_form {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 0, .2);
  border-radius: 10px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.1);
}

.form_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form_group {
  display: flex;
  flex-direction: column;
  
}

.form_group label {
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
}

.form_group input,
.form_group select,
.form_group textarea {
  padding: 12px;
  background: transparent;
 border: 1px solid rgba(255, 255, 0, .2);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
}

.form_group textarea {
  min-height: 100px;
  resize: vertical;
}

.full_width {
  grid-column: span 2;
}

.upload_box {
  border: 1px dashed #666;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.upload_box svg {
  width: 32px;
  height: 32px;
  fill: #ffcc00;
  margin-bottom: 8px;
}

.upload_box p {
  font-weight: bold;
  color: #ffcc00;
}

.upload_box span {
  font-size: 12px;
  color: #aaa;
}

select {
  background-color: #000; 
  color: #fff;
}

select option {
  background-color: #111;  
  color: #fff;               
}



select:focus {
  border-color: #ffcc00;
  outline: none;
  
}


.submit_btn {

  background: rgba(255, 255, 0, .1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 0, .3);
    transition: all .3s ease;
    box-shadow: 0 0 30px #ff09;
  margin-top: 30px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  /* background: #ffcc00; */
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  /* transition: 0.3s; */
}
.submit_btn .btn_icon {
  margin-left: 8px;
  display: inline-block;
  transform: translateY(1px);
}


.submit_btn:hover {
  background: #e6b800;
  color: #000;
}

.form_info_boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.info_box {
  border: 1px solid #555;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  width: 100%;
  max-width: 400px;
}

.info_box h4 {
  font-size: 18px;
  color: #ffcc00;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.info_box ul {
  padding-left: 16px;
}

.info_box ul li {
  margin-bottom: 8px;
  color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .form_grid {
    grid-template-columns: 1fr;
  }

  .full_width {
    grid-column: span 1;
  }

  .info_box {
    max-width: 100%;
  }
}
.careers_faq {
  background: #000;
  color: #fff;
  padding: 60px 20px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  font-size: 36px;
  color: #ffcc00;
  font-weight: bold;
  margin-bottom: 50px;
  font-family: Inter, sans-serif;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center;
}

.faq-box {
  border: 1px solid #ffcc00;
  border-radius: 12px;
  padding: 25px;
  background-color: transparent;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-box h3 {
  color: #ffcc00;
  font-size: 18px;
  margin-bottom: 10px;
}

.faq-box p {
  color: #d0d0d0;
  font-size: 15px;
  line-height: 1.5;
}

.faq-box:hover {
  box-shadow: 0 0 12px #ffcc00;
  transform: translateY(-5px);
}


@media (max-width: 768px) {
  .careers_landingpage h1 {
    font-size: 2.2rem;
  }

  .careers_content p {
    font-size: 15px;
  }

  .careers_buttons {
    flex-direction: column;
    gap: 15px;
  }

  .careers_floating_img {
    width: 6rem;
    height: 6rem;
  }

  .careers_blur_circle {
    width: 12rem;
    height: 12rem;
  }

/* Positioning */
.top-left {
  top: 60px;
  left: 180px;
}

.bottom-right {
  bottom: 0;
  right: 180px;
}

.bottom-left {
  bottom: 150px;
  left: 230px;
}

.top-right {
  top: 190px;
  right: 250px;
}
 .timeline_row {
    display: flex;
    flex-direction: row;
    margin-left: -60px;
   
  }
  

  .timeline_box.left,
  .timeline_box.right {
    order: 2;
    width: 100%;
    text-align: center;
    padding: 20px;
  }

  .step_circle {
    order: 1;
    margin: 0 auto 10px;
        width: 70px;
    height: 50px;
  }
 .faq-grid {
    grid-template-columns: 1fr;
  }
   .form_group select {
    font-size: 16px;
    padding: 14px;
  }
}
@media (max-width: 380px) {

  .careers_content {
    position: relative;
    z-index: 10;
    max-width: 890px;
    margin-top: 130px;
}
    .top-right {
        top: 142px;
        right: 250px;
    }


  
}