.career-section {
  padding: 60px 20px;
  background-color: #f4f7f9; 
  width: 100%;
  box-sizing: border-box;
}

.career-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header Styling */
.career-header {
  text-align: center;
  margin-bottom: 40px;
}

.career-header h2 {
  /* font-size: 32px; */
  color: #1a2b49;
  margin-bottom: 2px;
}

.career-header p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  /* max-width: 650px; */
  margin: 0 auto;
}

/* Form Container Box */
.career-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Grid Layout Rows */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 20px;
}

/* Labels and Inputs */
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.form-group .file-info {
  font-size: 12px;
  color: #64748b;
  font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background-color: #f8fafc;
  color: #1e293b;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

/* Input Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb; /* Corporate Blue Focus */
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Custom File Upload Styling */
.file-upload-wrapper input[type="file"] {
  background: #f1f5f9;
  padding: 6px;
  border: 2px dashed #cbd5e1;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.file-upload-wrapper input[type="file"]:hover {
  border-color: #2563eb;
  background-color: #f8fafc;
}

/* Textarea specific overrides */
.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

/* Submit Button Layout */
.form-submit {
  text-align: right;
  margin-top: 10px;
}

.submit-btn {
  background-color: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.15);
}

.submit-btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â°ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± Responsive Layout for Tablets and Mobile Phones */
@media (max-width: 768px) {
  .career-form {
    padding: 25px 20px;
  }
  
  .form-row {
    flex-direction: column; 
    gap: 20px;
    margin-bottom: 0;
  }

  .form-group {
    margin-bottom: 20px;
  }
  
  .form-submit {
    text-align: center;
  }
  
  .submit-btn {
    width: 100%;
  }
}

.about-pioneer {
    padding: 0px 20px;
    background: #ffffff;
    color: #1a1a1a;
}

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




/* Paragraph */
.about-text {

margin: 0 auto 50px;

text-align: center;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Stat Box */
.stat-box {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Number */
.stat-box h3 {
    font-size: 42px;
    font-weight: 800;
    color: #001440;
    margin-bottom: 10px;
}

/* Label */
.stat-box p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* Decorative top line */
.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #23529c, #6ed7ff);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .about-pioneer h2 {
        font-size: 30px;
    }

    .about-text {
        font-size: 16px;
    }

    .stat-box h3 {
        font-size: 34px;
    }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Base Card */
.why-card {
    padding: 25px 20px;
    border-radius: 14px;
    text-align: left;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    min-height: 280px;
    color: #1a1a1a;
}

/* Hover */
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Icon common */
.why-card i {
    font-size: 26px;
    margin-bottom: 12px;
    color: #ffffff;
}

/* Headings */
.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #95deff;
}

/* Text */
.why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

/* ===== Different Light Corporate Blue Shades ===== */

/* Card 1 */
.why-card {
    background: #001440;
}



/* Responsive */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ËœÃ‹â€  4 cards per row */
    gap: 25px;
}

/* Card styling same */
.benefit-card {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: left;
    border-top: 4px solid #e3f2fd;
    min-height: 180px;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-top: 4px solid #225299;
}

/* Icon */
.benefit-card i {
    font-size: 24px;
    color: #24519f;
    margin-bottom: 10px;
}

/* Title */
.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Text */
.benefit-card p {
    font-size: 13.5px;
    line-height: 1.5;
    color: #555;
}

/* Responsive */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.culture-split {
    padding: 90px 20px;
    background: #ffffff;
}

.culture-split .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.culture-split h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 10px;
}

.subheading {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* MAIN SPLIT BOX */
.split-box {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

/* LEFT SIDE */
.split-left {
    flex: 1;
    background: #eaf4ff;
    padding: 35px;
    text-align: left;
}

/* RIGHT SIDE */
.split-right {
    flex: 1;
    background: #ffecec;
    padding: 35px;
    text-align: left;
}

/* CENTER DIVIDER */
.split-box::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #d1d5db;
}

/* HEADINGS */
.split-left h3,
.split-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* LIST */
.split-left ul,
.split-right ul {
    padding-left: 18px;
}

.split-left li,
.split-right li {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .split-box {
        flex-direction: column;
    }

    .split-box::before {
        display: none;
    }
}
.current-openings{
    padding:90px 20px;
    background:#f7f9fc;
}

.current-openings .container{
    max-width:1200px;
    margin:auto;
}

.current-openings h2{
    text-align:center;
    font-size:38px;
    font-weight:700;
    color:#0d1b2a;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
    color:#555;
    line-height:1.8;
}

.openings-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.opening-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:.3s ease;
    border-left: 4px solid #2e70b2;
    border-right: 4px solid #2e70b2;
    position:relative;
}

.opening-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.location-badge{
    display:inline-block;
    background: #0195df;
    /* background-image: linear-gradient(250deg, #65cfff 19%, #23559b 100%); */
    color: #ffffff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.opening-card h3{
    font-size:20px;
    margin-bottom:12px;
    color:#1a1a1a;
}

.opening-card p{
    color:#555;
    line-height:1.7;
    font-size:14px;
}

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

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

.job-view-section {
    background: #f7f7f7;
    padding: 40px 0 70px;
    /* font-family: Arial, sans-serif; */
}

.job-view-section .container {
    max-width: 1170px;
    margin: auto;
}


/* TOP JOB HEADER */

.job-header {
    background: #fff;
    padding: 35px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.job-header h1 {
    font-size: 32px;
    color: #252525;
    margin: 0 0 25px;
}

.job-meta p {
    margin: 12px 0;
    /* color: #333; */
    font-size: 15px;
    font-weight: 600;
}

.job-meta i {
    width: 25px;
    color: #0195df;
    font-size: 18px;
}

.job-apply-top a {
    display: inline-block;
    background: #337fbd;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
}

.job-apply-top a:hover {
    background: #25699f;
}


/* JOB DETAIL */

.job-detail-card {
    background: #fff;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 35px;
}

.job-detail-card h2 {
    text-align: center;
    font-size: 30px;
    /* color: #252525; */
    margin: 0 0 25px;
    font-weight: 600;
}

.job-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-box {
    border: 1px solid #e5e5e5;
    min-height: 65px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
}

.detail-box > i {
    width: 75px;
    font-size: 45px;
    color: #0195df;
    text-align: center;
    margin-right: 20px;
}

.detail-box div {
    text-align: center;
    flex: 1;
}

.detail-box strong {
    display: block;
    font-size: 14px;
    color: #111;
    margin-bottom: 3px;
}

.detail-box span {
    display: block;
    font-size: 13px;
    color: #222;
}


/* DESCRIPTION */

.job-description-card {
    background: #fff;
    padding: 40px 50px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.job-description-card h2 {
    font-size: 28px;
    color: #252525;
    margin-bottom: 20px;
}

.job-description-card h3 {
    /* font-size: 22px; */
    /* color: #252525; */
    /* margin-top: 30px; */
}

.job-description-card p,
.job-description-card li {
    font-size: 15px;
    line-height: 1.8;
    color: #000000;
    list-style: disc;
}

.job-description-card ul {
    padding-left: 20px;
}


/* BOTTOM APPLY */

.job-apply-bottom {
    text-align: center;
    padding-top: 40px;
}

.job-apply-bottom a {
    display: inline-block;
    background: #0195df;
    color: #fff;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
}

.job-apply-bottom a:hover {
    background: #2657a0;
    color: white;
}


/* MOBILE */

@media(max-width: 767px) {

    .job-view-section {
        padding: 25px 15px 50px;
    }

    .job-header {
        padding: 25px;
        display: block;
    }

    .job-header h1 {
        font-size: 26px;
    }

    .job-apply-top {
        margin-top: 25px;
    }

    .job-apply-top a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .job-detail-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .job-detail-card {
        padding: 20px 15px;
    }

    .job-description-card {
        padding: 30px 20px;
    }
}