/* style.css - Shared styles for all category pages */

:root {
    --primary-blue: #0066CC;
    --secondary-blue: #004999;
    --accent-blue: #3399FF;
    --light-bg: #F8F9FA;
    --dark-text: #212529;
    --light-text: #6C757D;
    --health-color: #0066CC;
    --insurance-color: #004999;
    /* This controls insurance-specific elements */

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: var(--dark-text);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navbar Styling */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue) !important;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Category Hero Section */
.category-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 50px;
    margin-top: 76px;
}

.health-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.insurance-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}


.corporate-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.category-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: wave 15s ease-in-out infinite;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.category-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.category-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Styling */
.category-section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.health-section .section-title::after {
    background: var(--health-color);
}

.insurance-section .section-title::after {
    background: var(--insurance-color);
}

.corporate-section .section-title::after {
    background: var(--corporate-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.health-feature::before {
    background: var(--health-color);
}

.insurance-feature::before {
    background: var(--insurance-color);
}

.corporate-feature::before {
    background: var(--corporate-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
}

.health-feature .feature-icon {
    background: linear-gradient(135deg, var(--health-color), #0066CC);
}

.insurance-feature .feature-icon {
    background: linear-gradient(135deg, var(--health-color), #0066CC);
}

.corporate-feature .feature-icon {
    background: linear-gradient(135deg, var(--corporate-color), #0066CC);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.feature-description {
    color: var(--light-text);
    line-height: 1.7;
}

/* Stats Section */
.category-stats {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
}

.health-stats {
    background: linear-gradient(135deg, var(--health-color), #0066CC);
}


.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.category-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.health-cta {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(30, 126, 52, 0.1));
}

.insurance-cta {
    background: color(#0000ff);
}


.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #0b62d6;
    margin-bottom: 2.5rem;
    max-width: 700px;

    margin-left: auto;
    margin-right: auto;
}

/* For insurance page only */
.insurance-cta .cta-subtitle {
    color: #000000;
}

.cta-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-decoration: none;
}

.health-cta .cta-btn {
    background: var(--health-color);
    color: white;
}

.insurance-cta .cta-btn {
    background: var(--insurance-color);
    color: white;
}

.corporate-cta .cta-btn {
    background: var(--corporate-color);
    color: rgb(255, 255, 255);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--secondary-blue) 100%;
}

.health-cta .cta-btn:hover {
    background: #0066CC;
}

.insurance-cta .cta-btn:hover {
    background: #0066CC;
}

.corporate-cta .cta-btn:hover {
    background: #0066CC;
}



/* healthcare network section start in healthcare page */

.healthcare-network-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
}

.healthcare-network-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;

}

.network-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #003a7c;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.network-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0b62d6, #003a7c);
    border-radius: 2px;
}

.network-section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 25px;
}

.network-logos-container {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.network-logos-container:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.network-logos-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .healthcare-network-section {
        padding: 70px 0;
    }

    .network-section-title {
        font-size: 2.2rem;
    }

    .network-section-subtitle {
        font-size: 1.1rem;
    }

    .network-logos-container {
        padding: 25px;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .network-section-title {
        font-size: 1.8rem;
    }

    .network-section-subtitle {
        font-size: 1rem;
    }

    .network-logos-container {
        padding: 20px;
    }
}

/* healthcare network section end in healthcare page */


/* Footer */
.footer {
    background: var(--dark-text);
    color: white;
    padding: 80px 0 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes wave {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-hero-title {
        font-size: 2.5rem;
    }

    .category-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .category-hero {
        height: auto;
        padding: 100px 0 50px;
    }

    .category-hero-title {
        font-size: 2rem;
    }

    .category-hero-subtitle {
        font-size: 1rem;
    }

    .category-section {
        padding: 70px 0;
    }

    .category-cta {
        padding: 70px 0;
    }
}

/* ------------------------------
   HEALTHCARE PAGE – MODERN STYLE
------------------------------ */

.health-hero {
    background: linear-gradient(135deg, #0b62d6, #003a7c);
    padding: 140px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
}

.hero-subtitle {
    color: #e8f0ff;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-icon-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 22px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(6px);
    transition: all .3s ease;
}

.hero-icon-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.25);
}

/* SERVICE SECTION */
.health-services-section {
    padding: 100px 0;
}

.service-wrapper {
    margin-bottom: 90px;
}

.service-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #003a7c;
}

.service-desc {
    color: #6c757d;
    font-size: 1.1rem;
}

.service-img {
    border-radius: 20px;
    transition: .4s;
}

.service-img:hover {
    transform: scale(1.03);
}

.service-card {
    background: #fff;
    padding: 18px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .4s ease;
}

.service-card i {
    font-size: 1.8rem;
    color: #0b62d6;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.call-btn {
    background: #0b62d6;
    padding: 14px 35px;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    transition: .3s ease-in-out;
}

.call-btn:hover {
    background: #003a7c;
    color: #fff;
    transform: translateY(-4px);
}

.section-divider {
    margin: 80px 0;
    opacity: 0.15;
    border-top: 2px solid #ccc;
}


/* ------------------------------
   CAREERS PAGE STYLES
------------------------------ */

/* Careers Hero Section */
.careers-hero {
    background: linear-gradient(135deg, #0b62d6 0%, #003a7c 100%);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: wave 15s ease-in-out infinite;
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.careers-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.careers-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.careers-hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Mission Section */
.careers-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.3);
}

.mission-card:hover .mission-icon {
    transform: rotateY(360deg) scale(1.1);
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.mission-text {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Values Section */
.careers-values {
    padding: 100px 0;
    background: white;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
}

.value-item:hover .value-icon {
    color: white;
    transform: scale(1.2);
}

.value-item:hover .value-title,
.value-item:hover .value-description {
    color: white;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
    transition: all 0.4s ease;
}

.value-description {
    color: var(--light-text);
    line-height: 1.6;
    transition: all 0.4s ease;
}

/* Open Positions Section */
.careers-positions {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.positions-grid {
    display: grid;
    gap: 30px;
    margin-top: 60px;
}

.position-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;

    position: relative;
    overflow: hidden;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.position-card:hover::before {
    opacity: 0.03;
}

.position-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
}

.position-content {
    position: relative;
    z-index: 1;
}

.position-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.position-title {
    font-size: 1.5rem;
    padding-bottom: 10px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.position-department {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}



.apply-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
    color: white;
}

/* Job Flyer Image */
.job-flyer-wrapper {
    width: 100%;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.job-flyer-img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

/* WhatsApp apply button */
.apply-btn i.bi-whatsapp {
    font-size: 1.1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .job-flyer-img {
        max-width: 100%;
        border-radius: 10px;
    }
}


/* Benefits Section */
.careers-benefits {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.benefit-card:hover::before {
    opacity: 0.05;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
}

.benefit-content {
    position: relative;
    z-index: 1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(10deg) scale(1.1);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.benefit-description {
    color: var(--light-text);
    line-height: 1.6;
}

/* CTA Section */
.careers-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: wave 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: #e8f0ff;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    padding: 15px 40px;
    background: white;
    color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    color: var(--primary-blue);
}

.cta-btn-secondary {
    padding: 15px 40px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-hero-title {
        font-size: 2.8rem;
    }

    .careers-hero-subtitle {
        font-size: 1.3rem;
    }

    .mission-grid,
    .values-container,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .position-meta {
        gap: 15px;
    }

    .cta-title {
        font-size: 2.3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .careers-hero {
        padding: 120px 0 80px;
    }

    .careers-hero-title {
        font-size: 2.2rem;
    }

    .careers-hero-subtitle {
        font-size: 1.1rem;
    }

    .mission-card,
    .position-card,
    .benefit-card {
        padding: 30px 20px;
    }

    .careers-mission,
    .careers-values,
    .careers-positions,
    .careers-benefits,
    .careers-cta {
        padding: 70px 0;
    }
}


/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.popup-box {
    background: #fff;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Close button */
.close-popup {
    float: right;
    font-size: 26px;
    cursor: pointer;
    color: #444;
}

.popup-box h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.popup-box .apply-btn {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
    text-align: center;
}


/* Increase logo sizes without changing containers */
.logo-card img {
    max-width: 180px !important;
    max-height: 100px !important;
}

.logo-item img {
    max-width: 140px !important;
    max-height: 90px !important;
}

/* Adjust for licensed logos */
.simple-card .logo-box img {
    max-width: 160px !important;
    filter: none !important;
    transition: transform 0.3s ease;
}