* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
    overflow-x: hidden;
}

/* Job Openings Banner Section */
.job-openings-banner {
    margin-top: 80px;
    position: relative;
    width: 100%;
    height: 350px;
    /* Fixed height for the banner */
    background-image: url('../assets/imgaes/workplace-objects.jpg');
    /* Placeholder image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    /* Ensure content respects boundaries */
}

/* Gradient Overlay */
.job-openings-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from left (pinkish) to right (light blue/transparent) */
    background: linear-gradient(90deg, #1a79bd88, #00B8F0);
    z-index: 1;
    /* Place above background image but below text */
}

/* Content Wrapper for Text */
.banner-content {
    position: relative;
    z-index: 2;
    /* Place content above the overlay */
    color: #1a202c;
    /* Dark text for contrast against light background/overlay */
    max-width: 90%;
    /* Limit content width */
}

/* Breadcrumbs Styling */
.breadcrumbs {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    /* Muted gray for breadcrumbs */
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumbs span {
    color: #1a202c;
    /* Darker color for active/current page */
}

/* Main Title Styling */
.banner-title {
    font-size: 3.5rem;
    /* Large and bold title */
    font-weight: 800;
    color: #1a202c;
    /* Dark text color */
    line-height: 1.2;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .job-openings-banner {
        height: 250px;
        /* Smaller height on mobile */
    }

    .banner-title {
        font-size: 2.5rem;
        /* Smaller title on mobile */
    }

    .breadcrumbs {
        font-size: 0.8rem;
        /* Smaller breadcrumbs on mobile */
    }
}

@media (max-width: 480px) {
    .job-openings-banner {
        height: 200px;
        /* Even smaller height on very small screens */
    }

    .banner-title {
        font-size: 2rem;
        /* Further reduce title size */
    }
}




/* ===========================
   Career Section
   =========================== */

.career-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    box-sizing: border-box;
    margin: 60px 0 60px;
}

.career-section-container {
    background-color: #ffffff;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    gap: 30px;
}

.career-text-content {
    flex: 1;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.career-text-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.career-text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
    text-align: justify;
}


.career-image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 20px;
}

.career-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}


/* Career Section Responsive */
@media (max-width: 1024px) {
    .career-section-container {
        flex-direction: column;
    }

    .career-text-content {
        padding: 2rem;
    }

    .career-image-content {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .career-section-container {
        margin: 60px 0;
        border-radius: 1rem;
    }

    .career-text-content {
        padding: 1.5rem;
    }

    .career-text-content h2 {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }

    .career-text-content p {
        font-size: 0.95rem;
    }

    .career-image-content {
        height: 250px;
    }
}

/* ===========================
   Welcome Section
   =========================== */
.welcome-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    box-sizing: border-box;
    color: #ffffff;
    background: linear-gradient(to bottom right, #e0f2f7, #c0e0f0);
    border: 2px solid #1A7ABD;
}

.welcome-section-container {
    max-width: 100%;
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
    box-sizing: border-box;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.welcome-small-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8e44ad;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.welcome-main-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-subtext {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.feature-card {
    background: linear-gradient(90deg, #1A7ABD, #00B8F0);
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(125, 10, 110, 0.08);
    padding: 3rem;
    display: flex;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #00b378;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.feature-icon-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #FFF;
    margin: auto 0;
    font-weight: 600;
    text-align: justify;
}

/* Welcome Section Responsive */
@media (max-width: 768px) {
    .welcome-section-container {
        padding: 2rem 1rem;
        border-radius: 1rem;
    }

    .welcome-main-heading {
        font-size: 2rem;
    }

    .welcome-subtext {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .feature-card {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon-placeholder {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* ===========================
   Jobs Section
   =========================== */
.jobs-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.jobs-section-container {
    max-width: 1200px;
    width: 100%;
    padding: 3rem 1rem;
    text-align: center;
    box-sizing: border-box;
}

.jobs-small-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #8e44ad;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.jobs-main-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.job-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}

.job-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid #00d48f;
    border-top: none;
}

/* Animated gradient top border */
.job-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc4343, #664df3, #dc4343);
    background-size: 200% 100%;
    animation: flowBorder 3s linear infinite;
}

@keyframes flowBorder {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.job-card-header-container {
    background: #EBF7FA;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 1rem;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
}

/* Job Level Tags */
.job-level-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.job-level-tag.senior {
    background-color: #ffcccc;
    color: #cc0000;
}

.job-level-tag.mid-senior {
    background-color: #ffe0b2;
    color: #e65100;
}

.job-level-tag.mid-junior {
    background-color: #c8e6c9;
    color: #2e7d32;
}

.job-level-tag.entry-level {
    background-color: #bbdefb;
    color: #1976d2;
}

/* Job Meta Info */
.job-meta-info {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    gap: 20px;
    color: #6a737b;
    margin-bottom: 1.25rem;
}

.job-meta-info span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background-color: #fff;
    padding: 5px 10px 5px 5px;
    border-radius: 20px;
}

.job-meta-info span span {
    font-size: 1rem;
}



.job-meta-clock {
    animation: dropToTopPause 1.5s infinite ease-in-out;
}

@keyframes dropToTopPause {
    0% {
        transform: translateY(-4px);
    }

    20% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-2px);
    }

    60% {
        transform: translateY(1px);
    }

    100% {
        transform: translateY(-4px);
    }
}

.job-meta-globe {
    animation: rotate360 1.5s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Job Description */
.job-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    padding: 2rem 1rem;
}

/* Job Card Actions */
.job-card-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding: 0 1rem 1rem;
}

.action-button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    color: #fff;
}

.action-button.view-details {
    background: linear-gradient(90deg, #1A7ABD, #00B8F0);
    color: #ffffff;
}

.action-button.view-details:hover {
    background-color: #cbd5e0;
}

.action-button.apply-now {
    background: linear-gradient(to right, #00d48f, #00b378);
    box-shadow: 0 4px 10px rgba(0, 212, 143, 0.3);
}

.action-button.apply-now:hover {
    opacity: 0.9;
    box-shadow: 0 6px 15px rgba(0, 212, 143, 0.4);
}

/* Jobs Section Responsive */
@media (max-width: 768px) {

    .jobs-section-container {
        padding: 2rem 1rem;
    }

    .jobs-main-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .job-cards-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        padding: 1.5rem;
    }

    .job-card-title {
        font-size: 1.3rem;
    }

    .job-meta-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-meta-info span {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .job-card-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }
}
