
    :root {
      --primary-orange: #FF5F15;
      --secondary-orange: #FFA802;
      --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
      --bg-dark: #0d163e;
      --text-light: #ffffff;
      --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
      --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
      --border-orange: rgba(255, 95, 21, 0.3);
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg-dark);
      color: var(--text-light);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }



    .container-fluid {
      max-width: 1850px;
    }

/* Career Hero Section - Matched to Insurance/Services Height & Spacing */
.hero-career-section {
    background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
    position: relative;
    min-height: 75vh;
    display: flex;
    padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px);
    align-items: center;
    overflow: hidden;
    margin-top: 5rem;
    border-bottom: 4px solid var(--primary-orange);
    border-radius: 0 0 30px 30px;
}

/* Hero Content Wrapper - Matched Structure */
.hero-career-section .container-fluid {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 max(40px, 3vw);
}


@media (min-width: 1200px) and (max-width: 1900px) {
    .hero-career-section {
        padding: 55px 20px !important;
    }
}


.hero-career-section .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    min-height: 56.5vh; /* Exact match to insurance/services */
}

/* Left Content Column */
.hero-career-section .hero-text {
    position: relative;
    z-index: 3;
    margin-top: 0;
    max-width: 700px;
    width: 100%;
}


    /* Background */
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
    }

    .hero-bg-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .floating-shape {
      position: absolute;
      border-radius: 50%;
      background: var(--gradient-primary);
      opacity: 0.1;
      animation: float 8s ease-in-out infinite;
    }

    .shape-1 {
      width: 300px;
      height: 300px;
      top: 10%;
      right: 5%;
      animation-delay: 0s;
    }

    .shape-2 {
      width: 200px;
      height: 200px;
      bottom: 15%;
      left: 5%;
      animation-delay: 2s;
    }

    .shape-3 {
      width: 150px;
      height: 150px;
      top: 50%;
      right: 25%;
      animation-delay: 4s;
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
      border-radius: 0;
    }

    .shape-4 {
      width: 180px;
      height: 180px;
      top: 30%;
      left: 15%;
      animation-delay: 1s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px) rotate(0deg);
      }

      50% {
        transform: translateY(-30px) rotate(180deg);
      }
    }

    /* Content Wrapper */
    .hero-content-wrapper {
      position: relative;
      z-index: 5;
      width: 100%;
    }

   

 

 /* Career Badge - Matched Spacing */
.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(255, 95, 21, 0.1) !important;
    border: 2px solid rgba(255, 95, 21, 0.3) !important;
    color: var(--secondary-orange) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 30px !important;
    backdrop-filter: blur(10px) !important;
    animation: slideInLeft 1s ease-out !important;
}

.hero-badge i {
    font-size: 16px !important;
    animation: pulse 2s infinite !important;
}

/* Career Main Title - Matched Font Sizing */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 25px;
    animation: slideInLeft 1.2s ease-out 0.3s both;
}

/* Career Subtitle - Matched Spacing */
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.6 !important;
    margin-bottom: 35px !important;
    animation: slideInLeft 1.2s ease-out 0.6s both !important;
}

/* Career Actions - Matched Layout */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 1.2s ease-out 0.9s both;
}


    .hero-title .highlight {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      display: inline-block;
    }



    .hero-btn-primary {
      background: var(--gradient-primary);
      color: white;
      border: none;
      padding: 18px 35px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: var(--shadow-primary);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .hero-btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
    }

    .hero-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
      color: white;
      text-decoration: none;
    }

    .hero-btn-primary:hover::before {
      left: 100%;
    }

    .hero-btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.3);
      padding: 16px 35px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      transition: var(--transition);
      backdrop-filter: blur(10px);
      cursor: pointer;
    }

    .hero-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--primary-orange);
      color: var(--primary-orange);
      transform: translateY(-3px);
      text-decoration: none;
    }


/* Right Image Column - Matched Positioning */
.hero-career-section .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: slideInRight 1.2s ease-out 0.6s both;
    height: 100%;
    max-height: calc(100vh - 200px);
    width: 100%;
    max-width: 700px;
    justify-self: end;
}

/* Career Visual Container */
.career-visual-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Main Illustration - Professional Dashboard */
    .career-dashboard {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(30px);
      border: 1px solid rgba(255, 95, 21, 0.2);
      border-radius: 25px;
      padding: 15px 20px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
      min-height: 40vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .career-dashboard::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
    }

    /* Dashboard Header */
    .dashboard-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255, 95, 21, 0.1);
    }

    .header-title {
      font-size: 16px;
      font-weight: 700;
      color: white;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      background: #00ff88;
      border-radius: 50%;
      box-shadow: 0 0 15px #00ff88;
      animation: statusPulse 2s ease-in-out infinite;
    }

    @keyframes statusPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.6;
        transform: scale(0.8);
      }
    }

    .header-stats {
      display: flex;
      gap: 10px;
    }

    .mini-stat {
      text-align: center;
    }

    .mini-stat-value {
      font-size: 18px;
      font-weight: 700;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }

    .mini-stat-label {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Growth Chart Visualization */
    .growth-chart {
      position: relative;
      height: 100px;
      margin-bottom: 10px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 8px;
      padding: 0 5px;
    }

    .chart-bar {
      flex: 1;
      background: linear-gradient(180deg, var(--primary-orange), var(--secondary-orange));
      border-radius: 8px 8px 0 0;
      position: relative;
      transition: all 0.3s ease;
      animation: barGrow 1.5s ease-out forwards;
      transform-origin: bottom;
      cursor: pointer;
    }

    .chart-bar::before {
      content: attr(data-value);
      position: absolute;
      top: -25px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 12px;
      font-weight: 700;
      color: white;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .chart-bar:hover {
      filter: brightness(1.2);
      transform: scaleY(1.05);
    }

    .chart-bar:hover::before {
      opacity: 1;
    }

    .chart-bar:nth-child(1) {
      height: 60%;
      animation-delay: 0.1s;
    }

    .chart-bar:nth-child(2) {
      height: 75%;
      animation-delay: 0.2s;
    }

    .chart-bar:nth-child(3) {
      height: 85%;
      animation-delay: 0.3s;
    }

    .chart-bar:nth-child(4) {
      height: 70%;
      animation-delay: 0.4s;
    }

    .chart-bar:nth-child(5) {
      height: 95%;
      animation-delay: 0.5s;
    }

    .chart-bar:nth-child(6) {
      height: 100%;
      animation-delay: 0.6s;
    }

    @keyframes barGrow {
      0% {
        transform: scaleY(0);
        opacity: 0;
      }

      100% {
        transform: scaleY(1);
        opacity: 1;
      }
    }

    /* Career Metrics Grid */
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 10px;
    }

    .metric-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 95, 21, 0.2);
      border-radius: 12px;
      padding: 8px 10px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .metric-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .metric-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--primary-orange);
      transform: translateY(-5px);
    }

    .metric-card:hover::before {
      left: 100%;
    }

    .metric-icon-wrapper {
      width: 22px;
      height: 22px;
      background: var(--gradient-primary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
    }

    .metric-icon {
      font-size: 14px;
      color: white;
    }

    .metric-value {
      font-size: 16px;
      font-weight: 700;
      color: white;
      margin-bottom: 4px;
    }

    .metric-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
    }

    /* Progress Indicators */
    .progress-section {
      margin-top: 0;
    }

    .progress-item {
      margin-bottom: 15px;
    }

    .progress-item:last-child {
      margin-bottom: 0;
    }

    .progress-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .progress-title {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 600;
    }

    .progress-percentage {
      font-size: 13px;
      color: var(--secondary-orange);
      font-weight: 700;
    }

    .progress-bar-container {
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .progress-bar-fill {
      height: 100%;
      background: var(--gradient-primary);
      border-radius: 10px;
      transition: width 1.5s ease-out;
      position: relative;
      animation: progressGlow 2s ease-in-out infinite;
    }

    .progress-bar-fill::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 40px;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
      animation: shimmer 1.5s ease-in-out infinite;
    }

    @keyframes progressGlow {

      0%,
      100% {
        box-shadow: 0 0 10px rgba(255, 95, 21, 0.5);
      }

      50% {
        box-shadow: 0 0 20px rgba(255, 95, 21, 0.8);
      }
    }

    @keyframes shimmer {
      0% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(100%);
      }
    }

    /* Floating Achievement Badges */
    .floating-badges {
      position: absolute;
      bottom: -15px;
      right: 90px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .floating-badges2 {
      position: absolute;
      top: -5px;
      left: -15px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .achievement-badge {
      width: 55px;
      height: 55px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
      border: 3px solid rgba(255, 255, 255, 0.1);
      animation: badgeFloat 3s ease-in-out infinite;
      position: relative;
    }

    .achievement-badge:nth-child(2) {
      animation-delay: 0.5s;
      width: 50px;
      height: 50px;
    }

    .achievement-badge i {
      font-size: 24px;
      color: white;
    }

    .achievement-badge:nth-child(2) i {
      font-size: 20px;
    }

    @keyframes badgeFloat {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-15px) rotate(10deg);
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
     .hero-career-section .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-career-section .hero-text {
        text-align: center;
        order: 2;
        margin-top: 1rem;
        max-width: 100%;
        justify-self: center;
    }

    .hero-career-section .hero-visual {
        order: 1;
        max-height: none;
        justify-self: center;
    }

    .career-visual-container {
        max-width: 450px;
    }
      .career-dashboard {
        padding: 30px 25px;
      }

      .growth-chart {
        height: 180px;
      }

      .metric-card {
        padding: 15px;
      }

      .metric-value {
        font-size: 20px;
      }
    }

    @media (max-width: 768px) {


      .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .career-visual-container {
        max-width: 400px;
        height: 420px;
      }

      .career-dashboard {
        padding: 25px 20px;
      }

      .header-title {
        font-size: 16px;
      }

      .growth-chart {
        height: 150px;
        gap: 8px;
      }

      .metrics-grid {
        gap: 12px;
      }

      .metric-icon-wrapper {
        width: 35px;
        height: 35px;
      }

      .metric-value {
        font-size: 18px;
      }

      .floating-badges {
        top: -15px;
        right: -15px;
      }

      .achievement-badge {
        width: 60px;
        height: 60px;
      }

      .achievement-badge:nth-child(2) {
        width: 50px;
        height: 50px;
      }
    }

    @media (max-width: 576px) {

      .jobs-grid {
        grid-template-columns: 1fr;
      }

      .career-visual-container {
        max-width: 100%;
        height: 400px;
      }

      .career-dashboard {
        padding: 20px 15px;
      }

      .dashboard-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
      }

      .growth-chart {
        height: 130px;
      }

      .metrics-grid {
        gap: 10px;
      }

      .progress-item {
        margin-bottom: 15px;
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .hero-text {
        text-align: center;
        order: 2;
      }

      .hero-visual {
        order: 1;
      }

      .hero-actions {
        justify-content: center;
      }

      .career-showcase {
        max-width: 450px;
        margin: 0 auto;
      }
    }

    @media (max-width: 768px) {
     .hero-career-section {
        padding: 60px 0;
        min-height: 60vh;
    }

    .hero-career-section .container-fluid {
        padding: 0 20px;
    }

    .hero-career-section .hero-grid {
        gap: 20px;
        min-height: auto;
    }

    .hero-career-section .hero-text {
        margin-top: 0.5rem;
    }

    .hero-badge {
        padding: 10px 20px !important;
        font-size: 12px !important;
    }

    .career-visual-container {
        max-width: 380px;
    }

      .career-showcase {
        gap: 15px;
        max-width: 380px;
      }

      .career-stat-card {
        padding: 20px 15px;
      }

      .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }

      .stat-number {
        font-size: 1.5rem;
      }

      .central-career-logo {
        width: 100px;
        height: 100px;
      }

      .central-career-logo i {
        font-size: 40px;
      }
    }


    @media (max-width: 480px) {
    .career-visual-container {
        max-width: 280px;
    }
}

    @media (max-width: 576px) {

       .hero-career-section {
        padding: 60px 0 40px;
    }

    .career-visual-container {
        max-width: 320px;
    }
      .hero-actions {
        flex-direction: column;
        width: 100%;
      }

      .hero-btn-primary,
      .hero-btn-secondary {
        width: 100%;
        justify-content: center;
      }

      .career-showcase {
        max-width: 320px;
      }

      .central-career-logo {
        width: 85px;
        height: 85px;
      }

      .central-career-logo i {
        font-size: 35px;
      }
    }

    /* Why Join Section - Horizontal Scroll */
    .why-join-section {
      padding: 40px 0;
      background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(13, 22, 62, 0.95) 100%);
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .section-badge {
      background: rgba(255, 95, 21, 0.1);
      border: 1px solid rgba(255, 95, 21, 0.3);
      color: var(--secondary-orange);
      padding: 10px 25px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: inline-block;
      margin-bottom: 25px;
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: white;
      margin-bottom: 20px;
    }

    .section-title .highlight {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      font-size: clamp(1.1rem, 2.5vw, 1.3rem);
      color: rgba(255, 255, 255, 0.8);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Horizontal scroll container for benefits */
    .benefits-scroll-container {
      position: relative;
      overflow: hidden;
      padding: 20px 0;
    }

    .benefits-grid {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 10px 5px;
      scrollbar-width: none;
      scrollbar-color: var(--primary-orange) rgba(255, 255, 255, 0.1);
    }

    .benefits-grid::-webkit-scrollbar {
      height: 8px;
    }

    .benefits-grid::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
    }

    .benefits-grid::-webkit-scrollbar-thumb {
      background: var(--gradient-primary);
      border-radius: 10px;
    }

    .benefits-grid::-webkit-scrollbar-thumb:hover {
      background: var(--primary-orange);
    }

    .benefit-card {
      min-width: calc(25% - 23px);
      /* flex-shrink: 0; */
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 95, 21, 0.02));
      border: 1px solid rgba(255, 95, 21, 0.2);
      border-radius: 25px;
      padding: 40px 30px;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      cursor: pointer;
      backdrop-filter: blur(15px);
    }

    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(255, 95, 21, 0.1), transparent);
      border-radius: 50%;
      transform: translate(50%, -50%);
    }

    .benefit-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary-orange);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 95, 21, 0.05));
      box-shadow: var(--shadow-primary);
    }

    .benefit-icon {
      width: 70px;
      height: 70px;
      background: var(--gradient-primary);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      position: relative;
      overflow: hidden;
    }

    .benefit-icon::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transition: top 0.4s ease;
    }

    .benefit-card:hover .benefit-icon::after {
      top: 0;
    }

    .benefit-icon i {
      font-size: 28px;
      color: white;
      position: relative;
      z-index: 2;
    }

    .benefit-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      margin-bottom: 15px;
    }

    .benefit-card p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
    }

    /* Scroll navigation buttons for benefits */
    .scroll-nav {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .scroll-btn {
      background: rgba(255, 95, 21, 0.1);
      border: 2px solid rgba(255, 95, 21, 0.3);
      color: var(--secondary-orange);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      font-size: 20px;
    }

    .scroll-btn:hover {
      background: var(--gradient-primary);
      border-color: var(--primary-orange);
      color: white;
      transform: scale(1.1);
    }



    /* Job Openings Section - Different Horizontal Scroll Style */
    .jobs-section {
      padding: 40px 0;
      background: linear-gradient(180deg, #1a2556 0%, #0d163e 100%);
      position: relative;
      /* border-bottom: 3px solid var(--primary-orange); */

    }

    /* Different style for jobs scroll container */
    .jobs-scroll-container {
      position: relative;
      overflow: hidden;
      padding: 20px 0;
    }

    .jobs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 35px;
      padding: 15px 5px;
    }



    .job-card {
      min-width: calc(25% - 27px);
      /* flex-shrink: 0; */
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 95, 21, 0.02));
      border: 2px solid rgba(255, 95, 21, 0.2);
      border-radius: 25px;
      padding: 35px;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      cursor: pointer;
    }

    .job-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.05), transparent);
      transition: left 0.6s ease;
    }

    .job-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary-orange);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 95, 21, 0.05));
      box-shadow: var(--shadow-hover);
    }

    .job-card:hover::before {
      left: 100%;
    }

    .job-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .job-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      margin-bottom: 8px;
    }

    .job-badge {
      background: var(--gradient-primary);
      color: white;
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      white-space: nowrap;
    }

    .job-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
    }

    .job-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
    }

    .job-meta-item i {
      color: var(--secondary-orange);
    }

    .job-description {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .job-skills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 25px;
    }

    .skill-tag {
      background: rgba(255, 95, 21, 0.1);
      border: 1px solid rgba(255, 95, 21, 0.3);
      color: var(--secondary-orange);
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
    }

    .job-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 95, 21, 0.2);
    }

    .job-salary {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--secondary-orange);
    }

    .apply-btn {
      background: var(--gradient-primary);
      color: white;
      border: none;
      padding: 10px 25px;
      border-radius: 25px;
      font-weight: 600;
      transition: var(--transition);
      cursor: pointer;
    }

    .apply-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }


    /* Application Form Section */
    .application-section {
      padding: 40px 0;
      background: linear-gradient(180deg, #1a2556 0%, #0d163e 100%);


      position: relative;
    }

    .form-container {
      max-width: 900px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 95, 21, 0.02));
      border: 2px solid rgba(255, 95, 21, 0.2);
      border-radius: 30px;
      padding: 50px;
      backdrop-filter: blur(15px);
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-label {
      display: block;
      color: white;
      font-weight: 600;
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .form-control,
    .form-select {
      width: 100%;
      padding: 15px 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 95, 21, 0.2);
      border-radius: 15px;
      color: white;
      font-size: 1rem;
      transition: var(--transition);
    }

    .form-control:focus,
    .form-select:focus {
      outline: none;
      border-color: var(--primary-orange);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 20px rgba(255, 95, 21, 0.2);

    }




    /* ✅ Make text white on focus only for input and textarea (not select) */
    input.form-control:focus,
    textarea.form-control:focus {
      color: #fff;
    }



    /* ✅ Focused select — the selected text should be white */
    select.form-select:focus {
      background: rgba(255, 255, 255, 0.08);

      color: #fff;
      /* White selected value */
      border-color: var(--primary-orange);
      box-shadow: 0 0 20px rgba(255, 95, 21, 0.2);
    }

    /* ✅ Dropdown list background (works in most modern browsers) */
    select.form-select option {
      background-color: #232f61;
      color: #fff;
      /* White text in dropdown list */
    }

    /* Optional: on hover or selected option in dropdown */
    select.form-select option:checked,
    select.form-select option:hover {
      background-color: #232f61;
      color: #fff;
    }


    .form-control::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }

    .file-upload-wrapper {
      position: relative;
      overflow: hidden;
      display: inline-block;
      width: 100%;
    }

    .file-upload-btn {
      background: rgba(255, 95, 21, 0.1);
      border: 2px dashed rgba(255, 95, 21, 0.3);
      color: white;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      width: 100%;
    }

    .file-upload-btn:hover {
      background: rgba(255, 95, 21, 0.15);
      border-color: var(--primary-orange);
    }

    .file-upload-btn i {
      font-size: 2rem;
      color: var(--secondary-orange);
      margin-bottom: 10px;
      display: block;
    }

    input[type="file"] {
      position: absolute;
      left: -9999px;
    }

    .submit-btn {
      background: var(--gradient-primary);
      color: white;
      border: none;
      padding: 18px 50px;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      width: 100%;
      margin-top: 20px;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    /* Success Message */
    .success-message {
      display: none;
      background: linear-gradient(135deg, rgba(0, 204, 97, 0.1), rgba(0, 204, 97, 0.05));
      border: 2px solid rgba(0, 204, 97, 0.3);
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      margin-top: 30px;
    }

    .success-message.show {
      display: block;
      animation: slideIn 0.5s ease;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .success-message i {
      font-size: 3rem;
      color: #00CC61;
      margin-bottom: 15px;
    }

    .success-message h3 {
      color: white;
      margin-bottom: 10px;
    }

    .success-message p {
      color: rgba(255, 255, 255, 0.8);
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
      .benefit-card {
        min-width: calc(33.333% - 20px);
      }

      .job-card {
        min-width: calc(33.333% - 24px);
      }
    }

    @media (max-width: 768px) {
      .benefit-card {
        min-width: calc(50% - 15px);
      }

      .job-card {
        min-width: calc(50% - 18px);
      }

      .hero-stats {
        gap: 20px;
      }

      .form-container {
        padding: 30px 20px;
      }

      .stat-card {
        min-width: 150px;
        padding: 20px 25px;
      }
    }

    @media (max-width: 576px) {
      .benefit-card {
        min-width: calc(100% - 10px);
      }

      .job-card {
        min-width: calc(100% - 10px);
      }

      .hero-career-section {
        padding: 150px 0 60px;
      }
    }

    /* ========================================
   HERO CAREER SECTION - RESPONSIVE FIXES
======================================== */

/* Hero Career Section - Mobile Fixes */
@media (max-width: 1200px) {


  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
    order: 2;
    margin-top: 1rem;
  }

  .hero-visual {
    order: 1;
    height: auto;
    max-height: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .career-visual-container {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .hero-career-section {
    min-height: auto;
    padding: clamp(90px, 12vw, 100px) 0 clamp(40px, 8vw, 50px);
  }

  .hero-badge {
    font-size: 12px;
    padding: 10px 20px;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 25px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 15px 30px;
    font-size: 15px;
  }

  .career-visual-container {
    max-width: 450px;
    height: auto;
  }

  .career-dashboard {
    padding: 20px 15px;
    min-height: 35vh;
  }

  .dashboard-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .header-title {
    font-size: 14px;
  }

  .mini-stat-value {
    font-size: 16px;
  }

  .mini-stat-label {
    font-size: 9px;
  }

  .growth-chart {
    height: 90px;
    gap: 6px;
    margin-bottom: 15px;
  }

  .metrics-grid {
    gap: 10px;
    margin-bottom: 15px;
  }

  .metric-icon-wrapper {
    width: 20px;
    height: 20px;
  }

  .metric-icon {
    font-size: 12px;
  }

  .metric-value {
    font-size: 14px;
  }

  .metric-label {
    font-size: 10px;
  }

  .progress-title,
  .progress-percentage {
    font-size: 12px;
  }

  .floating-badges {
    right: 60px;
    bottom: -10px;
  }

  .floating-badges2 {
    top: -10px;
    left: -10px;
  }

  .achievement-badge {
    width: 50px;
    height: 50px;
  }

  .achievement-badge:nth-child(2) {
    width: 45px;
    height: 45px;
  }

  .achievement-badge i {
    font-size: 20px;
  }

  .achievement-badge:nth-child(2) i {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-career-section {
    padding: 80px 0 40px;
    min-height: auto;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 18px;
    margin-bottom: 15px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    margin-bottom: 20px;
  }

  .hero-actions {
    gap: 15px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 14px 25px;
    font-size: 14px;
  }

  .career-visual-container {
    max-width: 100%;
    height: auto;
  }

  .career-dashboard {
    padding: 18px 12px;
    min-height: 30vh;
  }

  .dashboard-header {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .header-title {
    font-size: 13px;
  }

  .header-stats {
    gap: 8px;
  }

  .mini-stat-value {
    font-size: 14px;
  }

  .mini-stat-label {
    font-size: 8px;
  }

  .growth-chart {
    height: 80px;
    gap: 5px;
    margin-bottom: 12px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }

  .metric-card {
    padding: 6px 8px;
  }

  .metric-icon-wrapper {
    width: 18px;
    height: 18px;
    margin-bottom: 6px;
  }

  .metric-icon {
    font-size: 10px;
  }

  .metric-value {
    font-size: 13px;
    margin-bottom: 3px;
  }

  .metric-label {
    font-size: 9px;
  }

  .progress-item {
    margin-bottom: 12px;
  }

  .progress-header {
    margin-bottom: 6px;
  }

  .progress-title,
  .progress-percentage {
    font-size: 11px;
  }

  .progress-bar-container {
    height: 6px;
  }

  .floating-badges {
    right: 40px;
    bottom: -8px;
  }

  .floating-badges2 {
    top: -8px;
    left: -8px;
  }

  .achievement-badge {
    width: 45px;
    height: 45px;
  }

  .achievement-badge:nth-child(2) {
    width: 40px;
    height: 40px;
  }

  .achievement-badge i {
    font-size: 18px;
  }

  .achievement-badge:nth-child(2) i {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-career-section {
    padding: 70px 0 30px;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 7px 15px;
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-badge i {
    font-size: 14px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 18px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 13px;
  }

  .hero-visual {
    width: 100%;
    height: auto;
    max-height: none;
    padding: 0 15px;
  }

  .career-visual-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
  }

  .career-dashboard {
    width: 100%;
    padding: 15px 12px;
    min-height: auto;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .header-title {
    font-size: 12px;
  }

  .header-stats {
    display: flex;
    gap: 15px;
  }

  .mini-stat-value {
    font-size: 13px;
  }

  .mini-stat-label {
    font-size: 8px;
  }

  .growth-chart {
    height: 70px;
    gap: 4px;
    margin-bottom: 10px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 10px;
  }

  .metric-card {
    padding: 5px 6px;
    border-radius: 10px;
  }

  .metric-icon-wrapper {
    width: 16px;
    height: 16px;
    margin-bottom: 5px;
  }

  .metric-icon {
    font-size: 9px;
  }

  .metric-value {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .metric-label {
    font-size: 8px;
  }

  .progress-section {
    margin-top: 0;
  }

  .progress-item {
    margin-bottom: 10px;
  }

  .progress-header {
    margin-bottom: 5px;
  }

  .progress-title,
  .progress-percentage {
    font-size: 10px;
  }

  .progress-bar-container {
    height: 5px;
  }

  .floating-badges {
    right: 5px;
    bottom: -5px;
    gap: 8px;
  }

  .floating-badges2 {
    top: -5px;
    left: 5px;
    gap: 8px;
  }

  .achievement-badge {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
  }

  .achievement-badge:nth-child(2) {
    width: 35px;
    height: 35px;
  }

  .achievement-badge i {
    font-size: 16px;
  }

  .achievement-badge:nth-child(2) i {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .career-dashboard {
    padding: 12px 8px;
  }

  .growth-chart {
    height: 60px;
  }

  .floating-badges {
    right: 10px;
  }

  .floating-badges2 {
    left: -5px;
  }
}

/* ========================================
   JOBS SECTION - RESPONSIVE FIXES
======================================== */

/* Jobs Section Responsive */
@media (max-width: 1400px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .jobs-section {
    padding: 60px 0;
  }

  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .job-card {
    padding: 30px;
  }

  .job-title {
    font-size: 1.3rem;
  }

  .job-badge {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .job-meta {
    gap: 15px;
  }

  .job-meta-item {
    font-size: 0.9rem;
  }

  .job-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .skill-tag {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .job-salary {
    font-size: 1rem;
  }

  .apply-btn {
    padding: 9px 22px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .jobs-section {
    padding: 50px 0;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-card {
    padding: 25px;
    min-width: 100%;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
  }

  .job-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .job-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .job-meta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }

  .job-meta-item {
    font-size: 0.85rem;
  }

  .job-description {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .job-skills {
    gap: 8px;
    margin-bottom: 20px;
  }

  .skill-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .job-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-top: 15px;
  }

  .job-salary {
    font-size: 1rem;
  }

  .apply-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .jobs-section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-badge {
    font-size: 12px;
    padding: 8px 20px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }

  .jobs-grid {
    gap: 18px;
    padding: 10px 5px;
  }

  .job-card {
    padding: 20px;
    border-radius: 20px;
  }

  .job-header {
    margin-bottom: 12px;
  }

  .job-title {
    font-size: 1.1rem;
  }

  .job-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 15px;
  }

  .job-meta {
    gap: 8px;
    margin-bottom: 12px;
  }

  .job-meta-item {
    font-size: 0.8rem;
    gap: 6px;
  }

  .job-meta-item i {
    font-size: 12px;
  }

  .job-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .job-skills {
    gap: 6px;
    margin-bottom: 18px;
  }

  .skill-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 15px;
  }

  .job-footer {
    padding-top: 12px;
    gap: 12px;
  }

  .job-salary {
    font-size: 0.95rem;
  }

  .apply-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: 20px;
  }

  .apply-btn i {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .job-card {
    padding: 18px;
  }

  .job-title {
    font-size: 1rem;
  }

  .job-description {
    font-size: 0.8rem;
  }

  .skill-tag {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .job-salary {
    font-size: 0.9rem;
  }
}

/* Smooth transitions for all responsive changes */
.hero-career-section,
.career-dashboard,
.job-card,
.job-meta {
  transition: all 0.3s ease;
}

/* Landscape orientation fixes for tablets */
@media (max-width: 1024px) and (orientation: landscape) {
  .hero-career-section {
    min-height: auto;
    padding: 103px 0 50px;
  }

  .career-visual-container {
    max-width: 450px;
  }

  .career-dashboard {
    min-height: 30vh;
  }
}

