
        :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: white !important;
            line-height: 1.6 !important;
            margin-bottom: 35px !important;
            animation: slideInLeft 1.2s ease-out 0.6s both !important;
        }

        .hero-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }


        /* Career Actions - Matched Layout */
        .hero-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInLeft 1.2s ease-out 0.9s both;
        }





        .hero-btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 15px;
            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: 15px;
            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;
        }

        /* ===== REVOLUTIONARY 3D CAREER BUILDING VISUAL ===== */
        .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);
        }

        .career-visual-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1200px;
        }

        .career-building-scene {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
        }

        /* 3D Building Structure */
        .building-wrapper {
            position: absolute;
            left: 50%;
            bottom: 15%;
            transform: translateX(-50%);
            width: 200px;
            animation: buildingFloat 6s ease-in-out infinite;
        }

        @keyframes buildingFloat {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(-20px);
            }
        }

        .building-floor {
            position: relative;
            width: 200px;
            height: 80px;
            margin-bottom: -10px;
            transform-style: preserve-3d;
            animation: floorSlideIn 1s ease-out backwards;
        }

        .floor-1 {
            animation-delay: 0.2s;
        }

        .floor-2 {
            animation-delay: 0.4s;
        }

        .floor-3 {
            animation-delay: 0.6s;
        }

        .floor-4 {
            animation-delay: 0.8s;
        }

        @keyframes floorSlideIn {
            from {
                opacity: 0;
                transform: translateY(100px) scale(0.8);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .floor-front {
            position: absolute;
            width: 200px;
            height: 80px;
            background: linear-gradient(135deg,
                    rgba(255, 95, 21, 0.15) 0%,
                    rgba(255, 168, 2, 0.1) 100%);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 95, 21, 0.4);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.4s ease;
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 2px 10px rgba(255, 255, 255, 0.1);
        }

        .building-floor:hover .floor-front {
            background: linear-gradient(135deg,
                    rgba(255, 95, 21, 0.3) 0%,
                    rgba(255, 168, 2, 0.2) 100%);
            border-color: var(--primary-orange);
            transform: translateZ(20px);
            box-shadow:
                0 20px 50px rgba(255, 95, 21, 0.4),
                inset 0 2px 15px rgba(255, 255, 255, 0.2);
        }

        .floor-icon {
            font-size: 32px;
            filter: drop-shadow(0 2px 8px rgba(255, 95, 21, 0.4));
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.15);
            }
        }

        .floor-label {
            font-size: 16px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .floor-side {
            position: absolute;
            right: -20px;
            top: 10px;
            width: 20px;
            height: 80px;
            background: linear-gradient(90deg,
                    rgba(255, 95, 21, 0.2),
                    rgba(255, 95, 21, 0.05));
            transform: rotateY(90deg);
            transform-origin: left;
        }

        .floor-top {
            position: absolute;
            top: -15px;
            left: 0;
            width: 200px;
            height: 15px;
            background: linear-gradient(180deg,
                    rgba(255, 168, 2, 0.3),
                    rgba(255, 168, 2, 0.1));
            transform: rotateX(90deg);
            transform-origin: bottom;
        }

        /* Ground Base */
        .building-ground {
            width: 200px;
            height: 40px;
            background: linear-gradient(135deg,
                    rgba(255, 95, 21, 0.4),
                    rgba(255, 168, 2, 0.2));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px auto 0;
            box-shadow: 0 10px 40px rgba(255, 95, 21, 0.5);
            animation: groundPulse 3s ease-in-out infinite;
        }

        @keyframes groundPulse {

            0%,
            100% {
                box-shadow: 0 10px 40px rgba(255, 95, 21, 0.5);
            }

            50% {
                box-shadow: 0 15px 60px rgba(255, 95, 21, 0.8);
            }
        }

        .ground-text {
            font-size: 14px;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Career Path Arrow */
        .career-path-arrow {
            position: absolute;
            left: 27%;
            bottom: 20%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            animation: arrowMove 2s ease-in-out infinite;
        }

        @keyframes arrowMove {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .arrow-segment {
            width: 4px;
            height: 60px;
            background: linear-gradient(180deg,
                    var(--primary-orange),
                    var(--secondary-orange));
            border-radius: 4px;
            opacity: 0;
            animation: segmentGrow 2s ease-in-out infinite;
            box-shadow: 0 0 15px rgba(255, 95, 21, 0.6);
        }

        .seg-1 {
            animation-delay: 0s;
        }

        .seg-2 {
            animation-delay: 0.3s;
        }

        .seg-3 {
            animation-delay: 0.6s;
        }

        @keyframes segmentGrow {

            0%,
            100% {
                opacity: 0;
                transform: scaleY(0);
            }

            50% {
                opacity: 1;
                transform: scaleY(1);
            }
        }

        .arrow-head {
            font-size: 32px;
            color: var(--secondary-orange);
            filter: drop-shadow(0 0 15px rgba(255, 168, 2, 0.8));
            animation: arrowHeadPulse 1.5s ease-in-out infinite;
        }

        @keyframes arrowHeadPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.3);
            }
        }

        /* Floating People */
        .career-people {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .person {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            pointer-events: auto;
            animation: personFloat 4s ease-in-out infinite;
        }

        .person:hover {
            transform: scale(1.2);
        }

        .person-4 {
            top: 68%;
            left: 10%;
            animation-delay: 3s;
        }

        .person-2 {
            top: 45%;
            left: 5%;
            animation-delay: 1s;
        }

        .person-5 {
            top: 25%;
            left: 10%;
            animation-delay: 2s;
        }

        .person-3 {
            bottom: 35%;
            right: 12%;
            animation-delay: 2s;
        }

        .person-1 {
            bottom: 55%;
            right: 10%;
            animation-delay: 0s;
        }

        .person-6 {
            bottom: 15%;
            right: 13%;
            animation-delay: 2.5s;
        }

        @keyframes personFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .person-icon {
            font-size: 48px;
            filter: drop-shadow(0 5px 15px rgba(255, 95, 21, 0.4));
            animation: personBounce 2s ease-in-out infinite;
        }

        @keyframes personBounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .person-badge {
            background: linear-gradient(135deg,
                    rgba(255, 95, 21, 0.9),
                    rgba(255, 168, 2, 0.8));
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 20px rgba(255, 95, 21, 0.5);
        }

        /* Stats Bubbles */
        .stats-bubbles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .stat-bubble {
            position: absolute;
            width: 90px;
            height: 90px;
            background: radial-gradient(circle,
                    rgba(255, 95, 21, 0.3),
                    rgba(255, 168, 2, 0.1));
            border: 2px solid rgba(255, 95, 21, 0.5);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(15px);
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
            animation: bubbleFloat 5s ease-in-out infinite;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .stat-bubble:hover {
            transform: scale(1.2);
            box-shadow: 0 15px 50px rgba(255, 95, 21, 0.6);
        }

        .bubble-1 {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .bubble-2 {
            top: 10%;
            right: 15%;
            animation-delay: 1.5s;
        }

        .bubble-3 {
            bottom: 5%;
            right: 5%;
            animation-delay: 3s;
        }

        @keyframes bubbleFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-25px);
            }
        }

        .bubble-number {
            font-size: 22px;
            font-weight: 900;
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .bubble-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        /* Success Icons */
        .success-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .success-icon {
            position: absolute;
            font-size: 28px;
            opacity: 0;
            animation: iconAppear 3s ease-in-out infinite;
            filter: drop-shadow(0 5px 15px rgba(255, 95, 21, 0.5));
        }

        .icon-1 {
            top: 20%;
            left: 25%;
            animation-delay: 0s;
        }

        .icon-2 {
            top: 45%;
            left: 5%;
            animation-delay: 0.8s;
        }

        .icon-3 {
            bottom: 25%;
            right: 15%;
            animation-delay: 1.6s;
        }

        .icon-4 {
            top: 30%;
            right: 30%;
            animation-delay: 2.4s;
        }

        @keyframes iconAppear {

            0%,
            100% {
                opacity: 0;
                transform: scale(0) rotate(0deg);
            }

            50% {
                opacity: 1;
                transform: scale(1.2) rotate(180deg);
            }
        }

        /* Background Circles */
        .bg-circles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle,
                    rgba(255, 95, 21, 0.15),
                    transparent);
            animation: circleMove 15s linear infinite;
        }

        .circle-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 300px;
            height: 300px;
            bottom: 10%;
            left: -10%;
            animation-delay: 5s;
        }

        .circle-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            left: 50%;
            animation-delay: 10s;
        }

        @keyframes circleMove {
            0% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(30px, -30px) scale(1.2);
            }

            100% {
                transform: translate(0, 0) scale(1);
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .career-visual-container {
                max-width: 500px;
                height: 500px;
            }

            .building-wrapper {
                width: 180px;
            }

            .building-floor {
                width: 180px;
                height: 70px;
            }

            .floor-front {
                width: 180px;
                height: 70px;
            }

            .floor-icon {
                font-size: 28px;
            }

            .floor-label {
                font-size: 14px;
            }
        }

        @media (max-width: 992px) {
            .career-visual-container {
                max-width: 450px;
                height: 450px;
            }

            .building-wrapper {
                width: 160px;
            }

            .building-floor {
                width: 160px;
                height: 60px;
            }

            .floor-front {
                width: 160px;
                height: 60px;
            }

            .person-icon {
                font-size: 40px;
            }

            .stat-bubble {
                width: 75px;
                height: 75px;
            }
        }

        @media (max-width: 768px) {

            .building-ground {
                width: 135px;
                white-space: nowrap !important;
                font-weight: 400 !important;
                font-size: 11px !important;

            }

            .career-visual-container {
                max-width: 100%;
                height: auto !important;
                margin-top: 11rem !important;
            }

            .building-wrapper {
                width: 140px;
            }

            .building-floor {
                width: 140px;
                height: 55px;
            }

            .floor-front {
                width: 140px;
                height: 55px;
            }

            .floor-icon {
                font-size: 24px;
            }

            .floor-label {
                font-size: 12px;
            }

            .person-icon {
                font-size: 36px;
            }

            .person-badge {
                font-size: 9px;
                padding: 4px 10px;
            }

            .stat-bubble {
                width: 70px;
                height: 70px;
            }

            .bubble-number {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .career-visual-container {
                height: 400px;
                padding: 0 20px;
            }

            .building-wrapper {
                width: 130px;
            }

            .building-floor {
                width: 130px;
                height: 50px;
            }

            .floor-front {
                width: 130px;
                height: 50px;
            }

            .floor-icon {
                font-size: 20px;
            }

            .floor-label {
                font-size: 11px;
            }

            /* .person {
                display: none;
            } */

            .career-path-arrow {
                display: none;
            }

            .stat-bubble {
                width: 65px;
                height: 65px;
            }

            .bubble-number {
                font-size: 16px;
            }

            .bubble-text {
                font-size: 9px;
            }

            .success-icon {
                font-size: 24px;
            }
        }

        /* ===== RESPONSIVE DESIGN ===== */

        @media (max-width: 1200px) {
            .career-visual-container {
                max-width: 500px;
                height: 480px;
            }

            .career-hub-card {
                max-width: 380px;
                height: 380px;
            }

            .floating-mini-card {
                padding: 12px 16px;
            }

            .mini-card-icon {
                width: 40px;
                height: 40px;
            }

            .mini-card-value {
                font-size: 18px;
            }
        }

        @media (max-width: 992px) {
            .career-visual-container {
                max-width: 450px;
                height: 450px;
            }

            .career-hub-card {
                max-width: 350px;
                height: 350px;
            }

            .progress-ring-wrapper {
                width: 160px;
                height: 160px;
            }

            .ring-icon {
                width: 50px;
                height: 50px;
            }

            .ring-icon i {
                font-size: 24px;
            }

            .ring-stat {
                font-size: 28px;
            }

            .floating-mini-card {
                padding: 10px 14px;
            }

            .mini-card-icon {
                width: 38px;
                height: 38px;
            }

            .mini-card-icon i {
                font-size: 18px;
            }

            .mini-card-value {
                font-size: 16px;
            }

            .mini-card-label {
                font-size: 10px;
            }

            .orbit-container {
                width: 450px;
                height: 450px;
            }

            .orbit-badge {
                width: 45px;
                height: 45px;
            }

            .orbit-badge i {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .career-visual-container {
                max-width: 400px;
                height: 420px;
            }

            .career-hub-card {
                max-width: 320px;
                height: 320px;
            }

            .progress-ring-wrapper {
                width: 140px;
                height: 140px;
            }

            .ring-icon {
                width: 45px;
                height: 45px;
            }

            .ring-icon i {
                font-size: 22px;
            }

            .ring-stat {
                font-size: 24px;
            }

            .ring-label {
                font-size: 10px;
            }

            .floating-mini-card {
                padding: 10px 12px;
            }

            .mini-card-icon {
                width: 35px;
                height: 35px;
            }

            .mini-card-icon i {
                font-size: 16px;
            }

            .mini-card-value {
                font-size: 15px;
            }

            .wave-stats-container {
                flex-direction: column;
                gap: 12px;
                padding: 12px 20px;
                bottom: -80px;
            }

            .wave-stat-item span {
                font-size: 11px;
            }

            .orbit-container {
                width: 420px;
                height: 420px;
            }

            .orbit-badge {
                width: 40px;
                height: 40px;
            }

            .orbit-badge i {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .career-visual-container {
                max-width: 100%;
                height: 400px;
                padding: 0 20px;
            }

            .career-hub-card {
                max-width: 280px;
                height: 280px;
            }

            .progress-ring-wrapper {
                width: 120px;
                height: 120px;
            }

            .progress-ring {
                width: 120px;
                height: 120px;
            }

            .progress-ring-bg,
            .progress-ring-circle {
                stroke-width: 6;
            }

            .ring-icon {
                width: 40px;
                height: 40px;
            }

            .ring-icon i {
                font-size: 18px;
            }

            .ring-stat {
                font-size: 20px;
            }

            .ring-label {
                font-size: 9px;
            }

            .floating-mini-card {
                padding: 8px 10px;
                border-radius: 15px;
            }

            .mini-card-icon {
                width: 32px;
                height: 32px;
            }

            .mini-card-icon i {
                font-size: 14px;
            }

            .mini-card-value {
                font-size: 14px;
            }

            .mini-card-label {
                font-size: 9px;
            }

            .card-1,
            .card-2 {
                top: 5%;
            }

            .card-3,
            .card-4 {
                bottom: 8%;
            }

            .card-1,
            .card-3 {
                left: -10%;
            }

            .card-2,
            .card-4 {
                right: -10%;
            }

            .wave-stats-container {
                gap: 10px;
                padding: 10px 15px;
                bottom: -90px;
                display: none;
            }

            .wave-dot {
                width: 8px;
                height: 8px;
            }

            .wave-stat-item span {
                font-size: 10px;
            }

            .orbit-container {
                width: 380px;
                height: 380px;
            }

            .orbit-badge {
                width: 35px;
                height: 35px;
                border: 2px solid rgba(255, 255, 255, 0.2);
            }

            .orbit-badge i {
                font-size: 16px;
            }
        }

        @media (max-width: 400px) {
            .career-visual-container {
                height: 380px;
            }

            .career-hub-card {
                max-width: 260px;
                height: 260px;
            }

            .floating-mini-card {
                padding: 6px 8px;
                gap: 8px;
            }

            .mini-card-icon {
                width: 28px;
                height: 28px;
            }

            .mini-card-value {
                font-size: 12px;
            }

            .wave-stats-container {
                bottom: -100px;
            }

            .orbit-container {
                width: 360px;
                height: 360px;
            }
        }

        /* 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;

                justify-self: center;
            }


        }

        @media (max-width: 768px) {


            .jobs-grid {
                grid-template-columns: repeat(2, 1fr);
            }


        }

        @media (max-width: 576px) {

            .jobs-grid {
                grid-template-columns: 1fr;
            }


        }

        /* 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;
            }


        }



        @media (max-width: 576px) {

            .hero-career-section {
                padding: 60px 0 40px;
            }



            .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: 22px;
            color: white;
            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: orange;
            margin-bottom: 15px;
        }

        .benefit-card p {
            font-size: 22px;
            color: white;
            line-height: 1.6;
            text-align: justify;
        }

        /* 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: orange;
            margin-bottom: 8px;
        }

        .job-badge {
            background: var(--gradient-primary);
            color: white;
            padding: 6px 15px;
            border-radius: 10px;
            font-size: 17px;
            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: white;
            line-height: 1.6;
            margin-bottom: 25px;
            text-align: justify;
            font-size: 22px;
        }

        .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: 18px;
            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: 22px;
            font-weight: 700;
            color: var(--secondary-orange);
        }

        .apply-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 10px;
            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: 15px;
            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;
        }



        /* Job Categories Filter */
        .job-categories-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            padding: 0 20px;
        }

        .category-btn {
            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);
            color: rgba(255, 255, 255, 0.8);
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .category-btn::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;
        }

        .category-btn:hover {
            border-color: var(--primary-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
        }

        .category-btn:hover::before {
            left: 100%;
        }

        .category-btn.active {
            background: var(--gradient-primary);
            border-color: var(--primary-orange);
            color: white;
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
        }

        .category-btn i {
            font-size: 18px;
        }

        .category-count {
            background: rgba(255, 255, 255, 0.2);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
            min-width: 30px;
            text-align: center;
        }

        .category-btn.active .category-count {
            background: rgba(255, 255, 255, 0.3);
        }

        .job-card {
            transition: all 0.4s ease;
        }

        .job-card.hidden {
            display: none;
        }

        /* Responsive Categories */
        @media (max-width: 768px) {
            .job-categories-container {
                gap: 10px;
                margin-bottom: 30px;
            }

            .category-btn {
                padding: 12px 20px;
                font-size: 14px;
            }

            .category-btn i {
                font-size: 16px;
            }

            .category-count {
                padding: 3px 8px;
                font-size: 12px;
                min-width: 25px;
            }
        }

        @media (max-width: 576px) {
            .job-categories-container {
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding: 0 15px;
                margin-bottom: 25px;
            }

            .category-btn {
                padding: 10px 18px;
                font-size: 13px;
                white-space: nowrap;
                flex-shrink: 0;
            }
        }

        /* 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;
            }
        }





        /*Input Fields*/

        .input-group-modern {
            position: relative;
            margin-bottom: 5px;
        }

        .input-group-modern input,
        .input-group-modern select,
        .input-group-modern textarea {
            width: 100%;
            padding: 15px 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
            outline: none;
            font-weight: 500;
        }

        .input-group-modern input::placeholder,
        .input-group-modern textarea::placeholder {
            color: transparent;
        }

        .input-group-modern label {
            position: absolute;
            left: 12px;
            top: 15px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
            padding: 0 6px;
            z-index: 1;
        }

        .input-group-modern label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, #1a2556 0%, #2D365E 80%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .input-group-modern input:focus,
        .input-group-modern select:focus,
        .input-group-modern textarea:focus {
            border-color: var(--secondary-orange);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(255, 95, 21, 0.15);
            font-size: 20px;
        }

        .input-group-modern input:focus~label,
        .input-group-modern select:focus~label,
        .input-group-modern textarea:focus~label {
            top: -11px;
            left: 10px;
            font-size: 20px;
            font-weight: 600;
            color: var(--secondary-orange);
            padding: 0 6px;
            background: rgb(38 46 70);
            /*background: #2A335D;*/
        }

        .input-group-modern input:focus~label::before,
        .input-group-modern input:not(:placeholder-shown)~label::before,
        .input-group-modern select:valid:not([value=""])~label::before,
        .input-group-modern textarea:not(:placeholder-shown)~label::before {
            opacity: 1;
        }

        .input-group-modern input:not(:placeholder-shown)~label,
        .input-group-modern select:valid:not([value=""])~label,
        .input-group-modern textarea:not(:placeholder-shown)~label {
            top: -11px;
            left: 10px;
            font-size: 20px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            padding: 0 6px;
        }



        .input-group-modern textarea {
            width: 100%;
            padding: 15px 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
            outline: none;
            font-weight: 500;
            resize: vertical;
            /* Important - allows vertical resize only */
            min-height: 120px;
            /* Minimum height */
        }

        .input-group-modern label {
            position: absolute;
            left: 12px;
            top: 20px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 20px;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
            padding: 0 6px;
            z-index: 2;
            /* Increase z-index */
            line-height: 1;
            /* Important for proper positioning */
        }

        /* Specifically for textarea label positioning */
        .input-group-modern textarea+label,
        .input-group-modern label:has(+ textarea) {
            top: 15px;
            /* Same as padding-top of textarea */
        }

        /* When textarea is focused or filled */
        .input-group-modern textarea:focus+label,
        .input-group-modern textarea:not(:placeholder-shown)+label {
            top: -11px;
            left: 10px;
            font-size: 20px;
            font-weight: 600;
            color: var(--secondary-orange);
            padding: 0 6px;
        }

        .input-group-modern textarea:not(:placeholder-shown)+label {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Background for label */
        .input-group-modern textarea:focus+label::before,
        .input-group-modern textarea:not(:placeholder-shown)+label::before {
            opacity: 1;
        }

        /* .input-border {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    border-radius: 2px;
} */

        /* .input-group-modern input:focus ~ .input-border,
.input-group-modern select:focus ~ .input-border,
.input-group-modern textarea:focus ~ .input-border {
    width: 100%;
    opacity: 0.5;
} */

        .input-group-modern select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            padding-right: 35px;
        }

        .input-group-modern select option {
            background: #0d163e;
            color: white;
            padding: 10px;
        }

        .input-group-modern select:focus~.select-arrow {
            color: var(--secondary-orange);
            transform: translateY(-50%) rotate(180deg);
        }

        /* Fix dropdown positioning */
        .input-group-modern {
            position: relative;
            z-index: 1;
        }


        /* Person image styling */
        .person-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid var(--primary-orange);
            box-shadow: 0 5px 20px rgba(255, 95, 21, 0.4);
            object-fit: cover;
            animation: personBounce 2s ease-in-out infinite;
        }

        .person:hover .person-img {
            transform: scale(1.15);
            border-color: var(--secondary-orange);
            box-shadow: 0 8px 30px rgba(255, 95, 21, 0.6);
        }

        /* Responsive person images */
        @media (max-width: 992px) {
            .person-img {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 768px) {
            .person-img {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 576px) {
            .person {
                display: none;
            }
        }
    