   @media (max-width: 768px) {
            .h2-stell {
                margin: 2.5rem auto;
                font-size: 1.5rem;
            }
        }

        .h2-stell {
            text-align: start;
            margin: 3rem auto 1rem auto;
            font-family: "Arya", sans-serif;
            font-weight: 600;
            font-size: 1.8rem;
        }

        .navbar {
            transition: background-color 0.3s ease;
            background-color: rgba(0, 0, 0, 0.9) !important;
        }

        .ul-about {
            margin: 1rem auto 3rem auto;
            font-family: "Manrope", sans-serif;
            font-optical-sizing: auto;
            font-weight: 300;
        }

        .ul-about li {
            padding-bottom: 1rem;
        }


            .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        /* Job listings row */
        .job-row {
            display: flex;
            flex-wrap: wrap;
            padding-top: 6rem;
            gap: 20px;
            justify-content: center;
        }

        /* Job card */
        .job-card {
            flex: 1;
            min-width: 250px;
            max-width: 280px;
            background-color: #fff;
            padding-bottom: 33px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        /* Job card image */
        .job-image {
            height: 160px;
            overflow: hidden;
            position: relative;
        }

        .job-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .job-card:hover .job-image img {
            transform: scale(1.1);
        }

        /* Removed job number badge */

        /* Job content */
        .job-content {
            padding: 20px;
        }

        .job-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #000;
        }

        .job-description {
            font-size: 14px;
            color: #555;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Read more button */
        .read-more {
            background-color: #000;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            position: absolute;
            overflow: hidden;
            bottom: 1px;
            margin-bottom: 10px;
        }

        .read-more: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: 0.5s;
            color: #fff;
        }

        .read-more:hover:before {
            left: 100%;
        }

        .read-more:hover {
            background-color: #333;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            color: #ffff;
        }

        /* Removed email section */

        /* Responsive styles */
        @media (max-width: 1100px) {
            .job-card {
                min-width: calc(50% - 20px);
                max-width: calc(50% - 20px);
            }
        }

        @media (max-width: 768px) {
            .job-card {
                min-width: 100%;
                max-width: 100%;
            }
        }



        .prev-openings-section {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: url('img/job-vacant.avif');
            background-size: cover;
            background-position: center;
            overflow: hidden;
            position: relative;
        }

        .prev-openings-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .prev-openings-wrapper {
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 2rem;
        }

        .prev-openings-heading {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 3rem;
            position: relative;
            animation: headingAnimate 1.5s forwards;
        }

        .prev-openings-heading::after {
            content: "";
            position: absolute;
            width: 60px;
            height: 4px;
            background: #3498db;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Unique Button Styling */
        .neon-btn-container {
            position: relative;
            display: inline-block;
        }

        .neon-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 36px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            text-decoration: none;
            background: transparent;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.5s;
            z-index: 1;
        }

        .neon-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #00c6ff, #0072ff);
            z-index: -1;
            transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
        }

        .neon-btn:hover::before {
            transform: scale(1.1);
        }

        .neon-btn:hover .btn-icon {
            transform: translateX(5px) scale(1.2);
        }

        .neon-border {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid transparent;
            border-radius: 4px;
        }

        .neon-border::before,
        .neon-border::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border-color: #00c6ff;
            border-style: solid;
            transition: all 0.5s;
        }

        /* Top left corner */
        .neon-border::before {
            top: -2px;
            left: -2px;
            border-width: 2px 0 0 2px;
        }

        /* Bottom right corner */
        .neon-border::after {
            bottom: -2px;
            right: -2px;
            border-width: 0 2px 2px 0;
        }

        .neon-btn-container:hover .neon-border::before,
        .neon-btn-container:hover .neon-border::after {
            width: calc(100% + 2px);
            height: calc(100% + 2px);
        }

        .btn-text {
            position: relative;
            z-index: 2;
        }

        .btn-icon {
            transition: transform 0.5s;
        }

        /* Shadow and light effects */
        .neon-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 198, 255, 0.8) 0%, rgba(0, 114, 255, 0) 70%);
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
        }

        .neon-btn-container:hover .neon-glow {
            opacity: 0.6;
            animation: pulseGlow 2s infinite;
        }

        .particle {
            position: absolute;
            background: #00c6ff;
            border-radius: 50%;
            width: 6px;
            height: 6px;
            pointer-events: none;
            opacity: 0;
        }

        @keyframes headingAnimate {
            0% {
                opacity: 0;
                transform: translateY(-30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulseGlow {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.6;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.8;
            }
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .prev-openings-heading {
                font-size: 2.5rem;
            }

            .neon-btn {
                padding: 14px 30px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .prev-openings-heading {
                font-size: 2rem;
            }

            .neon-btn {
                padding: 12px 24px;
                font-size: 1rem;
            }
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }
         .production-process h1 {
            margin-top: 4rem;
        }


        /* Main Container */
        .main-container {
            max-width: 1200px;
            margin: 6rem auto;
            background: #fff;
            border-radius: 8px;
        }

        /* Section Styles */
        .section {
            margin-bottom: 40px;
        }

        /* Title Styles */
        .title {
            font-size: 2.5em;
            color: #2c3e50;
            font-weight: 800;
            text-align: center;
        }

        /* Subtitle Styles */
        .subtitle {
            font-size: 1.2em;
            margin-bottom: 20px;
            color: #34495e;
            margin-top: 5rem;
            border-bottom: 2px solid #ecf0f1;
            font-weight: 400;

            font-family: "Arya", sans-serif;
            font-optical-sizing: auto;
            padding-bottom: 10px;
        }

        /* Paragraph Styles */
        .paragraph {
            margin-bottom: 15px;
            text-align: center;
            font-size: 1.6rem;
            font-weight: 700;
            font-family: "Arya", sans-serif;
            font-optical-sizing: auto;
        }

        /* List Styles */
        .list {
            list-style-type: disc;
            margin-left: 20px;
            margin-bottom: 15px;
            font-family: "Manrope", sans-serif;
            font-optical-sizing: auto;
        }

        .list2 {
            list-style-type: disc;
            margin-left: 20px;
            font-weight: 400;
            font-family: "Arya", sans-serif;
            font-optical-sizing: auto;
            width: 57%;
            margin: 0 auto;
            margin-bottom: 15px;
        }

        .list-item {
            margin-bottom: 10px;
        }

        /* Product Styles */
        .products-services {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .product-category {
            flex: 1 1 45%;
            background: #ecf0f1;
            padding: 15px;
            border-radius: 5px;
        }

        /* Headings */
        .heading {
            font-weight: 300;
            font-size: 1.5em;
            margin-top: 20px;
            color: #2c3e50;
            font-weight: 700;
            font-family: "Arya", sans-serif;
            font-optical-sizing: auto;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .products-services {
                flex-direction: column;
            }

            .product-category {
                flex: 1 1 100%;
                width: 95%;
                margin: 0 auto;
            }

            .paragraph {
                line-height: 1.5rem;
                padding: 0px 0px 20px 0px;
            }

            .title {
                font-size: 2em;
            }

            .section {
                padding: 0 10px;
            }

            .subtitle {
                font-size: 1.5em;
                padding-left: 1rem;
                line-height: 3rem;

            }

            .heading {
                font-size: 1.3em;
            }

            .list2 {
                width: 90%;
                margin: 0 auto;
            }
        }
           
        