/* General Body & Reset Styles */
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #121212;
            color: #F5F5F5;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        * {
            box-sizing: border-box;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #282828;
        }
        ::-webkit-scrollbar-thumb {
            background: #FF8C00;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #E67E00;
        }
        
        /* Animation */
        @keyframes float-and-rotate {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-8px) rotate(-1.5deg);
            }
            75% {
                transform: translateY(8px) rotate(1.5deg);
            }
        }

        /* Header */
        .main-header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10;
            padding: 0 1rem;
            
        }
        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;

        }
        .logo img {
            height: 60px;
            }
        .main-nav {
            display: none; /* Hidden on mobile */
        }
        .main-nav a {
            color: #D1D5DB;
            margin-left: 1.5rem;
            transition: color 0.2s;
        }
        .main-nav a:hover {
            color: #FB923C;
        }
        .main-nav a.active {
            color: #FB923C;
            font-weight: 600;
        }

        /* Generic Section Styling */
        .section {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-title span {
            color: #FF8C00;
        }
        .section-subtitle {
            text-align: center;
            color: #9CA3AF;
            margin-bottom: 3rem;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }
        .bg-dark-1 { background-color: #121212; }
        .bg-dark-2 { background-color: #181818; }
        
        /* Hero Section */
        .hero-section {
            background-image:url('../images/careers\ back\ 1.avif');
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .hero-text {
            font-size: 1.125rem;
            color: #D1D5DB;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 2rem;
        }
        .btn {
            background-color: #FF8C00;
            color: #fff;
            font-weight: 700;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            display: inline-block;
            transition: background-color 0.2s, transform 0.2s;
        }
        .btn:hover {
            background-color: #E67E00;
            transform: scale(1.05);
        }

        /* Cards Grid (Values & Perks) */
        .cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 64rem;
            margin-left: auto;
            margin-right: auto;
        }
        .card {
            background-color: #282828;
            padding: 2rem;
            border-radius: 0.75rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .card:hover {
            background-color: #333;
            transform: translateY(-0.5rem);
        }
        .card-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            background-color: #4B5563;
            height: 4rem;
            width: 4rem;
            border-radius: 9999px;
            margin-left: auto;
            margin-right: auto;
        }
        .card-icon-wrapper i {
            width: 2rem;
            height: 2rem;
            color: #FF8C00;
        }
        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        .card-text {
            color: #9CA3AF;
        }

        /* Life Section Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .gallery-column {
            display: grid;
            gap: 1rem;
        }
        .gallery-grid img {
            border-radius: 0.5rem;
        }
        .cool-animation {
            animation: float-and-rotate 6s infinite ease-in-out;
        }

        /* Footer */
        .main-footer {
            background-color: #000;
            padding: 2rem 0;
        }
        .main-footer .container {
            text-align: center;
            color: #6B7280;
        }
        .social-links {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        .social-links a {
            margin: 0 0.5rem;
            transition: color 0.2s;
        }
        .social-links a:hover {
            color: #FF8C00;
        }

        /* Responsive Styles */
        @media (min-width: 768px) {
            .main-nav {
                display: flex;
            }
            .hero-title {
                font-size: 3.75rem;
            }
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .cards-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(24px) scale(0.98);
            transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1), opacity 550ms ease;
            will-change: transform, opacity;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        @media (prefers-reduced-motion: reduce) {
            .reveal { transition: none; transform: none; opacity: 1; }
        }
        
        /* Sticky header polish */
        .main-header.header--scrolled {
            position: fixed;
            top: 0; left: 0; right: 0;
            background: rgba(0,0,0,0.65);
            backdrop-filter: blur(6px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
            z-index: 999;
        }
        
        /* Open Positions overlay */
        .jobs-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            -webkit-backdrop-filter: blur(6px);
            display: grid;
            place-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 240ms ease;
            z-index: 1000;
        }
        .jobs-backdrop.show {
            opacity: 1;
            pointer-events: auto;
        }
        .jobs-modal {
            width: min(980px, 94vw);
            background: #181818;
            border: 1px solid #2a2a2a;
            border-radius: 14px;
            box-shadow: 0 18px 60px rgba(0,0,0,.45);
            transform: translateY(16px);
            transition: transform 240ms ease;
        }
        .jobs-backdrop.show .jobs-modal {
            transform: translateY(0);
        }
        .jobs-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            border-bottom: 1px solid #262626;
        }
        .jobs-header h4 {
            margin: 0;
            color: #fff;
            font-size: 1.1rem;
        }
        .jobs-close {
            background: #2a2a2a;
            color: #eee;
            border: 1px solid #3a3a3a;
            width: 36px; height: 36px;
            border-radius: 10px;
            cursor: pointer;
        }
        .jobs-content {
            padding: 16px;
        }
        
        /* Jobs filters and cards inside container */
        #jobsContent .filters {
            display: grid;
            grid-template-columns: 1fr repeat(4, minmax(140px, 180px));
            gap: .8rem;
            align-items: center;
        }
        #jobsContent .filters input,
        #jobsContent .filters select {
            background: #222;
            color: #eee;
            border: 1px solid #333;
            border-radius: .5rem;
            padding: .6rem .75rem;
        }
        #jobsContent .controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: .8rem;
        }
        #jobsContent .results-meta {
            color: #9CA3AF;
            font-size: .9rem;
        }
        #jobsContent .cards-grid { margin-top: 1rem; }
        .job-card .meta {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: .5rem;
            color: #9CA3AF;
            font-size: .95rem;
            margin: .6rem 0 1rem;
        }
        .job-card .actions { display: flex; gap: .6rem; justify-content: center; }
        .btn-small { background: #FF8C00; color: #fff; font-weight: 700; padding: .5rem .9rem; border-radius: .5rem; border: 0; cursor: pointer; }
        .btn-small.secondary { background: #333; color: #eee; }
        .btn-icon { background: #333; color: #FF8C00; border: 1px solid #444; padding: .45rem .6rem; border-radius: .5rem; cursor: pointer; transition: background 200ms ease, color 200ms ease, border-color 200ms ease; }
        .btn-icon[aria-pressed="true"] { background: #3a3a3a; color: #ffc077; border-color: #555; }
        .jobs-empty { text-align: center; color: #9CA3AF; padding: 1rem; }
        
        /* Responsive */
        @media (max-width: 768px) {
            #jobsContent .filters { grid-template-columns: 1fr 1fr; }
            #jobsContent .filters input { grid-column: span 2; } /* search full-width */
            .job-card .meta { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            #jobsContent .filters { grid-template-columns: 1fr; }
            #jobsContent .filters input, #jobsContent .filters select { grid-column: span 1; }
        }
  