﻿#two-section-hero-section .col-md-6 {
    flex: 0 0 50%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

#two-section-hero-section img {
    width: 100%
}


#two-section-hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1d1d1f;
}

    #two-section-hero-section * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    #two-section-hero-section .row {
        margin: 0;
        height: 100vh;
        display: flex;
        align-items: center;
    }


    #two-section-hero-section .featured-product {
        width: 100%;
        padding: 0 0 0 80px;
        max-width: 600px;
        margin-left: auto;
    }

    #two-section-hero-section .featured-content {
        transform: translateX(0);
        opacity: 1;
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #two-section-hero-section .feature-badge {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        color: #0071e3;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        transform: translateY(20px);
        animation: #two-section-hero-section-fadeInUp 0.6s ease forwards;
    }

    #two-section-hero-section .featured-content h2 {
        font-size: 48px;
        font-weight: 600;
        line-height: 1.1;
        letter-spacing: -0.002em;
        margin-bottom: 24px;
        background: linear-gradient(to right, #1d1d1f, #0071e3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transform: translateY(20px);
        animation: #two-section-hero-section-fadeInUp 0.6s ease 0.1s forwards;
    }

    #two-section-hero-section .featured-content > div {
        font-size: 21px;
        line-height: 1.4;
        color: #1d1d1f;
        margin-bottom: 32px;
        font-weight: 400;
        transform: translateY(20px);
        animation: #two-section-hero-section-fadeInUp 0.6s ease 0.2s forwards;
    }

    #two-section-hero-section .cta-button {
        display: inline-block;
        padding: 12px 28px;
        font-size: 17px;
        font-weight: 400;
        text-decoration: none;
        color: #ffffff;
        background-color: #0071e3;
        border-radius: 980px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        transform: translateY(20px);
        animation: #two-section-hero-section-fadeInUp 0.6s ease 0.3s forwards;
    }

        #two-section-hero-section .cta-button:hover {
            background-color: #0077ed;
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
        }

    #two-section-hero-section .featured-image-container {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    #two-section-hero-section .featured-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: scale(1.1);
        animation: #two-section-hero-section-imageReveal 1s ease 0.4s forwards;
    }



/* Responsive Design */
@media (max-width: 991px) {
    #two-section-hero-section .featured-product {
        padding: 0 40px;
        max-width: 100%;
        margin: 0 auto;
    }

    #two-section-hero-section .featured-content h2 {
        font-size: 36px;
    }

    #two-section-hero-section .featured-content > div {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    #two-section-hero-section {
        min-height: auto;
    }

        #two-section-hero-section .row {
            flex-direction: column-reverse;
            height: auto;
        }

        #two-section-hero-section .col-md-6 {
            flex: 0 0 100%;
            height: 50vh;
        }

        #two-section-hero-section .featured-product {
            padding: 60px 20px;
        }

        #two-section-hero-section .featured-content h2 {
            font-size: 32px;
        }

        #two-section-hero-section .featured-image-container {
            height: 400px;
        }
}

/* Subtle hover effects */
#two-section-hero-section .featured-content:hover > div {
    color: #0071e3;
    transition: color 0.3s ease;
}

/* Optional: Add subtle shadows for depth */
#two-section-hero-section .featured-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(245, 245, 247, 0.8), transparent 40%);
    pointer-events: none;
}

/* Wrapper to contain both featured-product and opportunities */
#two-section-hero-section .featured-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 40px;
}

/* Adjust featured-product to remove the left padding since wrapper handles it */
#two-section-hero-section .featured-product {
    padding: 0;
    margin-bottom: 80px;
}

/* Opportunities Section */
#two-section-hero-section .opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

#two-section-hero-section .opportunity-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

    #two-section-hero-section .opportunity-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.95);
    }

#two-section-hero-section .card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 113, 227, 0.05);
    border-radius: 50%;
}

#two-section-hero-section .opportunity-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    letter-spacing: -0.001em;
}

#two-section-hero-section .opportunity-card p {
    font-size: 14px;
    color: #86868b;
    line-height: 1.4;
    margin: 0;
}

/* Animation for opportunities */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    #two-section-hero-section .featured-content-wrapper {
        padding: 0 40px;
    }

    #two-section-hero-section .featured-product {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    #two-section-hero-section .featured-content-wrapper {
        padding: 60px 20px;
    }

    #two-section-hero-section .featured-product {
        margin-bottom: 40px;
    }

    #two-section-hero-section .opportunities {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}


:root {
    --primary-gradient: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    --text-gradient: linear-gradient(90deg, #1d1d1f 0%, #515154 100%);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --card-hover-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "SF Pro Display", "Helvetica Neue", sans-serif;
    background-color: #fbfbfd;
    color: #1d1d1f;
    line-height: 1.47;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.opportunities-careers-section {
    padding: 40px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.opportunities-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.opportunities-h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.opportunities-subtitle {
    font-size: 1.25rem;
    color: #86868b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.opportunities-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.opportunities-filter-btn {
    padding: 12px 24px;
    border: none;
    background: white;
    color: #1d1d1f;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .opportunities-filter-btn.active {
        background: var(--primary-gradient);
        color: white;
        box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
    }

    .opportunities-filter-btn:hover:not(.active) {
        background: #f5f5f7;
        transform: translateY(-1px);
    }

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.opportunities-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .opportunities-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary-gradient);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .opportunities-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--card-hover-shadow);
    }

        .opportunities-card:hover::before {
            transform: scaleX(1);
        }

.opportunities-card-type {
    display: inline-block;
    padding: 6px 12px;
    background: #f5f5f7;
    color: #007AFF;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.opportunities-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
    letter-spacing: -0.01em;
}

.opportunities-card-department {
    color: #86868b;
    font-size: 1rem;
    margin-bottom: 16px;
}

.opportunities-card-description {
    color: #515154;
    margin-bottom: 24px;
    line-height: 1.5;
}

.opportunities-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.opportunities-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #86868b;
    font-size: 0.875rem;
}

.opportunities-detail-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.opportunities-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

    .opportunities-apply-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
    }

.opportunities-arrow-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.opportunities-apply-btn:hover .opportunities-arrow-icon {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .opportunities-careers-section {
        padding: 60px 20px;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
    }

    .opportunities-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
}

/* Fade in animation */
.opportunities-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Apply Popup Styles */
.opportunities-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .opportunities-modal-overlay.active {
        display: flex;
        opacity: 1;
        align-items: center;
        justify-content: center;
    }

.opportunities-modal {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.opportunities-modal-overlay.active .opportunities-modal {
    transform: scale(1);
}

.opportunities-modal h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.opportunities-modal p {
    color: #515154;
    line-height: 1.5;
    margin-bottom: 24px;
}

.opportunities-modal .job-title {
    font-weight: 600;
    color: #007AFF;
}

.opportunities-email-address {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f7;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1rem;
    color: #1d1d1f;
    margin: 16px 0;
}

.opportunities-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 32px;
}

.opportunities-modal-btn {
    padding: 12px 24px;
    border-radius: 100px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

    .opportunities-modal-btn.primary {
        background: var(--primary-gradient);
        color: white;
    }

        .opportunities-modal-btn.primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
        }

    .opportunities-modal-btn.secondary {
        background: #f5f5f7;
        color: #1d1d1f;
    }

        .opportunities-modal-btn.secondary:hover {
            background: #e8e8ed;
        }

.opportunities-requirements {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 8px;
    color: #92400e;
    font-weight: 500;
}