/* Careers */
.container2 {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: flex;
}

.sidebar {
    width: 250px;
    padding-right: 1.5rem;
}

.sidebar h3 {
    margin-top: 1.5rem;
    font-size: 16px;
    font-weight: 600;
}

.filter-group label {
    display: block;
    margin-top: 0.5rem;
    font-size: 14px;
}

.filter-group input {
    margin-right: 5px;
}

.main-content {
    flex: 1;
}

h1 {
    font-size: 32px;
    font-weight: 700;
}

.search-bar {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.search-bar input {
    padding: 0.5rem;
    font-size: 14px;
    width: 100%;
}

.search-bar button {
    padding: 0.5rem 1.5rem;
    background-color: #6366f1;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.job-card {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.job-card h2 {
    color: #6366f1;
    font-size: 18px;
    margin-bottom: 0.3rem;
}

.job-meta {
    font-size: 14px;
    color: #555;
}

.job-desc {
    font-size: 14px;
    margin: 0.5rem 0;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.pagination button {
    padding: 0.5rem 1rem;
    background-color: #eee;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.pagination button.active {
    background-color: #6366f1;
    color: white;
}

@media (max-width: 768px) {
    .container2 {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        padding: 0;
    }
}

/* Job Apply Button */
.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.job-footer span {
    font-weight: bold;
}

.apply-btn {
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
}

.apply-btn:hover {
    background-color: #0056b3;
}

/* Apply Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"],
.modal-content input[type="file"] {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
}

.modal-content button {
    background: #28a745;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-content button:hover {
    background: #218838;
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Life @ Ramjanki Web Tech */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Growth Journey / Company Timeline Section */
.timeline-wrapper {
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.timeline-item {
    position: relative;
    z-index: 2;
    min-width: 130px;
}

.dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid white;
    box-shadow: 0 0 0 4px #dee2e6;
    z-index: 2;
}

.timeline-line {
    height: 4px;
    background-color: #dee2e6;
    z-index: 1;
}

.timeline-line-vertical {
    width: 4px;
    background-color: #dee2e6;
    z-index: 1;
}

/* Meet Our Core Team */
.team-member {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 350px;
}

.social-icons2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 14px;
    border-radius: 30px;
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.team-member:hover .social-icons2 {
    opacity: 1;
}

.social-icons2 a {
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons2 a:hover {
    color: #0d6efd;
}

@media (max-width: 768px) {
    .social-icons2 {
        gap: 8px;
        padding: 6px 10px;
    }

    .social-icons2 a {
        font-size: 16px;
    }
}

/* Team Skills & Expertise */
.progress {
    height: 20px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #e9ecef;
  }
  .progress-bar {
    font-weight: 500;
    line-height: 20px;
  }