/* ==========================================================================
   Talento - Recruitment Website
   Main stylesheet for global reset and starter layouts
   ========================================================================== */

/* 1. Global Reset & Box Sizing */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. Document & Body Styling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 3. Base Media & Elements */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 4. Common Container */
.common-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 240px;
}

/* 5. Header / Navbar Layout */
.site-header {
    width: 100%;
    height: 105px;
    background: #ffffff;
    border-bottom: 1px solid #f2f2f2;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 20px 0px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo {
    display: block;

    flex-shrink: 0;
}

.header-logo img {
    height: 100%;
    width: auto;
}

.desktop-nav {
    display: block;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0855A2;
}

.nav-link.active {
    color: #0855A2;
    font-weight: 500;
}

.btn-contact {
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: inline-flex;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #0855A2;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background: #064380;
}

/* Hamburger Toggle Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #000000;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Nav Overlay Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-panel.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-logo {
    height: 40px;
}

.mobile-logo img {
    height: 100%;
    width: auto;
}

.mobile-close-btn {
    font-size: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000000;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    height: calc(100% - 100px);

}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    transition: color 0.3s ease;
    display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #0855A2;
}

.btn-contact-mobile {
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    padding: 14px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #0855A2;
    text-align: center;
    margin-top: 60px;
}

/* Hamburger Active Transform Animation */
.hamburger-btn.active .line-1 {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .line-2 {
    opacity: 0;
}

.hamburger-btn.active .line-3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* 6. Hero Banner Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 760px;
    overflow: hidden;
    background: #05101f;
}

/* Hero Slider Backgrounds */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-container {
    position: relative;
    height: 100%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Hero Left Content Layout with Grid Wrapper */
.hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 620px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.hero-content {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    margin-bottom: 24px;
}



.badge-text {
    color: #FFF;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

.hero-heading {
    color: #FFF;
    font-family: 'Geist', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px;
}

.hd-badge {
    color: #FFF;
    font-family: 'Geist', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 300;
    line-height: 62px;
}

.hero-paragraph {
    color: #F5F5F5;
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 36px;
    margin-top: 20px;
    max-width: 520px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.btn-cta:hover .btn-arrow {
    transform: translateX(4px);
}

/* Staggered entry animation settings */
.hero-content .hero-badge,
.hero-content .hero-heading,
.hero-content .hero-paragraph,
.hero-content .btn-cta {
    opacity: 0;
    transform: translateY(24px);
}

.hero-content.active .hero-badge {
    animation: fadeUpReveal 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.15s;
}

.hero-content.active .hero-heading {
    animation: fadeUpReveal 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.35s;
}

.hero-content.active .hero-paragraph {
    animation: fadeUpReveal 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.55s;
}

.hero-content.active .btn-cta {
    animation: fadeUpReveal 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.75s;
}

@keyframes fadeUpReveal {
    0% {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Floating Tooltips */
.hero-tooltips {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.tooltip-card {
    position: absolute;
    background: #ffffff;
    border-radius: 6px;
    padding: 12px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    pointer-events: auto;
}

.tooltip-card-content {
    display: flex;
    align-items: center;
    position: relative;
}

.tooltip-text {
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}

.tooltip-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff;
}

/* Tooltip 1 Specific Styling */
.tooltip-easy-job {
    bottom: 12%;
    left: 54%;
    animation: floatTooltipOne 4.5s ease-in-out infinite;
}

@keyframes floatTooltipOne {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Tooltip 2 Specific Styling */
.tooltip-job-alert {
    bottom: 24%;
    right: 15%;
    animation: floatTooltipTwo 5s ease-in-out infinite 0.5s;
}

@keyframes floatTooltipTwo {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.notification-bubble {
    display: flex;

    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    background: #257BD2;
    position: absolute;
    top: -30px;
    right: -35px;
    box-shadow: 0 4px 10px rgba(37, 123, 210, 0.3);
}

/* .notification-icon {
    width: 12px;
    height: 12px;
} */

/* Carousel Indicators style */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.indicator-pill {
    width: 25px;
    height: 5px;
    border-radius: 15px;
    background: #B7BDC3;
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.indicator-progress {
    display: block;
    height: 100%;
    width: 0;
    background-color: #FFFFFF;
}

/* Helper Class for JS Active Indicators (Transition managed dynamically in JS) */


/* Main Layout Wrapper Fixes */
.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 90px);
}

.page-wrapper {
    flex: 1 0 auto;
}

/* ==========================================================================
   7. Who We Are Section
   ========================================================================== */
.who-we-are-section {
    background: #F8F8F8;
    padding: 120px 0;
    overflow: hidden;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.who-we-are-content {
    display: flex;
    flex-direction: column;
}

.who-we-are-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.who-we-are-badge-icon {

    object-fit: contain;
}

.who-we-are-badge-text {
    color: #000;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.who-we-are-heading {
    color: #000;
    font-family: 'Geist', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 15px;
}

.who-we-are-paragraph {
    color: #262626;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 48px;
    max-width: 680px;
}

/* Feature grid: 2 columns */
.who-we-are-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 0;
}

.who-we-are-feature-item {
    border-bottom: 1px solid #EAEAEA;
}

.who-we-are-feature-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 0;
}

.who-we-are-feature-icon {
    width: 30px;


    flex-shrink: 0;
    object-fit: contain;
}

.who-we-are-feature-text {
    color: #000;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

/* Right Visual Column */
.who-we-are-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.who-we-are-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ==========================================================================
   8. Industries We Serve Section
   ========================================================================== */
.industries-section {
    background: #FFFFFF;
    padding: 120px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.industry-card {
    background: #F4F9FF;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(8, 23, 44, 0.04);
}

.industry-card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.industry-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 5px;
    border-radius: 10px;
}

.industry-card-content {
    padding: 30px 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.industry-card-title {
    color: #000;
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: normal;
}

.industry-card-paragraph {
    color: #1D1D1D;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.industry-card-footer {
    border-top: 1px solid #e5e5e5;
    padding: 15px 20px 15px 25px;
    ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.industry-card-footer-text {
    color: #000;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.industry-card-footer-icon {

    object-fit: contain;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-card-footer-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   9. Why Choose Talento Section
   ========================================================================== */
.choose-section {
    background: #F8F8F8;
    padding: 120px 0;
    overflow: hidden;
}

.choose-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.choose-visual {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.choose-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.choose-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 40px;
}

.choose-feature-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 26px;
    border-bottom: 1px solid #EAEAEA;
}

.choose-feature-fullwidth {
    grid-column: span 2;
}

/* Remove border from last row */
/* .choose-features-grid> :nth-last-child(1),
.choose-features-grid> :nth-last-child(2) {
    border-bottom: none;
    padding-bottom: 0;
} */

.choose-feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.choose-feature-icon {

    object-fit: contain;
    flex-shrink: 0;
}

.choose-feature-title {
    color: #000;
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.choose-feature-text {
    color: #000;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}

/* ==========================================================================
   10. Mission & Vision Section
   ========================================================================== */
.mission-section {
    position: relative;
    background-image: url('../images/mission/mission-vission.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0;
    overflow: hidden;
}

/* Geometric Grid Lines Overlay */
.mission-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mission-grid-line-h {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.mission-grid-line-h.h-top {
    top: 140px;
}

.mission-grid-line-h.h-mid {
    top: 310.5px;
}

.mission-grid-line-h.h-bottom {
    top: 441px;
}

.mission-grid-line-v {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.mission-grid-line-v.v-out-left {
    left: calc(50% - 824px);
}

.mission-grid-line-v.v-left-card-left {
    left: calc(50% - 584px);
}

.mission-grid-line-v.v-left-card-right {
    left: calc(50% - 20px);
}

.mission-grid-line-v.v-right-card-left {
    left: calc(50% + 20px);
}

.mission-grid-line-v.v-right-card-right {
    left: calc(50% + 584px);
}

.mission-grid-line-v.v-out-right {
    left: calc(50% + 824px);
}

/* Centered Content Cards */
.mission-cards-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1168px;
    /* 564px * 2 + 40px gap */
    margin: 0 auto;
}

.mission-card {
    position: relative;
    background: #ffffff;
    padding: 40px 48px 0 48px;
    /* 0 bottom padding for seamless pattern placement */
    display: flex;
    flex-direction: column;
    width: 564px;
    height: 301px;
    filter: drop-shadow(0px 10px 30px rgba(8, 23, 44, 0.04));
    transition: transform 0.3s ease;
    overflow: hidden;

    box-sizing: border-box;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card-title {
    color: #000;
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
}

.mission-card-divider {
    height: 1px;
    background: #EAEAEA;
    width: 100%;
    margin-bottom: 20px;
}

.mission-card-text {
    color: #3A3A3A;
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
    margin-bottom: 30px;
    /* Spacing before pattern.webp */
    margin-top: 25px;
    /* Push text to lower half */
    position: relative;
    z-index: 2;
    /* Render text above pattern */
}

.mission-card-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('../images/mission/pattern.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   11. Client Testimonials Section
   ========================================================================== */
.testimonials-section {
    background: #FFFFFF;
    padding: 120px 0;
    overflow: hidden;
}

.testimonials-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 240px;
    padding-right: 0;
}

.testimonials-slider-container {
    width: 100%;
    margin-top: 56px;
    overflow: hidden;
}

.testimonials-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 15px;
    width: 670px;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.testimonial-profile-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.testimonial-name {
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.testimonial-role-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-role-bullet {
    width: 6px;
    height: 6px;
    background-color: #0A56A3;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.testimonial-role {
    color: #0A56A3;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.testimonial-divider {
    height: 1px;
    background: #EAEAEA;
    width: 100%;
    margin: 15px 0;
}

.testimonial-text {
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 70px;
}

.testimonial-logo-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 30px;
}

.testimonial-logo {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.testimonials-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 40px;
    padding-right: 240px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #EAEAEA;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.testimonial-btn:hover {
    background-color: #F8F8F8;
    border-color: #CCCCCC;
}

.testimonial-btn:active {
    transform: scale(0.95);
}

.testimonial-btn img {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   12. CTA / Contact Banner Section
   ========================================================================== */
.talento-cta-section {
    background-image: url('../images/home/people-contact.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.talento-cta-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.talento-cta-heading {
    color: #FFFFFF;
    text-align: center;
    font-family: 'Geist', sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 40px;
}

.talento-cta-highlight {
    position: relative;
    display: inline-block;
}

.talento-cta-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.talento-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.talento-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: 4px;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-contact-us {
    color: #FFFFFF;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-contact-us:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-find-jobs {
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    gap: 10px;
}

.btn-find-jobs:hover {
    background-color: #F3F3F3;
    border-color: #F3F3F3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.talento-cta-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.btn-find-jobs:hover .talento-cta-arrow {
    transform: translate(2px, -2px);
}

/* ==========================================================================
   13. Website Footer Section
   ========================================================================== */
.site-footer {
    background: #FFFFFF;
    padding: 80px 0 100px 0;
    width: 100%;
}

.footer-top-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.footer-menu-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

}

.footer-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    border-bottom: 1px solid #EAEAEA;
}

.footer-menu-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    padding-top: 30px;
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.3s ease;
}

.footer-menu-list a:hover {
    color: #0A56A3;
}

.menu-item-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.footer-menu-list a:hover .menu-item-arrow {
    transform: translate(3px, -3px);
}

.footer-contact-box {
    background: #E8F0FA;
    border-radius: 12px;
    padding: 70px 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-box-globe {
    position: absolute;
    top: 0;
    right: 0;


    object-fit: contain;
    pointer-events: none;
    z-index: 1;
    width: 230px;
}

.contact-group {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-label {
    color: #515151;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact-content {
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.contact-content a {
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: #0A56A3;
}

.contact-social-row {
    display: flex;
    align-items: center;
    gap: 32px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
    color: #0A56A3;
    transform: translateY(-1px);
}


.footer-bottom-bar {
    border-top: 1px solid #EAEAEA;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-copyright {
    color: #414141;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.footer-copyright a {
    color: inherit;

    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #000000;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: #414141;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #000000;
}

.link-divider {
    color: #EAEAEA;
    font-size: 14px;
    user-select: none;
}

.contact-phone-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.phone-divider {
    color: #000000;
    opacity: 0.3;
    user-select: none;
}

/* ==========================================================================
   14. Back to Top Button
   ========================================================================== */
.back-to-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0A56A3;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(8, 85, 162, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, background-color 0.3s ease;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: #084c90;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(8, 85, 162, 0.4);
}

.back-to-top-btn svg {
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover svg {
    transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 106px;
    right: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;

}



.whatsapp-float-btn img {

    object-fit: contain;
    transition: transform 0.3s ease;
}

.whatsapp-float-btn:hover img {
    transform: scale(1.1);
}

/* ==========================================================================
   15. Lenis Smooth Scroll Setup
   ========================================================================== */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis-stopped {
    overflow: hidden;
}

.lenis-scrolling iframe {
    pointer-events: none;
}

/* ==========================================================================
   16. Inner Page Banner Section (Who We Are)
   ========================================================================== */
.inner-banner-section {
    position: relative;
    height: 571px;
    width: 100%;
    overflow: hidden;

}

.inner-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.inner-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 41 88 / 5%) 0%, rgb(0 41 88 / 0%) 40%, rgba(0, 41, 88, 0) 80%);
    z-index: 2;
}

.inner-banner-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.inner-banner-content {
    max-width: 600px;
    margin-top: -40px;
    /* Slight offset upward for visual balance */
}

.inner-banner-title {
    color: #FFFFFF;
    font-family: 'Geist', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 58px;
    margin: 0;
}

/* Floating Tooltip Card Layout */
.inner-banner-tooltip-wrapper {
    position: absolute;
    bottom: 15%;
    left: 12%;
    /* Aligns nicely inside container margins */
    z-index: 4;
    filter: drop-shadow(0 10px 30px rgba(0, 70, 143, 0.12));
    overflow: visible !important;
}

/* Floating Tooltip Card Layout */
.inner-banner-tooltip-wrapper-two {
    position: absolute;
    bottom: 55%;
    right: 18%;
    /* Aligns nicely inside container margins */
    z-index: 4;
    filter: drop-shadow(0 10px 30px rgba(0, 70, 143, 0.12));
    overflow: visible !important;
}

.inner-banner-tooltip {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 18px 24px;
    animation: innerTooltipFloat 4s ease-in-out infinite;
    max-width: 380px;
    position: relative !important;
    overflow: visible !important;
}

/* Speech bubble tooltip arrow pointing down, aligned with the left icon */
.inner-banner-tooltip::after {
    content: "";
    position: absolute;
    bottom: -14px;
    /* Height of the triangle */
    left: 37px;
    /* Aligned centered under the 48px wide circle icon (padding 24px) */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 11px 0 11px;
    border-color: #ffffff transparent transparent transparent;
    z-index: 99;
}

@media (max-width: 991.98px) {
    .inner-banner-tooltip::after {
        left: 33px;
        /* Center-aligned for 20px padding (20 + 24 - 11 = 33px) */
    }
}

@media (max-width: 767.98px) {
    .inner-banner-tooltip::after {
        left: 29px;
        /* Center-aligned for 16px padding (16 + 24 - 11 = 29px) */
    }
}


.tooltip-left-icon {
    width: 48px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooltip-left-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tooltip-right-content {
    display: flex;
    flex-direction: column;
}

.tooltip-card-heading {
    color: #00468F;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

.tooltip-card-desc {
    color: #424752;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 4px 0 0 0;
}

/* Soft up-down floating animation matching home banner tooltip */
@keyframes innerTooltipFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==========================================================================
   Our Heritage Section
   ========================================================================== */

.heritage-section {
    padding: 85px 0;
    background-color: #FFFFFF;
    position: relative;
}

.heritage-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 240px;
    align-items: center;
    margin-bottom: 90px;
}

.heritage-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;

}

.heritage-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
}

.heritage-content-wrapper {
    display: flex;
    flex-direction: column;
}

.heritage-paragraph {
    color: #424752;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.8px;
    margin-bottom: 24px;
}

.heritage-paragraph:last-child {
    margin-bottom: 0;
}

/* Bottom points grid layout */
.heritage-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 220px;
}

.heritage-points-column {
    display: flex;
    flex-direction: column;
}

.heritage-point-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
    border-bottom: 1px solid #EAEAEA;
    /* subtle light gray divider */
    margin-bottom: 28px;
}

.heritage-point-item:last-child {
    margin-bottom: 0;
}

.heritage-point-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.heritage-point-icon {

    flex-shrink: 0;
    width: 30px;
}

.heritage-point-text {
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

/* Responsive overrides */
@media (max-width: 1199px) {
    .heritage-top-row {
        gap: 50px;
        margin-bottom: 70px;
    }

    .heritage-points-grid {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .heritage-top-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .heritage-points-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .heritage-point-item:last-child {
        margin-bottom: 28px;
        /* Allow margin below items that now wrap into a column grid */
    }
}

@media (max-width: 767px) {
    .heritage-section {
        padding: 80px 0;
    }

    .heritage-top-row {
        gap: 30px;
        margin-bottom: 50px;
    }

    .heritage-points-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .heritage-point-item {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .heritage-point-item:last-child {
        margin-bottom: 24px;
    }
}

/* ==========================================================================
   Recruitment Process Section
   ========================================================================== */

.recruitment-process-section {
    padding: 90px 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    /* Prevent horizontal scroll from absolute decorative pattern */
}

/* Left absolute decorative pattern */
.recruitment-pattern-wrapper {
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 1;
    pointer-events: none;
    max-width: 320px;
}

.recruitment-pattern {
    width: 100%;
    height: auto;
    display: block;
}

.recruitment-heading-block {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Grid Layout: 4 columns on desktop */
.recruitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Grid Layout: 4 columns on desktop */
.recruitment-grid-two {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Process Card Layout */
.process-card {
    background-color: #F4F9FF;
    border: 0.5px solid #E6EDF7;

    border-radius: 11px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 70, 143, 0.015);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 70, 143, 0.05);
}

.process-card-icon {

    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.process-card-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.process-card-title {
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    margin: 0 0 18px 0;
}

.process-card-desc {
    color: #1D1D1D;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    margin-bottom: 10px;
}

/* Responsive breakdowns */
@media (max-width: 1199px) {
    .recruitment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .recruitment-grid-two {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .recruitment-pattern-wrapper {
        display: none;
        max-width: 260px;
    }
}

@media (max-width: 991px) {
    .recruitment-process-section {
        padding: 80px 0;
    }

    .recruitment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .recruitment-grid-two {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .recruitment-pattern-wrapper {
        display: none;
        /* Hide pattern on tablet/mobile for clean alignment and zero overflow */
    }

    .recruitment-heading-block {
        margin-bottom: 45px;
    }
}

@media (max-width: 575px) {
    .recruitment-process-section {
        padding: 60px 0;
    }

    .recruitment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recruitment-grid-two {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-card {
        padding: 15px 10px;
    }

    .recruitment-heading-block {
        margin-bottom: 35px;
    }
}

/* ==========================================================================
   Executive Leadership Section
   ========================================================================== */

.leadership-section {
    padding: 100px 0;
    background-color: #F8F8F8;
    position: relative;
}

.leadership-heading-block {
    margin-bottom: 50px;
}

/* Grid Layout: 3 columns on desktop */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Leadership Card Styling */
.leader-card {
    background-color: #F4F9FF;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 70, 143, 0.06);
}

.leader-card-image-wrapper {
    width: 100%;
    position: relative;

    overflow: hidden;
    background-color: #F4F9FF;
    padding: 5px;
    /* Fallback matching site theme */
}

.leader-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.leader-card:hover .leader-card-image {
    transform: scale(1.01);
    /* subtle zoom on hover */
}

.leader-card-content {
    padding: 24px 24px 30px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.leader-card-name {
    color: #151C27;
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.6px;
    margin: 0 0 4px 0;
}

.leader-card-role {
    color: #00468F;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 12px;
    display: block;
}

.leader-card-desc {
    color: #424752;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

/* Responsive configurations */
@media (max-width: 991px) {
    .leadership-section {
        padding: 80px 0;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .leader-card-content {
        padding: 20px 20px 24px 20px;
    }

    .leadership-heading-block {
        margin-bottom: 35px;
    }

    .leadership-section {
        padding: 60px 0;
    }

    .leader-card-name {

        font-size: 19px;

    }

    .leader-card-role {

        font-size: 14px;

        margin-bottom: 3px;
        display: block;
    }

    .leader-card-name {

        line-height: 14.6px;

    }
}

@media (max-width:575px) {
    .leader-card-content {
        padding: 15px 9px 18px 10px;
    }

    .heritage-section {
        padding: 30px 0;
    }
}

@media (max-width:450px) {
    .leadership-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
}

/* ==========================================================================
   Service Page Banner Section
   ========================================================================== */

.service-banner-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-banner-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
    position: relative;
    height: 100%;
}

.service-banner-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
    margin: 0 auto;
}

.service-banner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.service-banner-badge-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.service-banner-badge-text {
    color: #0855A2;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.service-banner-title {
    color: #FFFFFF;
    text-align: center;
    font-family: 'Geist', sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: -1.2px;
    margin: 0 0 20px 0;
}

.service-banner-paragraph {
    color: #E1E1E1;
    text-align: center;
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.8px;
    max-width: 680px;
    margin: 0 auto;
}

/* Tooltip wrapper coordinates and animation hooks */
.service-tooltip-wrapper {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    overflow: visible !important;
}

.service-tooltip-wrapper .tooltip-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
}

.service-tooltip-left {
    bottom: 13%;
    left: 21%;
    animation: floatTooltipOne 4.5s ease-in-out infinite;
}

.service-tooltip-right {
    bottom: 42%;
    right: 15%;
    animation: floatTooltipTwo 5s ease-in-out infinite 0.5s;
}

/* Responsive banner settings */
@media (max-width: 1199px) {
    .service-banner-title {
        font-size: 50px;
        line-height: 56px;
    }

    .service-tooltip-left {
        left: 8%;
        bottom: 15%;
    }

    .service-tooltip-right {
        right: 8%;
        bottom: 45%;
    }
}

@media (max-width: 991px) {
    .service-banner-title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: -0.8px;
    }

    .service-banner-paragraph {
        font-size: 16px;
        line-height: 25.6px;
    }

    .service-tooltip-left {
        left: 5%;
        bottom: 12%;
    }

    .service-tooltip-right {
        right: 5%;
        bottom: 48%;
    }
}

@media (max-width: 767px) {
    .service-banner-title {
        font-size: 34px;
        line-height: 40px;
    }

    .service-tooltip-left {
        left: 4%;
        bottom: 10%;
    }

    .service-tooltip-right {
        right: 4%;
        bottom: 52%;
    }
}

@media (max-width: 575px) {
    .service-banner-title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: -0.5px;
    }

    .service-banner-paragraph {
        font-size: 15px;
        line-height: 22px;
    }

    .service-tooltip-wrapper {
        display: none !important;
        /* Hide on mobile portrait to keep content clean and zero overflow */
    }
}

/* ==========================================================================
   Why Choose Talento? Service Section
   ========================================================================== */

.why-choose-service-section {
    padding: 100px 0;
    background-color: #F8F8F8;
    position: relative;
    overflow: hidden;
}

.why-choose-service-container {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-service-image-block {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-service-image-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 41, 88, 0.08);
}

.why-choose-service-image {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-service-image-block:hover .why-choose-service-image {
    transform: scale(1.03);
}

.why-choose-service-content-block {
    display: flex;
    flex-direction: column;
}

.why-choose-service-heading-area {
    margin-bottom: 30px;
}

.why-choose-service-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-choose-service-point-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-choose-service-point-icon {

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.why-choose-service-point-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-choose-service-point-text {
    display: flex;
    flex-direction: column;
}

.why-choose-service-point-title {
    color: #151C27;
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    margin: 0 0 4px 0;
}

.why-choose-service-point-desc {
    color: #1D1D1D;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.6px;
    margin: 0;
}

/* Responsive configurations */
@media (max-width: 1199px) {
    .why-choose-service-container {
        gap: 40px;
    }

    .why-choose-service-image {
        max-height: 460px;
    }
}

@media (max-width: 991px) {
    .why-choose-service-section {
        padding: 80px 0;
    }

    .why-choose-service-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-service-image-block {
        justify-content: center;
    }

    .why-choose-service-image {
        max-width: 100%;
        max-height: 480px;
    }

    .why-choose-service-heading-area {
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .why-choose-service-section {
        padding: 60px 0;
    }

    .why-choose-service-container {
        gap: 30px;
    }

    .why-choose-service-image {
        border-radius: 12px;
        max-height: 320px;
    }

    .why-choose-service-point-title {
        font-size: 18px;
        line-height: 26px;
    }

    .why-choose-service-point-desc {
        font-size: 14px;
        line-height: 22.4px;
    }

    .why-choose-service-point-item {
        gap: 12px;
    }
}

.btm-patrn {
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-radius: 0px 0px 10px 0px;
}

/* ==========================================================================
   17. Premium Floating Bottom Navbar
   ========================================================================== */
.premium-bottom-navbar {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(10, 86, 163, 0.08) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 36px;
    border: 1px solid rgba(10, 86, 163, 0.22);
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.1),
        0 1px 1px rgba(255, 255, 255, 0.85) inset,
        0 0 20px rgba(10, 86, 163, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 16px;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Tag / Badge */
.navbar-floating-tag {
    position: absolute;
    top: -12px;
    left: 32px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #0a56a3;
    font-family: 'Geist', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(10, 86, 163, 0.18);
    box-shadow:
        0 4px 12px rgba(10, 86, 163, 0.08),
        0 1px 1px rgba(255, 255, 255, 0.9) inset;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pulse indicator dot inside tag */
.navbar-floating-tag .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10B981;
    animation: tag-pulse 1.8s infinite;
}

@keyframes tag-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Nav Item container link */
.nav-item-dock {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    flex: 1;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 8px 0;
    gap: 4px;
    z-index: 2;
    cursor: pointer;
}

/* Active background circular glow */
.nav-item-dock::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 85, 162, 0.12) 0%, rgba(8, 85, 162, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: -1;
}

/* Active item state styling */
.nav-item-dock.active::before,
.nav-item-dock:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.nav-item-dock.active {
    color: #0855A2;
}

.nav-item-dock:hover {
    color: #0855A2;
}

/* Icon Container */
.nav-item-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* SVG Style */
.dock-icon-svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    transition: stroke 0.3s ease, transform 0.3s ease;
}

/* Label text */
.nav-item-text {
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.nav-item-dock.active .nav-item-text {
    font-weight: 600;
}

/* Horizontal Divider inside the dock */
.navbar-divider {
    width: 1px;
    height: 28px;
    background: rgba(8, 85, 162, 0.15);
    align-self: center;
    pointer-events: none;
}

/* SVG Animations - Find Jobs (Briefcase) */
.nav-item-dock:hover .nav-item-icon-container,
.nav-item-dock.active .nav-item-icon-container {
    transform: translateY(-4px) scale(1.05);
}

.nav-item-dock:hover .briefcase-body {
    animation: briefcase-wiggle 0.5s ease-in-out;
}

.nav-item-dock:hover .briefcase-handle,
.nav-item-dock.active .briefcase-handle {
    transform: translateY(-1px);
    transition: transform 0.3s ease;
}

@keyframes briefcase-wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-6deg);
    }

    75% {
        transform: rotate(6deg);
    }
}

/* SVG Animations - Service (4 blocks) */
.nav-item-dock:hover .block-1 {
    transform: translate(-1.5px, -1.5px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item-dock:hover .block-2 {
    transform: translate(1.5px, -1.5px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item-dock:hover .block-3 {
    transform: translate(1.5px, 1.5px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item-dock:hover .block-4 {
    transform: translate(-1.5px, 1.5px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active line/glow highlight bar */
.nav-active-glow {
    position: absolute;
    bottom: -2px;
    width: 32px;
    height: 3px;
    background: #0855A2;
    border-radius: 1.5px;
    opacity: 0;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    box-shadow: 0 0 8px rgba(8, 85, 162, 0.6);
}

.nav-item-dock.active .nav-active-glow {
    opacity: 1;
    transform: scaleX(1);
}

/* ==========================================================================
   19. Contact Us Section (contact-now.html)
   ========================================================================== */
.talento-contact-section {
    padding: 100px 0 80px 0;
    background: #ffffff;
}

/* Part 1: Top 3 Contact Cards */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card {
    background: linear-gradient(180deg, #F4F9FF 0%, #F4F9FF 100%);
    border: 0.5px solid #dfdfdf98;
    border-radius: 11px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    min-height: 240px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.contact-card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon {

    object-fit: contain;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
    z-index: 9;
}

.contact-card-phone {
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;

    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-card-phone:hover {
    color: #0D5DB8;
}

.contact-card-location {
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;

    margin: 0;
}

.contact-card-link {
    color: #0D5DB8;
    background: #ffffff;
    border-radius: 100px;
    padding: 6px 16px;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 12px;
    border: 1px solid rgba(13, 93, 184, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.contact-card-link:hover {
    background: #0D5DB8;
    color: #ffffff;
    border-color: #0D5DB8;
    box-shadow: 0 4px 12px rgba(13, 93, 184, 0.15);
}

.contact-card-email {
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 41.6px;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-card-email:hover {
    color: #0D5DB8;
}

.contact-card-helper {
    color: #4D463A;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 4px 0 0 0;
}

/* Part 2: Contact Form Area */
.contact-form-area {
    width: 100%;
}

.contact-form-heading-block {
    margin-bottom: 35px;
}

.contact-form-heading-block .who-we-are-heading {
    margin-bottom: 0;
}

.contact-form-container {
    background: linear-gradient(180deg, #F4F9FF 0%, #F4F9FF 100%);
    border-radius: 12px;
    padding: 60px 80px;
    width: 100%;
    position: relative;
}

.talento-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    color: #151C27;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 14px 20px;
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0d5db8;
    box-shadow: 0 0 0 3px rgba(13, 93, 184, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0AEC0;
}

.form-submit-wrapper {
    display: flex;
    justify-content: flex-start;
}

.btn-submit-inquiry {
    background: #01468F;
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 500;

    padding: 14px 75px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit-inquiry:hover {
    background: #0a468c;
}

.blue-clrs {
    color: #0855A2;
}

.bg-clr {
    background-color: #F8F8F8;
}

.bg-img-emplyr {

    position: relative;
    background-image: url('../images/employers/bg-emplr.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0px;
    overflow: hidden;



}

.text-wht {
    color: #ffffff;
}

/* ==========================================================================
   20. Employers Application / Get Started Form Section (employers.html)
   ========================================================================== */
.employer-form-section {
    padding: 100px 0 80px 0;
    background: #ffffff;
}

.employer-form-heading-area {
    margin-bottom: 40px;
}

.employer-form-heading-area .who-we-are-heading {
    margin-bottom: 0;
}

.employer-form-wrapper {
    background: linear-gradient(180deg, #F4F9FF 0%, #F4F9FF 100%);
    border-radius: 12px;
    border: 2px dashed rgba(8, 85, 162, 0.22);
    padding: 60px 80px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.employer-form-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70px;
    /* background: linear-gradient(135deg, rgba(8, 85, 162, 0.05) 0%, rgba(8, 85, 162, 0.12) 100%);
    clip-path: polygon(100% 0, 0 100%, 100% 100%); */
    background: linear-gradient(225deg, #0855a21c 0%, #A5C5DC00 80%, #A5C5DC00 100%);
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    border-bottom-right-radius: 11px;
    pointer-events: none;
    z-index: 1;
}

.employer-get-started-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.form-grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-field-group.full-width {
    grid-column: span 2;
}

.form-field-group.spacing-top {
    margin-top: 10px;
}

.form-field-group label {
    color: #151C27;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.form-field-group input,
.form-field-group textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 14px 20px;
    color: #000000;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
}

.form-field-group input:focus,
.form-field-group textarea:focus {
    border-color: #0855A2;
    box-shadow: 0 0 0 3px rgba(8, 85, 162, 0.08);
}

.form-field-group input::placeholder,
.form-field-group textarea::placeholder {
    color: #A0AEC0;
}

/* Repeating blocks container styling */
.dynamic-jobs-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.job-position-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    border-top: 1px solid rgba(8, 85, 162, 0.1);
    padding-top: 24px;
}

.job-position-block[data-index="0"] {
    border-top: none;
    padding-top: 0;
}

.form-actions-row {
    display: flex;
    justify-content: flex-start;
}

.btn-add-position {
    background: #01468F;
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-add-position:hover {
    background: #003366;
}

.btn-add-position:active {
    transform: scale(0.98);
}

.form-submit-row {
    display: flex;
    justify-content: flex-start;
}

.btn-submit-application {
    background: #01468F;
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 75px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit-application:hover {
    background: #003366;
}

.btn-submit-application:active {
    transform: scale(0.98);
}

/* Custom Modal Dialog Styles */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.custom-modal-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 480px;
    width: calc(100% - 40px);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(8, 85, 162, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-modal-overlay.active .custom-modal-box {
    transform: scale(1);
}

.modal-badge-icon {
    font-size: 32px;
    color: #F59E0B;
    background: #FEF3C7;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-message-text {
    color: #1F2937;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.btn-modal-close {
    background: #01468F;
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.btn-modal-close:hover {
    background: #003366;
}

/* ==========================================================================
   Find Jobs Banner Section (Added Custom Classes)
   ========================================================================== */
.fj-banner {
    position: relative;
    height: 580px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fj-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(32, 86, 148, 0.82) 0%, rgba(32, 86, 148, 0.55) 45%, rgba(32, 86, 148, 0) 60%);
    z-index: 2;
}

.fj-banner-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.fj-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 600px;
}

.fj-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    background-color: #FFFFFF1A;
    padding: 6px 10px;
    border: 1px solid #FFFFFF0D;
    border-radius: 35px;
}

.fj-banner-label-icon {
    width: 12px;
    height: 12px;
    opacity: 0.8;
}

.fj-banner-label-text {
    color: #fff;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.fj-banner-title {
    color: #FFFFFF;
    font-family: 'Geist', sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 10px 0;
    letter-spacing: -1.2px;
}

.fj-banner-description {
    color: #E1E1E1;
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 36px 0;
}

.fj-banner-btn {
    background: #FFFFFF;
    color: #0c4380;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.fj-banner-btn:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.fj-banner-tooltip {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    animation: fjBannerFloat 4.5s ease-in-out infinite;
}

.fj-tooltip-left {
    bottom: 13%;
    left: 40%;
    animation: floatTooltipOne 4.5s ease-in-out infinite;
}

.fj-banner-tooltip .tooltip-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    pointer-events: auto;
}

@keyframes fjBannerFloat {
    0% {
        transform: translateY(-50%) translateY(0);
    }

    50% {
        transform: translateY(-50%) translateY(-10px);
    }

    100% {
        transform: translateY(-50%) translateY(0);
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 1399.98px) {
    .fj-banner-title {
        font-size: 48px;
    }

    .fj-banner-tooltip {
        right: 12%;
    }
}

@media (max-width: 1199.98px) {
    .fj-banner {
        height: 520px;
    }

    .fj-banner-title {
        font-size: 42px;
    }

    .fj-banner-tooltip {
        right: 6%;
        transform: translateY(-50%) scale(0.9);
    }

    @keyframes fjBannerFloat {
        0% {
            transform: translateY(-50%) scale(0.9) translateY(0);
        }

        50% {
            transform: translateY(-50%) scale(0.9) translateY(-8px);
        }

        100% {
            transform: translateY(-50%) scale(0.9) translateY(0);
        }
    }
}

@media (max-width: 991.98px) {
    .fj-banner {
        height: 480px;
    }

    .fj-banner-title {
        font-size: 36px;
    }

    .fj-banner-description {
        font-size: 15px;
        max-width: 420px;
        margin-bottom: 28px;
    }

    .fj-banner-tooltip {
        right: 4%;
        transform: translateY(-50%) scale(0.8);
    }

    @keyframes fjBannerFloat {
        0% {
            transform: translateY(-50%) scale(0.8) translateY(0);
        }

        50% {
            transform: translateY(-50%) scale(0.8) translateY(-6px);
        }

        100% {
            transform: translateY(-50%) scale(0.8) translateY(0);
        }
    }
}

@media (max-width: 767.98px) {
    .fj-banner {
        height: auto;
        min-height: 420px;
        padding: 60px 0 20px;
        display: flex;
        justify-content: end;
        align-items: end;
    }

    .fj-banner-label {
        margin-bottom: 10px;
    }

    .fj-banner-title {
        margin-bottom: 5px;
    }

    .fj-banner-overlay {
        background: linear-gradient(180deg, rgba(32, 86, 148, 0.9) 0%, rgba(32, 86, 148, 0.75) 60%, rgba(32, 86, 148, 0.4) 100%);
    }

    .fj-banner-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
    }

    .fj-banner-content {
        max-width: 100%;
    }

    .fj-banner-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 5px;
    }

    .fj-banner-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .fj-banner-tooltip {
        display: none;
    }



    .fj-banner-tooltip {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 10px;
        align-self: flex-start;
        animation: fjBannerMobileFloat 4s ease-in-out infinite;
    }

    @keyframes fjBannerMobileFloat {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-6px);
        }

        100% {
            transform: translateY(0);
        }
    }
}

/* ==========================================================================
   Find Jobs - Job Board Listing Section
   ========================================================================== */
.fj-job-section {
    position: relative;
    padding: 60px 0;
    background-color: #F8F8F8;
    width: 100%;
    position: relative;
}

.fj-section-pattern {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.fj-job-header {
    margin-bottom: 30px;
}

.fj-job-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.fj-job-breadcrumb-text {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0A57A4;
    text-transform: capitalize;
}

.fj-job-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

/* Filter Bar */
.fj-job-filter {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 16px 16px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 1px 2px #0000000D;
    margin: 40px 0px 30px;
}

.fj-job-filter-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.fj-job-filter-item-lbl {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
    margin-right: 4px;
}

.fj-job-filter-group {
    position: relative;
}

.fj-job-select {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    color: #1B1C1C;
    background: #fff;
    border: 1px solid #C1C6D7;
    border-radius: 8px;
    padding: 8.5px 36px 8.5px 16px;
    cursor: pointer;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../images/find-jobs/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    outline: none;
    transition: all 0.2s ease;
    min-width: 222px;
}



.fj-job-filter-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fj-job-reset-btn {
    background: transparent;
    border: 1px solid #fff;
    border: none;
    color: #5E5E5E;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    padding: 6px 24px;
    border-radius: 3px;
    transition: color 0.2s ease;
}

.fj-job-reset-btn:hover {
    color: #5E5E5E;
    border: 1px solid #C1C6D7;
}

.fj-job-apply-btn {
    background: #0D5DB8;
    color: #FFFFFF;
    border: none;
    border-radius: 3px;
    padding: 8px 24px;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.fj-job-apply-btn:hover {
    background: #064380;
}

/* Job Cards Container */
.fj-job-cards-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.fj-job-card {
    background: #FFFFFF;
    border: 1px solid #dedede6b;
    padding: 52px 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.fj-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(8, 85, 162, 0.08);
}

.fj-job-logo {
    width: 64px;
    height: 64px;
    background: #F9F9FF;
    border: 1px solid #C2C6D44D;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
}

.fj-job-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.fj-job-title {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #151C27;
    margin: 0;
}

.fj-job-company {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #00468F;
    display: inline-block;
    margin-bottom: 4px;
}

.fj-job-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.fj-job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    color: #424752;
    font-weight: 400;
}

.fj-job-meta-icon {
    color: #94A3B8;
}

.fj-job-desc {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #424752;
    line-height: 1.6;
    margin: 8px 0 20px 0;
    max-width: 720px;
}

.fj-job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.fj-job-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fj-job-tag-pill {
    background: #F1F5F9;
    color: #475569;
    font-family: 'Geist', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid #E2E8F0;
}

.fj-job-buttons {
    display: flex;
    align-items: center;
    gap: 12.5px;
}

.fj-job-btn-outline {
    border: 0.5px solid #0d5db861;
    color: #0855A2;
    background: transparent;
    border-radius: 3px;
    padding: 8px 20px;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fj-job-btn-outline:hover {
    background: rgba(8, 85, 162, 0.05);
}

.fj-job-btn-filled {
    background: #0D5DB8;
    color: #FFFFFF;
    border: none;
    border-radius: 3px;
    padding: 8px 24px;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fj-job-btn-filled:hover {
    background: #064380;
}

.fj-job-salary-badge {
    background: #D2E4FF;
    color: #314865;
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 2px;
    white-space: nowrap;
    z-index: 2;
}

.fj-job-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 68%;
    height: 52px;
    background: linear-gradient(135deg, #0855a238 0%, #A5C5DC00 80%, #A5C5DC00 100%);
    clip-path: polygon(0% -3%, 0% 100%, 100% 100%);
    pointer-events: none;
    z-index: 1;
}

/* Load More Container */
.fj-job-load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.fj-job-load-more-btn {
    background: transparent;
    border: 0.5px solid #0d5db861;
    color: #0D5DB8;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 24px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fj-job-load-more-btn:hover {
    background: #0D5DB8;
    border-color: #0D5DB8;
    color: #fff;
}

/* Modal Styling */
.fj-job-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 60px 40px;
    overflow-y: auto;
}

.fj-job-modal-overlay.active {
    opacity: 1;
}

.fj-job-modal {
    background: #FFFFFF;
    border-radius: 9px;
    max-width: 77%;
    width: 100%;
    position: relative;
    padding: 60px 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    overflow: hidden;
    margin-bottom: 60px;
}

.fj-job-modal-overlay.active .fj-job-modal {
    transform: scale(1);
}

.fj-job-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: #ED1C24;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 100;
}

.fj-job-close:hover {
    background: #dc2626;
}

.fj-job-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 24px;
    margin-bottom: 28px;
    gap: 20px;
}

.fj-job-modal-header-left {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.fj-job-modal-logo-container {
    width: 64px;
    height: 64px;
    background: #C2C6D44D;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.fj-job-modal-title-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fj-job-modal-title {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #151C27;
    margin: 0;
}

.fj-job-modal-company {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #00468F;
}

.fj-job-salary {
    background: #D2E4FF;
    color: #314865;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 2px;
    white-space: nowrap;
}

.fj-job-modal-body {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.fj-job-modal-body-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 2;
}

.fj-job-modal-body-right {
    width: 335px;
    flex-shrink: 0;
    z-index: 2;
}

.fj-job-detail-section h4 {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0B1C30;
    margin: 0 0 16px 0;
}

.fj-job-detail-p {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    color: #434655;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.fj-job-responsibilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fj-job-responsibilities-list li {
    font-family: 'Geist', sans-serif;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.5;
    position: relative;
    padding-left: 26px;
}

.fj-job-responsibilities-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-color: rgba(37, 123, 210, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230855A2' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}

/* Summary Card on Right */
.fj-job-summary-card {
    background: #F4F9FF;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fj-job-summary-title {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.fj-job-summary-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fj-job-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0px;
}

.fj-job-summary-item:not(:last-child) {
    border-bottom: 1px solid #E2E2E2;
}

.fj-job-summary-label {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    color: #7E7E7E;
    font-weight: 500;
}

.fj-job-summary-value {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.fj-job-summary-apply-btn {
    background: #0D5DB8;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    width: 100%;
    gap: 10px;
}

.fj-job-summary-apply-btn:hover {
    background: #064380;
}




/* Responsive Overrides */
@media (max-width: 1300px) {
    .fj-job-select {

        min-width: auto;
    }

    .fj-job-modal {
        padding: 40px 40px;
    }
}

@media (max-width: 1200px) {

    .fj-job-modal-body {

        flex-direction: column;
    }

    .fj-job-modal-body-right {
        width: 100%;
    }

    .fj-section-pattern {
        display: none;
    }
}

/* Responsiveness for Job Listing & Modal */
@media (max-width: 991.98px) {
    .fj-job-filter {
        border-radius: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px 24px;
    }

    .fj-job-filter-left {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .fj-job-filter-item-lbl {
        margin-bottom: 2px;
    }

    .fj-job-select {
        width: 100%;
    }


    .fj-job-modal-body {
        flex-direction: column;
        gap: 30px;
    }

    .fj-job-modal-body-right {
        width: 100%;
    }

    .fj-job-modal-overlay {
        padding: 40px 20px;
    }

    .fj-job-modal {
        padding: 30px;
        max-width: 90%;
    }

}

@media (max-width: 767.98px) {
    .fj-job-heading {
        font-size: 30px;
    }

    .fj-job-card {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .fj-job-salary-badge {
        align-self: flex-start;
        margin-top: 4px;
    }

    .fj-job-card-footer {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .fj-job-buttons {
        width: 100%;
        flex-direction: column;
    }

    .fj-job-btn-outline,
    .fj-job-btn-filled {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .fj-job-modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .fj-job-salary {
        align-self: flex-start;
    }

    .fj-job-modal-overlay {
        padding: 20px 10px;
    }

    .fj-job-modal {
        padding: 48px 16px 24px 16px;
        max-width: 95%;
    }

    .fj-job-close {
        width: 36px;
        height: 36px;
    }

    .fj-job-modal-overlay {
        padding: 20px 10px;
    }

    .fj-job-section {
        padding: 40px 0;
    }

    .fj-job-load-more-container {
        margin-top: 40px;
    }
}

.fj-job-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

@media (max-width: 767.98px) {
    .fj-job-title-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .btn-submit-application {

        padding: 10px 30px;
    }

    .fj-tooltip-left {
        bottom: -30%;
    }
}

@media (max-width:620px) {
    .fj-job-modal-header-left {
        gap: 10px;
        flex-direction: column;
    }

    .fj-job-detail-section h4 {
        font-size: 18px;
    }

    .fj-job-modal {
        max-width: 95%;
        padding: 48px 16px 24px 16px;
    }

    .fj-apply-form {
        padding: 5px;
        gap: 15px;
    }


}

.fj-job-modal .fj-job-wave {
    width: 48% !important;
}

.fj-job-modal::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    height: 159px;
    background: linear-gradient(225deg, #0855a238 0%, #A5C5DC00 80%, #A5C5DC00 100%);
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   Find Jobs - New Application Form Styling
   ========================================================================== */
.fj-apply-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fj-apply-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

.fj-apply-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.fj-apply-group.full-width {
    flex: none;
    width: 100%;
}

.fj-apply-label {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
}

.fj-apply-input,
.fj-apply-select,
.fj-apply-textarea {
    font-family: 'Geist', sans-serif;
    font-size: 14.5px;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    padding: 12.5px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.fj-apply-input::placeholder,
.fj-apply-textarea::placeholder {
    color: #94a3b8;
}

.fj-apply-input:focus,
.fj-apply-select:focus,
.fj-apply-textarea:focus {
    border-color: #0855A2;
    box-shadow: 0 0 0 3px rgba(8, 85, 162, 0.15);
}

.fj-apply-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
}

.fj-apply-upload {
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.fj-apply-upload:hover,
.fj-apply-upload.dragover {
    border-color: #0855A2;
    background-color: #f8fafc;
}


.fj-apply-upload-text {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #424752;
}

.fj-apply-submit {
    background: #0855A2;
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

.fj-apply-submit:hover {
    background: #064380;
}

.fj-apply-submit:active {
    transform: scale(0.98);
}

.bg-white {
    background-color: #fff !important;
}


@media (max-width: 767.98px) {
    .fj-apply-row {
        flex-direction: column;
        gap: 16px;
    }

    .fj-apply-form {
        gap: 16px;
    }

    .fj-apply-submit {
        width: 100%;
        align-self: stretch;
    }
}

/* ==========================================================================
   Employees Page - Eligibility & Qualification Path Styles
   ========================================================================== */
.emp-eligibility-section {
    padding: 85px 0 0 0;
    margin-bottom: 100px;
}

.emp-eligibility-container {
    background: #E8EFF6B2;
    border-radius: 11px;
    padding: 70px 65px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(8, 85, 162, 0.03);
}

.emp-eligibility-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.emp-eligibility-title {
    font-family: 'Geist', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #004283;
}

.emp-eligibility-text {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    color: #424751;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    max-width: 80%;
}

.emp-eligibility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    flex: 1.2;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.emp-eligibility-tag {
    background: #FFFFFF;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1.5px solid #E2E8F0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: default;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.emp-eligibility-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border-color: #0855A2;
}

.emp-eligibility-check {
    color: #0855A2;
    font-weight: 700;
}

.emp-eligibility-wave {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    height: 52px;
    background: linear-gradient(225deg, #0855a22d 0%, #A5C5DC00 80%, #A5C5DC00 100%);
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    pointer-events: none;
    z-index: 1;
}

/* Section 2: Qualification Path styles */
.emp-path-section {
    padding: 0 0 100px 0;
}

.emp-path-header {
    margin-bottom: 40px;
}

.emp-path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.emp-path-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1.5px solid #C2C6D34D;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    padding: 32px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.emp-path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(8, 85, 162, 0.15);
}

.emp-path-icon-container {
    width: 64px;
    height: 64px;
    background: #D6E3FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.emp-path-svg {
    width: 24px;
    height: 24px;
}

.emp-path-title {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #141B2C;
    margin: 0 0 16px 0;
}

.emp-path-desc {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1D1D1D;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.emp-path-card-wave {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 68%;
    height: 52px;
    background: linear-gradient(225deg, #0855a21a 0%, #A5C5DC00 80%, #A5C5DC00 100%);
    pointer-events: none;
    z-index: 1;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
}

/* Tablet Overrides */
@media (max-width: 991.98px) {
    .emp-path-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .emp-eligibility-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 45px 40px;
        gap: 32px;
    }

    .emp-eligibility-tags {
        justify-content: left;
        width: 100%;
    }
}

/* Mobile Overrides */
@media (max-width: 767.98px) {
    .emp-path-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .emp-eligibility-container {
        padding: 40px 24px;
    }

    .emp-eligibility-title {
        font-size: 26px;
    }

    .emp-eligibility-text {
        font-size: 14.5px;
        max-width: 100%;
    }

    .emp-path-section {
        padding: 0 0 60px 0;
    }

    .emp-eligibility-container {
        padding: 40px 40px;
    }
}

/* ==========================================================================
   Employees Page - Expert Guidance Styles
   ========================================================================== */
.emp-guidance-section {
    padding: 0px 0px 100px;
    background: #F8F8F8;
}

.emp-guidance-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    padding: 52px 0px;
}

.emp-guidance-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.emp-guidance-title {
    font-family: 'Geist', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #000;
    line-height: 1.25;
    margin: 16px 0 20px 0;
    width: 65%;
}

.emp-guidance-desc {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    color: #424751;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.emp-guidance-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.emp-guidance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #141B2C;
}

.emp-guidance-icon {
    width: 24px;
    height: 24px;
    background: #D6E3FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emp-guidance-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emp-guidance-image:hover {
    transform: scale(1.015);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.emp-guidance-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

/* Tablet Overrides */
@media (max-width: 991.98px) {
    .emp-guidance-container {
        gap: 40px;
    }

    .emp-guidance-title {
        font-size: 30px;
    }
}

/* Mobile Overrides */
@media (max-width: 767.98px) {
    .emp-guidance-container {
        flex-direction: column;
        gap: 40px;
    }

    .emp-guidance-title {
        font-size: 26px;
    }

    .emp-guidance-image {
        width: 100%;
    }
}

/* ==========================================================================
   Employees Page - Application Form Styles
   ========================================================================== */
.emp-form-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.emp-form-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

.emp-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.emp-form-group.full-width {
    flex: none;
    width: 100%;
}

.emp-form-label {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #151C27;
    margin: 0;
}

.emp-form-input,
.emp-form-select,
.emp-form-textarea {
    font-family: 'Geist', sans-serif;
    font-size: 14.5px;
    color: #0F172A;
    background: #ffffff;
    border: 1.5px solid #CBD5E1;
    border-radius: 8px;
    padding: 12.5px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.emp-form-input::placeholder,
.emp-form-textarea::placeholder {
    color: #94A3B8;
}

.emp-form-input:focus,
.emp-form-select:focus,
.emp-form-textarea:focus {
    border-color: #0855A2;
    box-shadow: 0 0 0 3px rgba(8, 85, 162, 0.15);
}

.emp-form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
}

/* Date Input Custom Styling */
.emp-form-date-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.emp-form-date {
    padding-right: 48px;
    cursor: pointer;
}

/* Overlay browser calendar icon but keep it clickable to trigger native popup */
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.emp-form-calendar {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* File Upload drag and drop box */
.emp-form-upload {
    background: #ffffff;
    border: 2px dashed #CBD5E1;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emp-form-upload:hover,
.emp-form-upload.dragover {
    border-color: #0855A2;
    background-color: #f8fafc;
}


.emp-form-upload-text {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #424752;
}

/* Consent checkboxes styling */
.emp-form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-top: 22px;
}

.emp-form-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.emp-form-checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid #CBD5E1;
    border-radius: 4px;
    cursor: pointer;
    accent-color: #0855A2;
    margin-top: 3px;
    flex-shrink: 0;
}

.emp-form-checkbox-label {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    color: #424751;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.emp-form-note {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    color: #424751;
    margin: 4px 0 12px 0;
    line-height: 1.5;
}

.emp-form-submit-row {
    display: flex;
    width: 100%;
}

.emp-form-submit {
    background: #0855A2;
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

.emp-form-submit:hover {
    background: #064380;
}

.emp-form-submit:active {
    transform: scale(0.98);
}
.terms-page-section a{
    word-break: break-word;
}