/* career page css */

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

body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Poppins', sans-serif !important;
  background: #0f6b57 !important;
  color: #ffffff !important;
  margin: 0;
}

/* banner section start  */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('https://auriic.co/wp-content/uploads/2026/03/compressed_image-12.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
}

/* Green Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 107, 87, 0.95) 0%,
    rgba(15, 107, 87, 0.85) 40%,
    rgba(15, 107, 87, 0.3) 70%,
    rgba(15, 107, 87, 0) 100%
  );
}

.hero-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 120px;
}

.hero-content {
  max-width: 100%;
}

/* Title */
.title-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}


.vertical-line {
  width: 5px;
  height: 140px;
  background: #d4a537;
  margin-top: 15px;
}

.hero h1 {
  font-weight: 700;
  font-size: 72px;
  line-height: 90px;
  margin: 0;
  color: rgba(255, 255, 255, 1);
}

.highlight {
  color: #d4a537;
}

/* Description */
.hero-description {
  margin-top: 40px;
  font-size: 24px;
  line-height: 38px;
  max-width: 750px;
}

/* Buttons */
.hero-buttons {
  margin-top: 50px;
  display: flex;
  gap: 25px;
}

.btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-primary {
  background: #d4a537;
  color: #ffffff;
}

.btn-primary:hover {
  background: #b88d2c;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #0f6b57;
}

/* =====================================================
   ================= RESPONSIVE ========================
   ===================================================== */

/* 1440px */
@media (max-width: 1440px) {
  .hero h1 {
    font-size: 64px;
    line-height: 80px;
  }
}

/* 1200px */
@media (max-width: 1200px) {
  .hero-container {
    padding: 0 80px;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 72px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
    line-height: 64px;
  }

  .hero-description {
    font-size: 20px;
    line-height: 32px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0;
  }

  .hero-container {
    padding: 0 40px;
  }

  .title-wrapper {
    gap: 20px;
  }

  .vertical-line {
    height: 100px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 50px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 576px */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 30px;
    line-height: 42px;
  }

  .hero-description {
    font-size: 18px;
    line-height: 30px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .hero-container {
    padding: 0 25px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 36px;
  }
}

/* 425px */
@media (max-width: 425px) {
  .vertical-line {
    display: none;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 32px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 26px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
/* banner section end  */


/* career css start */


    .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      max-width: 1280px;
      margin: 0 auto 32px;
		padding-top: 6%;
		padding-bottom: 6%;
    }

    .card {
      background: #ffffff;
      border-radius: 14px;
      padding: 20px 22px 18px;
      box-shadow: 0 2px 14px rgba(0,0,0,0.07);
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: box-shadow 0.25s, transform 0.2s;
    }
    .card:hover {
      box-shadow: 0 8px 28px rgba(10,171,149,0.16);
      transform: translateY(-2px);
    }

    .card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .time {
      font-size: 11.5px;
      color: #9aacb8;
      font-weight: 500;
    }

    .bookmark {
      color: #b0bec5;
      line-height: 0;
      cursor: pointer;
      transition: color 0.2s;
    }
    .bookmark:hover { color: #0aab95; }

    .job-title {
      font-size: 16.5px;
      font-weight: 700;
      color: #1a1a2e;
      line-height: 1.25;
      margin-top: 2px;
    }

    .company {
      font-size: 12px;
      color: #9aacb8;
      font-weight: 500;
      margin-top: 1px;
    }

    .meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 4px;
    }

    .meta-left {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #f0faf9;
      color: #0aab95;
      border-radius: 6px;
      padding: 4px 10px;
      font-size: 11.5px;
      font-weight: 600;
      border: 1px solid rgba(10,171,149,0.15);
      white-space: nowrap;
    }

    .meta-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      color: #4a5568;
      font-weight: 500;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      padding: 9px 20px;
      font-size: 12.5px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s, color 0.2s;
      border: none;
      text-decoration: none;
      flex-shrink: 0;
    }

    .btn-apply {
      background: #0aab95;
      color: #ffffff !important;
    }
    .btn-apply:hover { background: #089982; transform: scale(1.03); }

    .btn-details {
      background: transparent;
      color: #0aab95;
      border: 2px solid #0aab95;
    }
    .btn-details:hover { background: #0aab95; color: #ffffff; }

    /* Pagination */
    .pagination {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1280px;
      margin: 0 auto;
    }

    .page-nums { display: flex; gap: 8px; }

    .page-num {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.18s;
    }
    .page-num.active { background: #f5a623; color: #ffffff; }
    .page-num:not(.active) { background: rgba(255,255,255,0.18); color: #ffffff; }
    .page-num:not(.active):hover { background: rgba(255,255,255,0.32); }

    .btn-next {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.18);
      color: #ffffff;
      border-radius: 8px;
      padding: 9px 22px;
      font-size: 13.5px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.18s;
    }
    .btn-next:hover { background: rgba(255,255,255,0.32); }

    /* Responsive */
    @media (max-width: 1440px) { .grid { max-width: 1180px; } }

    @media (max-width: 1200px) {
      .grid { max-width: 960px; gap: 16px; }
      .job-title { font-size: 15.5px; }
    }

    @media (max-width: 1024px) {
      body { padding: 28px 18px 40px; }
      .grid { max-width: 100%; gap: 14px; }
      .card { padding: 18px 18px 16px; }
    }

    @media (max-width: 768px) {
      body { padding: 22px 14px 36px; }
      .grid { grid-template-columns: 1fr; gap: 14px; }
    }

    @media (max-width: 576px) {
      body { padding: 18px 12px 30px; }
      .card { padding: 16px 16px 14px; }
      .meta { flex-direction: column; align-items: flex-start; }
      .btn { width: 100%; }
    }

    @media (max-width: 480px) {
      .job-title { font-size: 14.5px; }
      .meta-item, .badge { font-size: 11px; }
      .pagination { flex-wrap: wrap; gap: 10px; justify-content: center; }
    }

    @media (max-width: 425px) {
      body { padding: 14px 10px 26px; }
      .card { padding: 14px 14px 12px; border-radius: 10px; }
      .job-title { font-size: 14px; }
      .company { font-size: 11px; }
      .time { font-size: 10.5px; }
      .meta-left { flex-direction: column; align-items: flex-start; gap: 6px; }
    }

/* career css end */


/* cta section css start */

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

.cta-section {
  position: relative;
  background: url('https://auriic.co/wp-content/uploads/2026/03/compressed_image-14.webp') 
              center/cover no-repeat;
  padding: 140px 0;
  display: flex;
  align-items: center;
}

/* Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 107, 87, 0.92);
}

/* Container */
.cta-container {
  position: relative;
  max-width: 1600px;
  margin: auto;
  padding: 0 120px;
  width: 100%;
}

.cta-content h2 {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0;
  flex-wrap: wrap;
}

/* 250+ */
.highlight-number {
  font-size: 140px;
  font-weight: 700;
  color: #d4a537;
  line-height: 1;
}

/* Text */
.cta-text {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  line-height: 64px;
  max-width: 900px;
}

/* =====================================================
   ================= RESPONSIVE ========================
   ===================================================== */

/* 1440px */
@media (max-width: 1440px) {
  .highlight-number {
    font-size: 120px;
  }

  .cta-text {
    font-size: 42px;
    line-height: 56px;
  }
}

/* 1200px */
@media (max-width: 1200px) {
  .cta-container {
    padding: 0 80px;
  }

  .highlight-number {
    font-size: 100px;
  }

  .cta-text {
    font-size: 36px;
    line-height: 50px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .highlight-number {
    font-size: 80px;
  }

  .cta-text {
    font-size: 30px;
    line-height: 44px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .cta-section {
    padding: 100px 0;
  }

  .cta-container {
    padding: 0 40px;
  }

  .cta-content h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .highlight-number {
    font-size: 70px;
  }

  .cta-text {
    font-size: 26px;
    line-height: 38px;
  }
}

/* 576px */
@media (max-width: 576px) {
  .highlight-number {
    font-size: 60px;
  }

  .cta-text {
    font-size: 22px;
    line-height: 34px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .cta-container {
    padding: 0 25px;
  }

  .highlight-number {
    font-size: 50px;
  }

  .cta-text {
    font-size: 20px;
    line-height: 30px;
  }
}

/* 425px */
@media (max-width: 425px) {
  .highlight-number {
    font-size: 44px;
  }

  .cta-text {
    font-size: 18px;
    line-height: 28px;
  }
}

/* cta section css end */


/* logo section css start */


.trusted-section {
  background: #0f6b57;
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
}

/* TEXT */

.trusted-text {
  max-width: 1600px;
  margin: auto;
  padding: 0 120px 100px;
}

.trusted-text h2 {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin: 0;
}

.trusted-number {
  font-weight: 600;
  font-size: 136px;
  line-height: 64px;
  color: #d4a537;
}

.trusted-desc {
  font-weight: 400;
  font-size: 56px;
  line-height: 72px;
  max-width: 900px;
}

/* MARQUEE */

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 120px;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

.logo-marquee.reverse .logo-track {
  animation: scrollRight 25s linear infinite;
}

.logo-track img {
  height: 45px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Smooth infinite effect */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Pause on hover */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* =====================================================
   ================= RESPONSIVE ========================
   ===================================================== */

@media (max-width: 1440px) {
  .trusted-number { font-size: 120px; }
  .trusted-desc { font-size: 48px; }
}

@media (max-width: 1200px) {
  .trusted-text { padding: 0 80px 80px; }
  .trusted-number { font-size: 100px; }
  .trusted-desc { font-size: 40px; }
}

@media (max-width: 1024px) {
  .trusted-number { font-size: 80px; }
  .trusted-desc { font-size: 32px; line-height: 48px; }
}

@media (max-width: 768px) {
  .trusted-text h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .trusted-number { font-size: 70px; }
  .trusted-desc { font-size: 26px; line-height: 40px; }

  .logo-track { gap: 80px; }
}

@media (max-width: 576px) {
  .trusted-number { font-size: 60px; }
  .trusted-desc { font-size: 22px; }
}

@media (max-width: 480px) {
  .trusted-text { padding: 0 25px 60px; }
  .trusted-number { font-size: 50px; }
  .trusted-desc { font-size: 20px; }
  .service-container
  {
    flex-direction: column;
    max-width: 100%;
  }
}

@media (max-width: 425px) {
  .trusted-number { font-size: 44px; }
  .trusted-desc { font-size: 18px; }
  .logo-track img { height: 30px; }
  .service-container
  {
    flex-direction: column;
    max-width: 100%;
  }
}

/* logo section css end */


/* faq start */
  
.service-faq-section {
    padding: 80px 20px;
    background: rgba(0, 86, 72, 1);
}

.service-container {
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Lottie */
.lottie-box {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Right FAQ Card */
.faq-card {
    flex: 1;
    background: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    width: 100%;
}

/* FAQ Items */
.service-faq-section {
    padding: 80px 20px;
}

.service-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Lottie */
.lottie-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Right FAQ Card */
.faq-card {
    flex: 1;
    background: #f4f4f4 !important;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    background: #f4f4f4 !important;
    transition: 0.3s;
}

.faq-question span{
  font-weight: 600;
  font-size: 21px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: rgba(22, 28, 45, 1);
}


.faq-question:hover {
    background: #ececec !important;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 18px;
    transition: 0.3s;
    color: rgba(22, 28, 45, 1);
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.faq-answer span{
  font-weight: 400;
  font-size: 17px;
  line-height: 29px;
  letter-spacing: -0.2px;
}

/* First item highlighted top border */
.faq-item:first-child .faq-question {
    border-top: 4px solid #f4b400;
}

.faq-card span{
    color: rgba(22, 28, 45, 1) !important;

} 


@media(max-width:425px){
  .service-faq-section{
      padding: 20px 20px;
  }
}


/* contact form popup start*/
.modalOverlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    z-index: 999;
    flex-direction: column;
    justify-items: center;
    align-content: space-evenly;
}

/* Modal Box */
.modalBox{
width:750px;
max-width:95%;
background:#fff;
padding:35px;
border-radius:6px;
position:relative;
}

/* Close Button */
.closeBtn{
position:absolute;
right:20px;
top:15px;
font-size:22px;
cursor:pointer;
}

/* Title */
.formTitle{
font-family:'Poppins';
font-weight:500;
font-size:24px;
line-height:20px;
letter-spacing:0%;
color:rgba(0,114,96,1);
margin-bottom:30px;
}

/* Row Layout */
.formRow{
display:flex;
gap:30px;
margin-bottom:25px;
}

/* Form Group */
.formGroup{
flex:1;
}

/* Label Fix */
.formGroup label{
display:block;
font-size:14px;
font-weight:500;
color:#333;
margin-bottom:8px;
}

/* Inputs */
.formGroup input,
.formGroup textarea{
width:100%;
border:none;
border-bottom:1px solid #cfcfcf;
padding:8px 0;
font-size:14px;
outline:none;
background:transparent;
}

/* Message box */
.formGroup textarea{
height:70px;
resize:none;
}

/* Upload Box */
.uploadBox{
border:1px dashed #ccc;
padding:25px;
text-align:center;
margin:25px 0;
}

/* Button */
.submitBtn{
background:#c79a3b;
border:none;
padding:12px 25px;
color:#fff;
cursor:pointer;
font-family:Poppins;
}

/* ===================== */
/* 2560px (Large screens) */
/* ===================== */
@media (max-width:2560px){
.modalBox{
width:850px;
}
}

/* ===================== */
/* 1440px */
/* ===================== */
@media (max-width:1440px){
.modalBox{
width:800px;
}
}

/* ===================== */
/* 1400px */
/* ===================== */
@media (max-width:1400px){
.modalBox{
width:750px;
}
}

/* ===================== */
/* 1280px */
/* ===================== */
@media (max-width:1280px){
.modalBox{
width:700px;
padding:30px;
}
}

/* ===================== */
/* 1200px */
/* ===================== */
@media (max-width:1200px){
.modalBox{
width:650px;
}
}

/* ===================== */
/* 768px (Tablet) */
/* ===================== */
@media (max-width:768px){

.modalBox{
width:90%;
padding:25px;
}

.formRow{
flex-direction:column;
gap:15px;
}

.formGroup textarea{
height:60px;
}

}

/* ===================== */
/* 576px */
/* ===================== */
@media (max-width:576px){

.modalBox{
width:92%;
padding:20px;
}

.formTitle{
font-size:20px;
}

.submitBtn{
width:100%;
}

.uploadBox{
padding:20px;
}

}

/* ===================== */
/* 480px */
/* ===================== */
@media (max-width:480px){

.modalBox{
width:94%;
padding:18px;
}

.formTitle{
font-size:18px;
}

.closeBtn{
font-size:20px;
top:10px;
right:12px;
}

}

/* ===================== */
/* 425px (Mobile) */
/* ===================== */
@media (max-width:425px){

.modalBox{
width:95%;
padding:16px;
}

.formTitle{
font-size:17px;
}

.formGroup input,
.formGroup textarea{
font-size:13px;
}

.uploadBox{
padding:15px;
}

}

/* ===================== */
/* Ultra Wide 2560+ */
/* ===================== */
@media (min-width:2561px){

.modalBox{
width:900px;
}

}

/* contact form popup end */