/* ===================================
   Modern Home Page Design
   Inspired by Oman Agencies
   =================================== */

/* ===================================
   Hero Section - Modern Slider
   =================================== */
.hero-modern {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    /* background: #1e293b; */
}

.hero-slider-modern {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 21, 21, 0.4);
    z-index: 2;
    pointer-events: none;
}

.hero-content-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-text {
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 1.3s ease;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.btn-hero-primary {
    background: #ffffff;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.btn-hero-secondary:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Navigation */
.hero-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 4;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: #ffffff;
    transform: scale(1.1);
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    width: 40px;
    border-radius: 6px;
}

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

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

/* ===================================
   Features Bar
   =================================== */
.features-bar {
    background: #ffffff;
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: #ededed;
    transition: all 0.3s ease;
    border-right: 1px solid #e2e8f0;
    margin: 5rem 3rem;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.feature-item:hover .feature-icon,
.feature-item:hover .feature-content h3,
.feature-item:hover .feature-content p {
    color: #ffffff;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgb(255, 255, 255);
}

.feature-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtext {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   Recruitment Process Section
   =================================== */
.recruitment-process-section {
    padding: 80px 0;
    /* background: linear-gradient(to bottom, #ffffff, #f8fafc); */
    background: white;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.process-steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 80px;
    position: relative;
    padding-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    width: 25%;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0 10px;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-content {
    padding: 35px 25px;
    min-height: 280px;
    text-align: left;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.process-step:hover .step-content {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.step-content ul {
    padding-left: 20px;
    list-style-type: none;
    margin: 0;
}

.step-content ul li {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    padding-left: 5px;
}

.step-content ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    border: 4px solid white;
}

/* Background Colors utilizing Theme */
.grey-bg {
    background-color: #ffffff;
    background-image: linear-gradient(to bottom right, #ffffff, #f1f5f9);
}

/* Reusing 'pink-bg' class to map to Theme Primary Light for consistency with request to keep code but match website color */
.pink-bg {
    background-color: #ecfdf5;
    background-image: linear-gradient(to bottom right, #f0fdf4, #dcfce7);
    border-color: #bbf7d0;
}

/* Steps Margin Logic for Staircase Effect */
.step-1 {
    margin-top: 180px;
}

.step-2 {
    margin-top: 120px;
}

.step-3 {
    margin-top: 60px;
}

.step-4 {
    margin-top: 0px;
}

/* Walker Icon */
.process-icon-container {
    position: absolute;
    left: 20px;
    top: -10px;
    font-size: 120px;
    color: var(--primary-color);
    z-index: 1;
    opacity: 0.1;
    transform: rotate(-10deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(-10deg);
    }

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

    100% {
        transform: translateY(0px) rotate(-10deg);
    }
}

/* Arrow Graphic */
.process-arrow {
    position: absolute;
    top: -90px;
    left: 10%;
    width: 70%;
    height: 250px;
    pointer-events: none;
    z-index: 0;
}

.process-arrow svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.1));
}

.process-arrow path {
    stroke: #cbd5e1;
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 10, 10;
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

@media (max-width: 991px) {
    .process-steps-container {
        flex-direction: column;
        align-items: center;
        margin-top: 60px;
        gap: 40px;
    }

    .process-step {
        width: 100%;
        max-width: 450px;
        margin-top: 0 !important;
        padding: 0;
    }

    .step-content {
        min-height: auto;
    }

    .process-icon-container {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        font-size: 80px;
        opacity: 0.2;
        display: none;
        /* Hide on mobile to clean up */
    }

    .process-arrow {
        display: none;
    }

    .step-number {
        bottom: -30px;
    }
}

/* ===================================
   Services Modern Section
   =================================== */
.services-modern {
    background: var(--gray-bg);
    padding: 100px 0;
}

.service-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.2);
}

.service-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-modern:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-link {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-body {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.service-btn {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    color: var(--primary-dark);
    gap: 15px;
}

/* Button Primary Modern */
.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    color: #ffffff;
}

/* ===================================
   Supplier Partner Section
   =================================== */
.supplier-partner-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.supplier-content {
    padding-right: 40px;
}

.supplier-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color, #0f172a);
    margin-bottom: 30px;
    line-height: 1.3;
    position: relative;
}

.supplier-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color, #22b3c1);
    margin-top: 15px;
    border-radius: 2px;
}

.supplier-content p {
    margin-bottom: 25px;
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.05rem;
}

.supplier-benefits {
    margin: 30px 0 40px 0;
    padding: 0;
    list-style: none;
}

.supplier-benefits li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #374151;
    font-weight: 500;
}

.supplier-benefits li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color, #22b3c1);
    font-size: 1.1rem;
}

/* Premium Form Card */
.supplier-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border-top: 5px solid var(--primary-color, #22b3c1);
    transition: transform 0.3s ease;
}

.supplier-form-wrapper:hover {
    transform: translateY(-5px);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.form-label span.required {
    color: #ef4444;
    margin-left: 3px;
}

.form-control,
.form-select {
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: 8px;
    background-color: #f9fafb;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color, #22b3c1);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(34, 179, 193, 0.1);
    outline: none;
}

.captcha-section {
    background: #f3f4f6;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #d1d5db;
    margin-bottom: 20px;
}

.captcha-box {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #374151;
    background: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    display: inline-block;
    user-select: none;
    background-image: linear-gradient(45deg, #f3f4f6 25%, transparent 25%, transparent 75%, #f3f4f6 75%, #f3f4f6),
        linear-gradient(45deg, #f3f4f6 25%, transparent 25%, transparent 75%, #f3f4f6 75%, #f3f4f6);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
}

.btn-primary-modern {
    background: var(--primary-color, #22b3c1);
    color: #fff;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(34, 179, 193, 0.3);
}

.btn-primary-modern:hover {
    background: #1a929e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 179, 193, 0.4);
}

@media (max-width: 991px) {
    .supplier-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .supplier-form-wrapper {
        padding: 30px 20px;
    }
}

/* ===================================
   Industries & Sourcing Section
   =================================== */
.industries-sourcing-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #f0fdf4);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    padding: 15px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.industry-item:hover {
    background: white;
    transform: translateX(10px) translateY(-2px);
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
}

.industry-item i {
    font-size: 1.4rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    color: #64748b;
    transition: all 0.4s ease;
}

.industry-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

/* Sourcing Visual Container */
.sourcing-visual-container {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sourcing-circle {
    position: relative;
    width: 600px;
    height: 600px;
}

/* Central Bulb - Glowing Effect */
.sourcing-center-bulb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
    z-index: 20;
    border: 6px solid white;
}

.sourcing-center-bulb::after {
    content: '';
    position: absolute;
    bottom: -15px;
    width: 50px;
    height: 35px;
    background: linear-gradient(to bottom, #e2e8f0, #cbd5e1);
    border-radius: 0 0 15px 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sourcing-center-bulb i {
    font-size: 5rem;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* Common Segment Styles - The Shapes */
.sourcing-float-label,
.sourcing-segment {
    position: absolute;
    width: 235px;
    /* Half of 500px minus gap */
    height: 245px;
    padding: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 5;
    background-color: white;
    /* Fallback */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.sourcing-float-label:hover,
.sourcing-segment:hover {
    z-index: 10;
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Top Left - Label - The 1st Shape */
.sourcing-float-label {
    top: 0;
    left: 0;
    border-radius: 200px 0 0 0;
    /* Top Left Curve */
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    /* Very light green */
    align-items: flex-end;
    padding-right: 70px;
    padding-bottom: 50px;
    text-align: right;
}

.sourcing-float-label h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    top: 10px;
    left: 10px;
}

/* Top Right - Asia - The 2nd Shape */
.segment-asia {
    top: 0;
    right: 0;
    border-radius: 0 200px 0 0;
    /* Top Right Curve */
    background: linear-gradient(225deg, #f8fafc, #e2e8f0);
    /* Light Grey */
    padding-left: 50px;
    padding-bottom: 50px;
    align-items: flex-start;
}

/* Bottom Right - Africa - The 3rd Shape */
.segment-africa {
    bottom: 0;
    right: 0;
    border-radius: 0 0 200px 0;
    /* Bottom Right Curve */
    /* background: linear-gradient(315deg, #f8fafc, #f1f5f9); Lighter Grey */
    background: #f1f5f9;
    padding-left: 50px;
    padding-top: 50px;
    align-items: flex-start;
}

/* Bottom Left - Other - The 4th Shape */
.segment-other {
    bottom: 0;
    left: 0;
    border-radius: 0 0 0 200px;
    /* Bottom Left Curve */
    background: #f8fafc;
    align-items: flex-end;
    padding-right: 50px;
    padding-top: 50px;
    text-align: right;
}

/* Text Styling inside segments */
.sourcing-segment h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark-color);
    margin-left: 15px;
    text-transform: uppercase;
}

.sourcing-segment ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sourcing-segment ul li {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 5px;
    margin-left: 15px;
    position: relative;
    font-weight: 500;
    line-height: 1;
}

/* Custom list alignment based on quadrant */
.segment-asia ul li,
.segment-africa ul li {
    padding-left: 15px;
}

.segment-asia ul li::before,
.segment-africa ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.segment-other ul li {
    padding-right: 15px;
}

.segment-other ul li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 991px) {
    .industries-sourcing-section {
        padding: 60px 0;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sourcing-visual-container {
        height: auto;
        min-height: 500px;
        margin-top: 60px;
        transform: scale(0.9);
    }
}

@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .sourcing-visual-container {
        transform: scale(1);
        display: block;
        height: auto;
        padding-top: 20px;
    }

    .sourcing-circle {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* On mobile, stack them as cards */
    .sourcing-float-label,
    .sourcing-segment {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 180px;
        border-radius: 15px;
        /* reset curves */
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        padding: 25px;
        align-items: flex-start;
        text-align: left;
    }

    .segment-other {
        align-items: flex-start;
        text-align: left;
    }

    .segment-other ul li {
        padding-right: 0;
        padding-left: 15px;
    }

    .segment-other ul li::before {
        right: auto;
        left: 0;
    }

    .sourcing-float-label {
        align-items: center;
        text-align: center;
        padding: 40px 20px 80px 20px;
        /* Space for bulb overlap */
        background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    }

    .sourcing-float-label h3 {
        top: 0;
        left: 0;
    }

    /* Adjust bulb for stacked mobile view */
    .sourcing-center-bulb {
        position: relative;
        top: -60px;
        /* Pull into the label area */
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 120px;
        margin-bottom: -50px;
    }

    .sourcing-center-bulb i {
        font-size: 3.5rem;
    }
}

/* ===================================
   Destinations Modern Section
   =================================== */
.destinations-modern {
    background: #ffffff;
    padding: 100px 0;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

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

.destination-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.15);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #ffffff;
}

.destination-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.destination-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.destination-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.destination-desc {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* ===================================
   About Modern Section
   =================================== */
.about-modern {
    background: #ffffff;
    padding: 100px 0;
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.about-experience-badge h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.about-experience-badge p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
}

.about-content .about-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--gray-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    transform: translateX(10px);
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.about-feature-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

/* ===================================
   Stats Modern Section
   =================================== */
.stats-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
}

.stat-card-modern {
    text-align: center;
    padding: 30px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 2.2rem;
}

.stat-number-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label-modern {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.95;
    margin: 0;
    font-weight: 500;
}

/* ===================================
   Testimonials Modern Section
   =================================== */
.testimonials-modern {
    background: var(--gray-bg);
    padding: 100px 0;
}

.testimonial-card-modern {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.testimonial-quote {
    color: var(--primary-color);
    font-size: 3rem;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-rating i.active {
    color: #fbbf24;
}

.testimonial-rating i:not(.active) {
    color: #e2e8f0;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    flex: 1;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author-modern img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* ===================================
   Blog Modern Section
   =================================== */
.blog-modern {
    background: #ffffff;
    padding: 100px 0;
}

.blog-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-modern:hover .blog-image-wrapper img {
    transform: scale(1.1);
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.blog-date-badge .month {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.blog-body-modern {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-meta-modern i {
    color: var(--primary-color);
}

.blog-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt-modern {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-link-modern {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-link-modern:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .about-main-image {
        height: 400px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

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

    .section-subtext {
        font-size: 1rem;
    }

    .features-bar {
        margin-top: 0;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .services-modern,
    .destinations-modern,
    .about-modern,
    .stats-modern,
    .testimonials-modern,
    .blog-modern {
        padding: 60px 0;
    }

    .hero-navigation {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .feature-content h3 {
        font-size: 2rem;
    }

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

/* ===================================
   Job Seeker Section (Tabbed)
   =================================== */
.job-category-section {
    padding: 80px 0;
    font-size: 15px;
    background-color: #f8f9fa;
}

/* Tab Navigation */
.job-tabs-nav {
    display: flex;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    border-radius: 50px;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #edf2f7;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 20px 30px;
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    color: var(--primary-color, #22b3c1);
    background-color: #f8fafc;
}

.tab-btn.active {
    background-color: var(--dark-color, #0f172a);
    color: #fff;
}

/* Arrow indicator for active tab */
.tab-arrow {
    display: none;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--dark-color, #0f172a);
    z-index: 5;
}

.tab-btn.active .tab-arrow {
    display: block;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
    background: var(--dark-color, #0f172a);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tab-content.active {
    display: block;
}

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

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

/* Base Card Style */
.job-card,
.job-item,
.country-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
}

/* Industry Cards Grid */
.job-card {
    display: flex;
    align-items: center;
    padding: 25px;
    border: 1px solid #edf2f7;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color, #22b3c1);
    box-shadow: 0 10px 15px -3px rgba(34, 179, 193, 0.1);
}

.job-icon {
    font-size: 2rem;
    color: var(--primary-color, #22b3c1);
    margin-right: 20px;
    width: 50px;
    text-align: center;
    transition: transform 0.3s ease;
}

.job-card:hover .job-icon {
    transform: scale(1.1);
}

.job-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e293b;
}

/* Profession List Grid */
.job-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
}

.job-item:hover {
    color: var(--primary-color, #22b3c1);
    background-color: #f8fafc;
    padding-left: 20px;
}

.job-item i {
    color: var(--primary-color, #22b3c1);
    width: 30px;
    text-align: center;
    margin-right: 15px;
    opacity: 0.8;
}

/* Country Grid */
.country-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 1px solid #f1f5f9;
    color: #334155;
    font-weight: 600;
    font-size: 1rem;
}

.country-item:hover {
    color: var(--primary-color, #22b3c1);
    /* background-color: var(--primary-color, #22b3c1); */
    border-color: var(--primary-color, #22b3c1);
    transform: translateX(5px);
}

.country-item i {
    margin-right: 15px;
    font-size: 0.9rem;
    color: var(--primary-color, #22b3c1);
}

/* .country-item i:hover {
    color: var(--primary-color, #22b3c1);
    background-color: #f8fafc;
} */

.country-item:hover i {
    color: #fff;
}

@media (max-width: 991px) {
    .job-tabs-nav {
        flex-direction: column;
        border-radius: 16px;
    }

    .tab-arrow {
        display: none;
    }

    .tab-btn {
        border-bottom: 1px solid #edf2f7;
    }

    .tab-btn:last-child {
        border-bottom: none;
    }

    .tab-content {
        padding: 20px;
    }
}

/* ===================================
   Global Clients Section
   =================================== */
.global-clients-section {
    position: relative;
    padding: 100px 0;
    /* Deep Corporate Blue Gradient with Image fallback */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 58, 138, 0.85) 100%), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    overflow: hidden;
}

.clients-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle pattern overlay */
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
}

.clients-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 3.5rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.clients-slider-container {
    position: relative;
    padding: 0 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.clients-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    /* Masking for smooth fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
    /* Performance optimization */
}

/* Glassmorphism Card Style */
.client-logo-item {
    width: 240px;
    height: 160px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: #fff;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.client-logo-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.client-logo-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.client-logo-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-color, #22b3c1);
}

.client-name {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

/* Navigation Buttons */
.client-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    backdrop-filter: blur(4px);
}

.client-nav:hover {
    background: #fff;
    color: var(--primary-color, #0e7490);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.client-nav.prev {
    left: 0;
}

.client-nav.next {
    right: 0;
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 45px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    margin-top: 30px;
}

.view-all-btn:hover {
    background: #fff;
    color: var(--primary-color, #0e7490);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    border-color: #fff;
}

@media (max-width: 768px) {
    .clients-slider-container {
        padding: 0 30px;
    }

    .client-logo-item {
        width: 200px;
        height: 140px;
    }

    .client-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===================================
   CTA New Job Section
   =================================== */
.cta-new-job-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f2d35 0%, #155e6b 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-new-job-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* "Starts" Circle Effect */
.starts-circle {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    z-index: 1;
}

.starts-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 110%;
    height: 140%;
    border: 3px solid #ef4444;
    /* Keep the red accent from the image */
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    z-index: -1;
    animation: circleWobble 6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

@keyframes circleWobble {

    0%,
    100% {
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
        transform: translate(-50%, -50%) rotate(-5deg);
    }

    33% {
        border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    66% {
        border-radius: 40% 50% 60% 40% / 40% 60% 40% 60%;
        transform: translate(-50%, -50%) rotate(-10deg);
    }
}

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

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-sub-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border: 2px solid #ffffff;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-cta-outline:hover {
    background: #ffffff;
    color: #0f2d35;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline i {
    transition: transform 0.3s ease;
}

.btn-cta-outline:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }

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

    .btn-cta-outline {
        width: 100%;
        max-width: 300px;
    }
}

/* ===================================
   Info Cards Section
   =================================== */
.info-cards-section {
    position: relative;
    padding-bottom: 100px;
    /* Seamless continuation of the previous section's background */
    background: linear-gradient(135deg, #0f2d35 0%, #155e6b 100%);
    margin-top: -1px;
    /* Fix potential sub-pixel rendering gaps */
}

.info-cards-section .container {
    padding-top: 20px;
}

.info-card {
    background: #ffffff;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 4px;
    /* Slightly squared like the reference image */
    position: relative;
    top: 0;
    border-bottom: 4px solid transparent;
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-bottom-color: #22b3c1;
    /* Teal border on hover */
}

.info-card-title {
    color: #0f2d35;
    /* Dark Teal instead of Red */
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 15px;
}

/* Underline decoration for title like in some premium designs */
.info-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: rgba(34, 179, 193, 0.2);
    /* Light teal */
    border-radius: 2px;
}

.info-card-text {
    color: #334155;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.info-card-subtext {
    flex: 1;
    /* Pushes button to bottom */
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-info-card {
    display: inline-block;
    padding: 14px 35px;
    background-color: #881337;
    /* Default to a Deep Red to match image contrast? No, user said website color. */
    background-color: #22b3c1;
    /* Website Primary Cyan */
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(34, 179, 193, 0.3);
}

.btn-info-card:hover {
    background-color: #0e7490;
    /* Darker teal on hover */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 179, 193, 0.4);
}

/* Variant for the middle button if needed, often distinct */
.info-card .dark-btn {
    background-color: #0f2d35;
    /* Dark buttons */
    box-shadow: 0 4px 15px rgba(15, 45, 53, 0.3);
}

.info-card .dark-btn:hover {
    background-color: #1e293b;
    box-shadow: 0 8px 25px rgba(15, 45, 53, 0.4);
}

/* ===================================
   Job Listings Section
   =================================== */
/* ===================================
   Job Listings Section
   =================================== */
.job-listings-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    /* Subtle pattern or gradient for premium feel */
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
}

.just{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tabs Styling */
.job-listing-tabs {
    display: inline-flex;
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    gap: 10px;
}

.tab-btn-pill {
    background: transparent;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.tab-btn-pill.active {
    background: #22b3c1;
    /* Website Primary Cyan */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(34, 179, 193, 0.4);
}

.tab-btn-pill:hover:not(.active) {
    background: #f1f5f9;
    color: #22b3c1;
    transform: translateY(-1px);
}

/* Job Card Styling */
.job-listing-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.job-listing-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #22b3c1;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.job-listing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #ffffff;
    transform: translateY(-5px);
}

.job-listing-card:hover::before {
    transform: scaleY(1);
}

.job-img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.job-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.job-listing-card:hover .job-img img {
    transform: scale(1.1);
}

.job-content {
    flex: 1;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f2d35;
    /* Dark Teal for title */
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.job-location {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-location i {
    color: #22b3c1;
    /* Theme color for icon */
}

.job-listing-card .fa-star {
    font-size: 1rem;
    color: #1e293b;
    /* Dark star */
    transition: color 0.3s ease, transform 0.3s ease;
}

.job-listing-card:hover .fa-star {
    color: #fbbf24;
    /* Yellow star on hover */
    transform: rotate(72deg);
}

/* Load More Button */
.btn-load-more {
    display: inline-block;
    padding: 15px 50px;
    border: 2px solid #22b3c1;
    /* Cyan border */
    color: #22b3c1;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-load-more:hover {
    background: #22b3c1;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(34, 179, 193, 0.4);
    transform: translateY(-2px);
}

/* ===================================
   More Options Section
   =================================== */
.more-options-section {
    padding-bottom: 100px;
    background: #ffffff;
}

.option-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

.option-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid #22b3c1;
    /* Theme accent line */
}

.option-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.option-card:hover .option-img-wrapper img {
    transform: scale(1.1);
}

.option-body {
    padding: 30px;
}

.option-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.option-subtext {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 25px;
}

.btn-option {
    display: inline-block;
    padding: 12px 35px;
    background-color: #881337;
    /* Fallback or specific color if needed, but going with theme */
    background-color: #be185d;
    /* Pink/Red from previous requests? No, user said "website related color" */
    background-color: #881337;
    /* Resetting to check */

    /* Using Website Theme Colors */
    background-color: #0f2d35;
    /* Dark Teal */
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-option:hover {
    background-color: #22b3c1;
    /* Primary Cyan on hover */
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(34, 179, 193, 0.4);
    transform: translateY(-2px);
}