﻿/* CSS Variables - Light Theme Palette */
:root {
    --primary-orange: #ea580c; /* Deep Orange/Rust */
    --secondary-purple: #7c3aed; /* Vibrant Purple */
    --bg-light: #ffffff; /* White background */
    --bg-subtle: #f0f4f8; /* Very light subtle background */
    --text-dark: #1f2937; /* Dark text */
    --text-secondary: #4b5563; /* Gray text */
    --shadow-subtle: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-color: #e5e7eb;
}


/* Main Container */
.careers-section {
    margin:50px!important;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Header Styling */
.header-tag {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-purple); /* Purple accent for tag */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.header-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.header-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Feature Card Styling */
.feature-card {
    background-color: var(--bg-light);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.75rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon Color Cycling */
.feature-card:nth-child(1) .card-icon {
    background-color: #fce7f3;
}
    /* Light Pink */
    .feature-card:nth-child(1) .card-icon svg {
        color: #db2777;
    }
/* Rose Pink */

.feature-card:nth-child(2) .card-icon {
    background-color: #eef2ff;
}
    /* Light Blue */
    .feature-card:nth-child(2) .card-icon svg {
        color: #4f46e5;
    }
/* Indigo */

.feature-card:nth-child(3) .card-icon {
    background-color: #fef3c7;
}
    /* Light Yellow */
    .feature-card:nth-child(3) .card-icon svg {
        color: var(--primary-orange);
    }
/* Orange */

.card-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--bg-light);
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.125rem;
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.4);
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background-color: #c2410c; /* Darker orange */
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(234, 88, 12, 0.6);
    }
