* { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: Arial, Helvetica, sans-serif; }

  .top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    padding: 14px 40px 0 40px;
    background: #fff;
  }
  .top-bar a {
    color: #58595b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
  }
  .top-bar a:hover { color: #1b6d6a; }

  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 40px 18px 40px;
    background: #fff;
  }

  .logo-block {
    margin-top:-15px;
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo-text {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(to right, #14355e 0%, #1b6d6a 55%, #4fae9b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .dots {
    display: grid;
    grid-template-columns: repeat(5, 6px);
    grid-auto-rows: 6px;
    gap: 3px;
    margin-left: 8px;
  }
  .dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4fae9b;
  }
  .tagline {
    font-size: 13px;
    letter-spacing: 2px;
    color: #58595b;
    font-weight: 600;
    margin-top: 4px;
  }

  .primary-links {
    display: flex;
    align-items: center;
    gap: 34px;
  }

  .nav-item {
    position: relative;
  }
  .nav-item > button {
    background: none;
    border: none;
    font-family: inherit;
    color: #262626;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 8px 0;
  }
  .nav-item > button:hover,
  .nav-item.open > button {
    color: #1b6d6a;
  }
  .plain-link {
    color: #262626;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
  }
  .plain-link:hover { color: #1b6d6a; }

  .caret {
    font-size: 12px;
    margin-top: 2px;
    transition: transform 0.15s ease;
    display: inline-block;
  }
  .nav-item.open .caret { transform: rotate(180deg); }

  .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    border-radius: 6px;
    min-width: 220px;
    padding: 10px 0;
    z-index: 100;
  }
  .nav-item.open .dropdown { display: block; }

  .dropdown a {
    display: block;
    padding: 10px 22px;
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
  }
  .dropdown a:hover {
    background: #f2f7f6;
    color: #1b6d6a;
  }

  .dd-parent {
    position: relative;
  }
  .dd-parent > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    text-align: left;
    padding: 10px 22px;
    color: #444;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
  }
  .dd-parent:hover > button,
  .dd-parent.open > button {
    background: #f2f7f6;
    color: #1b6d6a;
  }
  .dd-parent > button .sub-caret {
    font-size: 15px;
    line-height: 1;
    color: #999;
    transition: color 0.15s ease;
  }
  .dd-parent.open > button .sub-caret {
    color: #1b6d6a;
  }

  .submenu {
    display: none;
    position: absolute;
    top: -10px;
    left: 100%;
    margin-left: 2px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    border-radius: 6px;
    min-width: 220px;
    padding: 10px 0;
    z-index: 101;
  }
  .dd-parent.open > .submenu {
    display: block;
  }

  .search-icon {
    font-size: 18px;
    color: #262626;
    cursor: pointer;
    background: none;
    border: none;
  }


  .career-banner {
    position: relative;
    width: 100%;
    height: 700px;
    background: url('img/hero-section.png') center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.career-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 90px 20px 0;
}

.banner-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-content p {
    font-size: 18px;
    color: #222;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .career-banner { height: 550px; }
    .banner-content { padding-top: 70px; }
    .banner-content h1 { font-size: 48px; }
    .banner-content p { font-size: 22px; }
}

@media (max-width: 768px) {
    .career-banner { height: 420px; }
    .banner-content { padding: 50px 20px 0; }
    .banner-content h1 { font-size: 32px; }
    .banner-content p { font-size: 18px; line-height: 1.5; }
}

 .life-section{
      padding:60px 0 70px;
      text-align:center;
      overflow:hidden;
      background:#F7F3EA;
      font-family:'Segoe UI', Arial, sans-serif;
    }
    .life-section h1{
      font-size:42px;
      font-weight:800;
      letter-spacing:2px;
      margin:0 0 18px;
      background:linear-gradient(90deg, #1E5A5A, #3E9C9C);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .life-section p.subtitle{
      font-size:16px;
      letter-spacing:1px;
      color:#2A2A2A;
      text-transform:uppercase;
      margin:0 0 50px;
      font-weight:600;
    }
    .life-section .marquee-wrapper{
      width:100%;
      overflow:hidden;
      position:relative;
      -webkit-mask-image:linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
      mask-image:linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    }
    .life-section .marquee-track{
      display:flex;
      width:max-content;
      animation:life-scroll-left 35s linear infinite;
    }
    .life-section .marquee-track:hover{
      animation-play-state:paused;
    }
    .life-section .marquee-track img{
      height:260px;
      width:auto;
      object-fit:cover;
      margin-right:14px;
      border-radius:4px;
      flex-shrink:0;
    }
    @keyframes life-scroll-left{
      from{ transform:translateX(0); }
      to{ transform:translateX(-50%); }
    }
    @media (max-width:768px){
      .life-section h1{font-size:34px;}
      .life-section p.subtitle{font-size:14px; padding:0 20px;}
      .life-section .marquee-track img{height:150px;}
    }
    @media (prefers-reduced-motion: reduce){
      .life-section .marquee-track{animation:none;}
    }

.our-values-section{
    position:relative;
    padding:90px 0;
    background:url("https://srsg.com/wp-content/uploads/2026/05/career-background-image1.png") center center/cover no-repeat;
    overflow:hidden;
}

.our-values-section .overlay{
    position:absolute;
    inset:0;
}

.our-values-section .container{
    position:relative;
    z-index:2;
    max-width:1320px;
    margin:auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    color:#fff;
    font-size:40px;
    font-weight:800;
    margin-bottom:18px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title p{
    color:#f3f3f3;
    font-size:16px;
    max-width:760px;
    margin:auto;
    line-height:1.8;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

.value-card{
    text-align:center;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
}

.value-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.value-image{
    overflow:hidden;
}

.value-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
    transition:.6s;
}

.value-card:hover img{
    transform:scale(1.08);
}

.value-content{
    padding:28px 25px 35px;
}

.value-content h3{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:18px;
    text-transform:uppercase;
}

.value-content p{
    color:#e9e9e9;
    font-size:14px;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){
.section-title h2{ font-size:42px; }
.section-title p{ font-size:18px; }
.values-grid{ grid-template-columns:repeat(2,1fr); gap:30px; }
.value-image img{ height:220px; }
}

@media(max-width:767px){
.our-values-section{ padding:70px 0; }
.section-title{ margin-bottom:40px; }
.section-title h2{ font-size:34px; }
.section-title p{ font-size:16px; line-height:1.7; }
.values-grid{ grid-template-columns:1fr; gap:25px; }
.value-image img{ height:220px; }
.value-content{ padding:25px 20px 30px; }
.value-content h3{ font-size:24px; }
.value-content p{ font-size:16px; }
}

.career-culture-section{
    padding:40px 0;
    background:#f5f2ea;
    overflow:hidden;
}

.career-culture-section .container{
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}

.career-heading{
    text-align:center;
    margin-bottom:70px;
}

.career-heading h2{
    font-size:34px;
    line-height:1.2;
    font-weight:800;
    text-transform:uppercase;
    color:#0d6f95;
    margin:0;
}

.career-heading h2 span{
    display:block;
    margin-top:12px;
    color:#13a6a1;
}

.career-content{
    position:relative;
    display:flex;
    align-items:center;
}

.career-image{
    width:62%;
}

.career-image img{
    width:100%;
    display:block;
    border-radius:8px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.career-card{
    width: 50%;
    background: #fff;
    padding: 35px;
    margin-left: -15px;
    position: relative;
    z-index: 2;
    border-radius: 0px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    margin-top: 110px;
}

.career-card:before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:12px;
    background:linear-gradient(135deg,#ffffff 0%,#f7fffd 100%);
    z-index:-1;
}

.career-card h3{
    font-size:26px;
    line-height:1.2;
    margin-bottom:22px;
    font-weight:700;
    color:#111;
}

.career-card .subtitle{
    font-size:16px;
    color:#444;
    font-weight:500;
}

.career-card p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:0;
}

@media (max-width:991px){
.career-heading h2{ font-size:40px; }
.career-content{ flex-direction:column; }
.career-image{ width:100%; }
.career-card{
   width: 42%;
    background: #fff;
    padding: 25px;
    margin-left: -120px;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}
.career-card h3{ font-size:36px; }
.career-card p{ font-size:18px; }
}

@media (max-width:767px){
.career-culture-section{ padding:60px 0; }
.career-heading{ margin-bottom:35px; }
.career-heading h2{ font-size:28px; line-height:1.35; }
.career-heading h2 span{ margin-top:8px; }
.career-card{
    width:100%;
    margin-top:20px;
    margin-left:0;
    padding:30px 24px;
    border-radius:10px;
}
.career-card h3{ font-size:26px; }
.career-card .subtitle{ font-size:18px; }
.career-card p{ font-size:16px; line-height:1.8; }
}

.wellness-section{
    background:#f5f2ea;
    padding:60px 20px;
    overflow:hidden;
}

.wellness-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    align-items:center;
    position:relative;
}

.wellness-content{
    margin-top: 75px;
    width: 56%;
    background: #f5fdfb;
    padding: 65px;
    position: relative;
    z-index: 2;
}

.wellness-content h2{
    font-size:34px;
    font-weight:700;
    color:#000;
    margin-bottom:30px;
    line-height:1.2;
}

.wellness-content p{
    font-size:16px;
    color:#444;
    line-height:1.8;
}

.wellness-image{
    width:50%;
    margin-left:-70px;
    position:relative;
    z-index:1;
}

.wellness-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

@media (max-width:991px){
.wellness-container{ flex-direction:column; }
.wellness-image{ width:100%; margin-left:0; margin-bottom:-40px; order:1; }
.wellness-content{ width:100%; padding:50px 40px; order:2; }
.wellness-content h2{ font-size:40px; }
.wellness-content p{ font-size:20px; }
}

@media (max-width:767px){
.wellness-section{ padding:60px 15px; }
.wellness-content{ padding:35px 25px; }
.wellness-content h2{ font-size:30px; margin-bottom:20px; }
.wellness-content p{ font-size:17px; line-height:1.7; }
}

.srsg-sec-02{
    position:relative;
    width:100%;
    min-height:380px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    background:url('https://srsg.com/wp-content/uploads/2026/05/career-background-image2.png') center center/cover no-repeat;
}

.srsg-sec-02-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.srsg-sec-02-content{
    position:relative;
    z-index:2;
    max-width:1200px;
    padding:20px;
}

.srsg-sec-02-content h1{
    margin:0;
    color:#fff;
    font-size:26px;
    font-weight:700;
    line-height:1.2;
    letter-spacing:1px;
    text-transform:uppercase;
}

@media (max-width:991px){
    .srsg-sec-02{ min-height:300px; }
    .srsg-sec-02-content h1{ font-size:40px; }
}

@media (max-width:767px){
    .srsg-sec-02{ min-height:220px; padding:40px 20px; }
    .srsg-sec-02-content h1{ font-size:28px; line-height:1.35; }
}

 .footer {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #2b3f66 0%, #2f6b7a 55%, #2e9b8f 100%);
    color: #ffffff;
    padding: 60px 60px 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
  }

  .footer .connect h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 24px;
    text-transform: uppercase;
  }

  .footer .connect h2 .chevron {
    font-size: 30px;
    font-weight: 900;
  }

  .footer .connect p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
    color: #eef2f5;
    margin: 0 0 30px;
  }

  .footer .socials {
    display: flex;
    gap: 14px;
  }

  .footer .socials a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f7a6f;
    text-decoration: none;
    transition: transform 0.2s ease;
  }

  .footer .socials a:hover { transform: translateY(-3px); }

  .footer .socials svg { width: 22px; height: 22px; fill: currentColor; }

  .footer .overview h2 { font-size: 38px; font-weight: 700; margin: 0 0 24px; }

  .footer .overview ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
  }

  .footer .overview a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    opacity: 0.95;
    transition: opacity 0.2s ease;
    font-weight: 400;
  }

  .footer .overview a:hover { opacity: 1; text-decoration: underline; }

  .footer .map-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }

  .footer .map-card iframe { display: block; width: 100%; height: 320px; border: 0; }

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

.career701-section{
    padding:90px 20px;
    background:#f8f6ef;
    font-family:Arial, Helvetica, sans-serif;
}

.career701-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.career701-content{ flex:1; max-width:500px; }

.career701-content h2{
    margin:0 0 25px;
    font-size:36px;
    font-weight:700;
    color:#0d7d96;
    line-height:1.1;
    text-transform:uppercase;
}

.career701-content p{
    font-size:16px;
    line-height:1.7;
    color:#222;
    margin-bottom:45px;
}

.career701-line{
    display:block;
    width:110px;
    height:4px;
    background:#0d7d96;
}

.career701-form-box{
    width:420px;
    background:linear-gradient(180deg,#0c6f8f,#0fa0a0);
    padding:40px;
    border-radius:16px;
}

.career701-form-box form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.career701-form-box input,
.career701-form-box textarea{
    width:100%;
    border:none;
    border-radius:14px;
    background:#fff;
    padding:10px;
    font-size:14px;
    color:#333;
    outline:none;
    box-sizing:border-box;
}

.career701-form-box textarea{ height:140px; resize:none; }

.career701-form-box input[type="file"]{ padding:12px 16px; }

.career701-form-box button{
    height: 40px;
    border: none;
    border-radius: 14px;
    background: #fff;
    color: #222;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: .3s;
}

.career701-form-box button:hover{ background:#f2f2f2; }

@media (max-width:991px){
    .career701-container{ flex-direction:column; gap:0px; }
    .career701-content{ max-width:100%; text-align:center; }
    .career701-line{ margin:auto; }
    .career701-form-box{ width:100%; max-width:550px; }
    .career701-content h2{ font-size:42px; }
    .career701-content p{ font-size:20px; }
}

@media (max-width:576px){
    .career701-section{ padding:60px 15px; }
    .career701-form-box{ padding:25px; }
    .career701-content h2{ font-size:34px; }
    .career701-content p{ font-size:18px; }
    .career701-form-box button{ font-size:22px; }
}

 .jobs-section {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #e7f5f8 0%, #dcf0f4 50%, #e7f5f8 100%);
    padding: 50px 165px;
  }
 
  .job-search-bar {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(18, 137, 167, 0.08);
    max-width: 1400px;
    margin: 0 auto 40px;
  }
 
  .job-category label {
    display: block;
    font-weight: 700;
    font-size: 17px;
    color: #1a1a2e;
    margin-bottom: 8px;
  }
 
  .job-category select {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #9a9aa5;
    padding-right: 24px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M0 0 L6 8 L12 0 Z' fill='%231289a7'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
    cursor: pointer;
  }
 
  .search-actions { display: flex; align-items: center; gap: 24px; }
 
  .search-keywords-wrap {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 0.35s ease, opacity 0.3s ease;
  }
 
  .search-keywords-wrap.open { max-width: 260px; opacity: 1; }
 
  .search-keywords-input {
    width: 220px;
    border: none;
    border-bottom: 2px solid #1289a7;
    background: transparent;
    font-size: 16px;
    color: #1a1a2e;
    padding: 4px 4px 8px;
    outline: none;
  }
 
  .search-keywords-input::placeholder { color: #9a9aa5; }
 
  .search-icon {
    color: #1289a7;
    display: flex;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
 
  .search-icon svg { width: 24px; height: 24px; }
 
  .search-btn {
    background: linear-gradient(90deg, #1289a7 0%, #9DCEDA 100%);
    color: #ffffff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }
 
  .job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
  }
 
  .job-card {
    background: #ffffff;
    border: 1px solid #9DCEDA;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
  }
 
  .job-card h3 {
    color: #1289a7;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 14px;
  }
 
  .job-card .job-meta { font-weight: 700; font-size: 16px; color: #1a1a2e; margin: 0 0 20px; }
 
  .job-card .job-desc { font-size: 15px; line-height: 1.7; color: #333; margin: 0 0 20px; flex-grow: 1; }
 
  .job-card .job-location { font-size: 15px; color: #1a1a2e; margin: 0 0 24px; }
 
  .apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    background: linear-gradient(90deg, #1289a7 0%, #9DCEDA 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 30px;
  }
 
  .apply-btn svg { width: 18px; height: 18px; }
 
  @media (max-width: 1000px) {
    .job-grid { grid-template-columns: 1fr; }
    .job-search-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
    .search-actions { width: 100%; justify-content: flex-end; }
  }

  .hero-banner-1 {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse 900px 700px at 65% 100%, #b6f7d8 0%, #4fd196 22%, #1a7a4f 45%, #0b2e1c 68%, #050c08 100%);
    overflow: hidden;
    flex-wrap: nowrap;
    justify-content: center;
  }
 
  .hero-banner-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
    mix-blend-mode: overlay;
    opacity: 0.5;
    pointer-events: none;
  }
 
  .hero-banner-1 .hero-content-1 { position: relative; z-index: 1; padding: 0 60px; }
 
  .hero-banner-1 h1 {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
  }
 
  @media (max-width: 700px) {
    .hero-banner-1 h1 { font-size: 34px; }
    .hero-banner-1 { min-height: 220px; }
  }

  .job-detail-section {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f2eefb;
    padding: 60px;
  }

  .job-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
  }

  .job-info h2 { font-size: 32px; font-weight: 800; color: #1a1a2e; margin: 0 0 10px; }

  .job-info .location-value { font-size: 18px; color: #555; margin: 0 0 40px; }

  .job-info .job-desc-text { font-size: 16px; line-height: 1.9; color: #333; margin: 0 0 40px; }

  .job-social { display: flex; gap: 14px; margin-bottom: 40px; }

  .job-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid #d8d0ea;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    text-decoration: none;
  }

  .job-social svg { width: 18px; height: 18px; fill: currentColor; }

  .job-info-submit {
    background: linear-gradient(90deg, #008c95 0%, #45d9e3 100%);
    color: #ffffff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }

  .apply-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(90, 50, 160, 0.1);
  }

  .apply-card h2 { font-size: 28px; font-weight: 800; color: #1a1a2e; text-align: center; margin: 0 0 30px; }

  .apply-field {
    width: 100%;
    border: 1px solid #ddd6ec;
    border-radius: 10px;
    padding: 18px 20px;
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 24px;
    background: #ffffff;
    box-sizing: border-box;
  }

  .apply-field::placeholder { color: #8a8a8a; }

  textarea.apply-field { resize: vertical; min-height: 140px; font-family: inherit; }

  .phone-field {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd6ec;
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 24px;
  }

  .phone-field .flag { font-size: 20px; }

  .phone-field select { border: none; background: transparent; font-size: 14px; color: #555; }

  .phone-field input { border: none; outline: none; flex: 1; font-size: 16px; color: #1a1a2e; }

  .file-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd6ec;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 24px;
    color: #1a1a2e;
    font-size: 16px;
    cursor: pointer;
    position: relative;
  }

  .file-field input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

  .file-field svg { width: 20px; height: 20px; color: #1a1a2e; }

  .recaptcha-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd6ec;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 30px;
  }

  .recaptcha-left { display: flex; align-items: center; gap: 14px; }

  .recaptcha-left input[type="checkbox"] { width: 22px; height: 22px; }

  .recaptcha-left span { font-size: 16px; color: #1a1a2e; }

  .recaptcha-logo { text-align: center; font-size: 11px; color: #666; }

  .apply-submit-wrap { text-align: center; }

  .apply-submit-btn {
    background: linear-gradient(90deg, #008c95 0%, #45d9e3 100%);
    color: #ffffff;
    border: none;
    padding: 16px 46px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }

  @media (max-width: 1000px) {
    .job-detail-grid { grid-template-columns: 1fr; }
  }
  
  .jobs-heading{
    text-align:center;
    margin-bottom:50px;
}

.jobs-heading h2{
    margin:0;
    font-size:45px;
    font-weight:800;
    color:#222;
    line-height:1.1;
}

.jobs-heading p{
    margin:12px 0 0;
    font-size:18px;
    color:#222;
    font-weight:400;
}

@media (max-width:768px){
    .jobs-heading{
        margin-bottom:35px;
    }

    .jobs-heading h2{
        font-size:38px;
    }

    .jobs-heading p{
        font-size:20px;
    }
}