
        body {
            font-family: "Inter", sans-serif;
            background-color: #f5f8fb;
            margin: 0;
            color: #1a1a1a;
        }

        /* Hero Section */
        .career-hero {
            background: linear-gradient(135deg, #003366 0%, #007bff 100%);
            color: #fff;
            text-align: center;
            padding: 80px 20px 60px;
            position: relative;
            overflow: hidden;
        }

        .career-hero h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .career-hero p {
            font-size: 1.15rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Tabs Container */
        .career-tabs {
            max-width: 1000px;
            margin: 60px auto;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        /* Tab Buttons */
        .tab-buttons {
            display: flex;
            background: linear-gradient(135deg, #004080, #007bff);
        }

        .tab-buttons button {
            flex: 1;
            padding: 16px 0;
            background: transparent;
            border: none;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-buttons button:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .tab-buttons button.active {
            background: #f5f8fb;
            color: #004080;
            border-bottom: 3px solid #00c4b4;
        }

        /* Tab Content */
        .tab-content {
            padding: 40px 30px;
            display: none;
            animation: fadeIn 0.4s ease-in-out;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {opacity: 0; transform: translateY(10px);}
            to {opacity: 1; transform: translateY(0);}
        }

        .tab-content h2 {
            color: #004080;
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .tab-content p {
            color: #444;
            line-height: 1.75;
            font-size: 1.05rem;
        }

        /* Buttons */
        .apply-btn {
            display: inline-block;
            background: linear-gradient(135deg, #007bff, #00c4b4);
            color: #fff;
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            margin-top: 20px;
            transition: 0.3s ease;
            cursor: pointer;
        }

        .apply-btn:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #005fcc, #009b94);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Opening Cards */
        .opening-card {
            background: #f8fafc;
            border-left: 5px solid #007bff;
            padding: 25px 30px;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .opening-card h3 {
            color: #004080;
            margin-bottom: 8px;
        }

        .opening-card p {
            margin: 0 0 12px;
            color: #333;
        }

        .opening-card a {
            display: inline-block;
            background: linear-gradient(135deg, #007bff, #00c4b4);
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }

        .opening-card a:hover {
            background: linear-gradient(135deg, #005fcc, #009b94);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .tab-buttons {
                flex-direction: column;
            }
            .tab-buttons button {
                border-bottom: 1px solid rgba(255,255,255,0.2);
            }
        }
        .breadcrumb-nav {
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 0 20px;
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li + li::before {
  content: "›";
  margin: 0 0.5rem;
  color: #999;
  font-weight: 600;
}

.breadcrumb-list a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
  color: #0056b3;
}
