/* ==========================================================================
   PasYon — Hero Section & Home Page CSS
   Exact Visual Replication of UAE Manpower Solutions Reference
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO SECTION (Core layout matching screenshot)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 580px;
    padding-top: 150px; /* Offset for header + announcement bar */
    padding-bottom: 75px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #08111D;
}

/* Slide Layers for Background */
.hero-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 6s linear;
    transform: scale(1.05);
}

.hero-slide-layer.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

/* Subtle ambient gradient lighting effect */
.hero-ambient-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 98, 225, 0.12) 0%, rgba(11, 23, 39, 0) 70%);
    z-index: 3;
    pointer-events: none;
    filter: blur(40px);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text-wrapper {
    max-width: 780px;
}

/* Top Orange Pill Badge */
.hero-badge-wrapper {
    margin-bottom: 16px;
}

.hero-pill-badge {
    display: inline-block;
    background: var(--color-primary-orange, #0062E1);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 14px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 98, 225, 0.35);
    line-height: 1.3;
}

/* Two-Tone Bold Headline */
.hero-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.hero-headline .line-white {
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-headline .line-orange {
    color: #0062E1;
    margin-top: 2px;
}

/* Descriptive Paragraph */
.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
    color: #D1DEED;
    max-width: 680px;
    margin-bottom: 28px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    text-align: justify;
}

/* Action Buttons Grid */
.hero-action-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}

/* Primary Solid Orange Button */
.btn-primary-orange {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0062E1;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 34px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #0062E1;
}

.btn-primary-orange .btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-primary-orange:hover {
    background: #1A75FF;
    border-color: #1A75FF;
    box-shadow: 0 12px 32px rgba(0, 98, 225, 0.55);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn-primary-orange:hover .btn-arrow {
    transform: translateX(5px);
}

/* Secondary Frosted Glass Outline Button */
.btn-outline-glass {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    padding: 16px 30px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-glass .btn-chevron {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #FFFFFF;
    transform: translateY(-2px);
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-outline-glass:hover .btn-chevron {
    transform: translateX(4px);
}

/* Trust Bar / MoHRE Compliance at bottom of Hero */
.hero-trust-bar {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 18px 28px;
    background: rgba(11, 23, 39, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 98, 225, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0062E1;
    font-size: 18px;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.2;
}

.trust-text span {
    font-size: 12px;
    color: #A2B3C7;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------------------
   INDUSTRY SECTORS TICKER STRIP (Immediate under Hero)
   -------------------------------------------------------------------------- */
.sectors-ticker-strip {
    background-color: #1A375C;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.ticker-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerScroll 38s linear infinite;
    will-change: transform;
}

.sectors-ticker-strip:hover .ticker-content {
    animation-play-state: paused;
}

.ticker-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    transition: color 0.25s ease;
    cursor: pointer;
}

.ticker-item:hover {
    color: #0062E1;
}

.ticker-bullet {
    color: #0062E1;
    font-size: 11px;
    margin: 0 32px;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
    text-shadow: 0 0 8px rgba(0, 98, 225, 0.6);
}

@keyframes tickerScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .sectors-ticker-strip {
        padding: 11px 0;
    }
    .ticker-item {
        font-size: 12px;
        letter-spacing: 0.8px;
    }
    .ticker-bullet {
        font-size: 9px;
        margin: 0 16px;
    }
}

@media (max-width: 480px) {
    .sectors-ticker-strip {
        padding: 9px 0;
    }
    .ticker-item {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    .ticker-bullet {
        font-size: 8px;
        margin: 0 12px;
    }
}



/* --------------------------------------------------------------------------
   KEY PERFORMANCE METRICS SECTION
   -------------------------------------------------------------------------- */
.metrics-section {
    padding: 70px 0;
    background: #0B1625;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 98, 225, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.metric-icon {
    font-size: 32px;
    color: #0062E1;
    margin-bottom: 22px;
}

.metric-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 8px;
}

.metric-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #E2ECF6;
    margin-bottom: 8px;
}

.metric-desc {
    font-size: 14px;
    color: #93A6BA;
    line-height: 1.5;
}

/* Urgent Requirement Accent Card */
.metric-card.accent-card {
    background: linear-gradient(135deg, #0062E1 0%, #004AB3 100%);
    border: none;
    color: #FFFFFF;
    box-shadow: 0 15px 35px rgba(0, 98, 225, 0.3);
}

.accent-card .metric-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.25);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.accent-card .urgent-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.accent-card .urgent-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 24px;
}

.accent-card .urgent-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0B1727;
    background: #FFFFFF;
    padding: 10px 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    transition: all 0.25s ease;
}

.accent-card .urgent-link:hover {
    background: #0B1727;
    color: #FFFFFF;
    transform: translateX(4px);
}


/* --------------------------------------------------------------------------
   INDUSTRIES WE SERVE SECTION (Exact photo replica)
   -------------------------------------------------------------------------- */
.industries-section {
    padding: 50px 0 50px;
    background-color: #F8FAFC;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #0062E1;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #1E293B;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 54px;
}

.industry-card {
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -5px rgba(15, 23, 42, 0.1), 0 10px 20px -5px rgba(15, 23, 42, 0.04);
    border-color: #E2E8F0;
}

.industry-icon {
    width: 48px;
    height: 48px;
    background: #F1F5F9;
    color: #334155;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: #0062E1;
    color: #FFFFFF;
    transform: scale(1.05);
}

.industry-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.3;
}

.industry-roles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.industry-roles li {
    font-size: 15px;
    color: #64748B;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet-orange {
    color: #0062E1;
    font-size: 12px;
    line-height: 1;
}

.industries-footer {
    text-align: center;
}

.view-all-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.view-all-link:hover {
    color: #0062E1;
    gap: 12px;
}


/* --------------------------------------------------------------------------
   WHY PASYON RESOURCES (Our Track Record)
   -------------------------------------------------------------------------- */
.why-pasyon-section {
    padding: 50px 0;
    background-color: #0A1727;
    color: #FFFFFF;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 75px;
}

.why-subheading {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #0062E1;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.why-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.why-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #A4B6C9;
    line-height: 1.6;
}

/* Stats Counter Row (Ultra-Attractive Premium Edition) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-box {
    background: linear-gradient(145deg, rgba(23, 47, 77, 0.65) 0%, rgba(13, 27, 46, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 38px 20px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(5, 12, 22, 0.45);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.stat-watermark {
    position: absolute;
    right: -12px;
    bottom: -12px;
    font-size: 88px;
    color: rgba(0, 98, 225, 0.04);
    transform: rotate(-12deg);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.stat-box:hover .stat-watermark {
    color: rgba(0, 98, 225, 0.12);
    transform: rotate(0deg) scale(1.1);
}

.stat-icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 98, 225, 0.18) 0%, rgba(0, 98, 225, 0.05) 100%);
    border: 1px solid rgba(0, 98, 225, 0.3);
    color: #0062E1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.35s ease;
    z-index: 2;
}

.stat-box:hover .stat-icon-badge {
    background: linear-gradient(135deg, #0062E1 0%, #004AB3 100%);
    color: #FFFFFF;
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 8px 20px rgba(0, 98, 225, 0.35);
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #0062E1;
    background: linear-gradient(145deg, rgba(27, 54, 88, 0.85) 0%, rgba(16, 33, 56, 0.95) 100%);
    box-shadow: 0 25px 50px -10px rgba(0, 98, 225, 0.2), 0 15px 35px rgba(5, 12, 22, 0.6);
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 54px;
    font-weight: 900;
    background: linear-gradient(135deg, #E8F2FF 0%, #4090FF 40%, #0062E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1.5px;
    filter: drop-shadow(0 4px 12px rgba(0, 98, 225, 0.35));
    position: relative;
    z-index: 2;
}

.stat-plus {
    color: #0062E1;
    -webkit-text-fill-color: #0062E1;
}

.stat-number .stat-unit {
    font-size: 34px;
    font-weight: 800;
    margin-left: 2px;
    letter-spacing: -0.5px;
    color: #4090FF;
    -webkit-text-fill-color: #4090FF;
}

.stat-divider {
    width: 32px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin: 6px 0 16px;
    transition: all 0.35s ease;
    z-index: 2;
}

.stat-box:hover .stat-divider {
    width: 60px;
    background-color: #0062E1;
    box-shadow: 0 0 10px rgba(0, 98, 225, 0.6);
}

.stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #CCD7E4;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    position: relative;
    z-index: 2;
    margin: 0;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-label {
    color: #FFFFFF;
}

/* Horizontal Divider */
.why-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 70px 0;
    width: 100%;
}

/* 3 Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.pillar-card {
    background-color: #172F4D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pillar-card:hover {
    transform: translateY(-8px);
    background-color: #1B3658;
    border-color: #0062E1;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

.pillar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0062E1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.pillar-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #C1CEE0;
    line-height: 1.65;
    margin: 0;
    text-align: justify;
}


/* --------------------------------------------------------------------------
   HOW IT WORKS (Ultra-Attractive Premium Edition)
   -------------------------------------------------------------------------- */
.process-section {
    padding: 50px 0 0;
    background: radial-gradient(circle at 50% 15%, rgba(248, 250, 252, 0.9) 0%, #FFFFFF 80%);
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    margin-bottom: 90px;
    text-align: center;
}

/* Vibrant Gradient Wire behind circles */
.process-wire {
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, #CBD5E1 0%, #0062E1 50%, #CBD5E1 100%);
    z-index: 1;
    opacity: 0.6;
    border-radius: 4px;
}

.process-step-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.step-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #FFFFFF;
    box-shadow: 0 12px 28px -4px rgba(15, 23, 42, 0.22);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover .step-circle {
    background: linear-gradient(135deg, #0062E1 0%, #004AB3 100%);
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 20px 40px -6px rgba(0, 98, 225, 0.5);
}

.step-body {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 25px -6px rgba(15, 23, 42, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover .step-body {
    transform: translateY(-8px);
    border-color: #BFDCFF;
    box-shadow: 0 22px 45px -8px rgba(15, 23, 42, 0.1), 0 10px 20px -5px rgba(0, 98, 225, 0.08);
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #0062E1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: rgba(0, 98, 225, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
}

.step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 14px;
    line-height: 1.3;
}

.step-accent-line {
    width: 30px;
    height: 3px;
    background-color: #E2E8F0;
    border-radius: 4px;
    margin: 0 auto 16px;
    transition: all 0.35s ease;
}

.process-step-card:hover .step-accent-line {
    width: 65px;
    background-color: #0062E1;
}

.step-desc {
    font-size: 14.5px;
    color: #64748B;
    line-height: 1.65;
    margin: 0;
    text-align: justify;
}

/* Trusted Corporate Partners Bar (Premium Edition) */
.trusted-companies-bar {
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    border-top: 1px solid #E2E8F0;
    padding: 75px 0;
}

.trusted-heading {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 40px;
}

.trusted-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    align-items: center;
    width: 100%;
}

.trusted-pill {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 14px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    box-shadow: 0 4px 15px -3px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    cursor: default;
}

.pill-icon {
    font-size: 18px;
    color: #0062E1;
    transition: transform 0.3s ease;
}

.trusted-pill:hover {
    border-color: #0062E1;
    color: #0F172A;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 14px 30px -6px rgba(0, 98, 225, 0.18), 0 8px 15px -5px rgba(15, 23, 42, 0.06);
}

.trusted-pill:hover .pill-icon {
    transform: scale(1.2) rotate(-8deg);
}


/* --------------------------------------------------------------------------
   HIRING REQUEST FORM SECTION
   -------------------------------------------------------------------------- */
.hiring-request-section {
    padding: 50px 0;
    background-color: #0A1523;
}

.form-banner-card {
    background: linear-gradient(135deg, #11223A 0%, #0D192C 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-banner-left .sub-pill {
    display: inline-block;
    background: rgba(0, 98, 225, 0.15);
    color: #0062E1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.form-banner-left h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
}

.form-banner-left p {
    font-size: 17px;
    color: #B9CCDF;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: justify;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 24px;
    border-radius: 12px;
}

.highlight-box i {
    font-size: 28px;
    color: #0062E1;
}

.highlight-box div span {
    display: block;
    font-size: 13px;
    color: #92A6BC;
    margin-bottom: 4px;
}

.highlight-box div strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
}

/* Form Styles */
.talent-request-form {
    background: rgba(8, 16, 28, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 40px;
    border-radius: 16px;
}

.talent-request-form h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.input-row .input-group {
    margin-bottom: 0;
}

.input-group label {
    font-size: 13px;
    font-weight: 600;
    color: #D1E2F5;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 14px 16px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.input-group select option {
    background: #0D1A2D;
    color: #FFFFFF;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #0062E1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 12px rgba(0, 98, 225, 0.3);
}

.form-submit-btn {
    width: 100%;
    background: #0062E1;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 98, 225, 0.4);
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #1A75FF;
    box-shadow: 0 12px 30px rgba(0, 98, 225, 0.55);
    transform: translateY(-2px);
}

.form-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: #8CA0B4;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* --------------------------------------------------------------------------
   RESPONSIVE QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-headline {
        font-size: 54px;
    }
    .hero-description {
        font-size: 19px;
    }
    .form-banner-card {
        grid-template-columns: 1fr !important;
        padding: 40px;
        gap: 40px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .form-banner-left,
    .form-banner-right {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .talent-request-form {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .input-group input,
    .input-group select,
    .input-group textarea {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 380px;
        padding-top: 122px;
        padding-bottom: 40px;
    }
    .hero-badge-wrapper {
        margin-bottom: 8px;
    }
    .hero-pill-badge {
        font-size: 11px;
        padding: 4px 10px;
        letter-spacing: 0.8px;
    }
    .hero-headline {
        font-size: 34px;
        letter-spacing: -1px;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    .hero-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 16px;
        text-align: justify;
    }
    .hero-trust-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .trust-divider {
        display: none;
    }
    .hero-side-slider-control {
        display: none;
    }
    .input-row {
        grid-template-columns: 1fr;
    }
    .metrics-grid,
    .industries-grid,
    .pillars-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .trusted-companies-bar {
        padding: 50px 0;
    }
    .trusted-heading {
        font-size: 12px;
        letter-spacing: 1.8px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .trusted-logos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 10px !important;
    }
    .trusted-pill {
        padding: 10px 10px !important;
        font-size: 11.5px !important;
        gap: 6px !important;
        white-space: nowrap !important;
        justify-content: center;
    }
    .pill-icon {
        font-size: 14px !important;
        flex-shrink: 0;
    }
    .process-wire {
        display: none;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 16px;
    }
    .stat-box {
        padding: 28px 16px 24px;
    }
    .stat-number {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .stat-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .why-divider {
        margin: 45px 0;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }
    
    /* Responsive Section Header (Left Aligned for Mobile & Tablets) */
    .section-header {
        text-align: left;
        margin-bottom: 35px;
        max-width: 100%;
    }
    .section-badge {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }
    .section-title {
        font-size: 32px;
        letter-spacing: -0.5px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .section-subtitle {
        font-size: 15px;
        line-height: 1.5;
        margin: 0;
        text-align: justify;
    }
    
    /* Responsive Industry Cards for Tablets & Small Screens */
    .industries-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    .industry-card {
        padding: 24px 22px;
        border-radius: 14px;
    }
    .industry-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin-bottom: 16px;
        border-radius: 10px;
    }
    .industry-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }
    .industry-roles {
        gap: 8px;
    }
    .industry-roles li {
        font-size: 14px;
        gap: 8px;
    }
    
    /* Responsive Why PasYon Header (Left Aligned for Mobile & Tablets) */
    .why-header {
        text-align: left;
        margin-bottom: 35px;
        max-width: 100%;
    }
    .why-subheading {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }
    .why-title {
        font-size: 32px;
        letter-spacing: -0.5px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .why-subtitle {
        font-size: 15px;
        line-height: 1.5;
        margin: 0;
        text-align: justify;
    }
    
    /* Responsive Pillars Grid & Cards for Tablets */
    .pillars-grid {
        gap: 18px;
    }
    .pillar-card {
        padding: 24px 22px;
        border-radius: 12px;
    }
    .pillar-title {
        font-size: 13px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }
    .pillar-text {
        font-size: 15px;
        line-height: 1.55;
        text-align: justify;
    }
    
    /* Responsive Process Step Cards for Tablets */
    .process-grid {
        gap: 36px;
        margin-bottom: 50px;
    }
    .step-circle-wrapper {
        margin-bottom: 18px;
    }
    .step-circle {
        width: 72px;
        height: 72px;
        font-size: 22px;
        border-width: 6px;
    }
    .step-body {
        padding: 26px 20px;
        border-radius: 16px;
    }
    .step-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }
    .step-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .step-desc {
        font-size: 14px;
        line-height: 1.55;
        text-align: justify;
    }
    
    /* Responsive Hiring Request Form Banner & 0 Left/Right Spacing for Tablets */
    .hiring-request-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    .hiring-request-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    .form-banner-card {
        padding: 30px 20px !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .form-banner-left,
    .form-banner-right,
    .talent-request-form {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .form-banner-left .sub-pill {
        font-size: 10.5px;
        padding: 5px 10px;
        letter-spacing: 1.2px;
        margin-bottom: 14px;
    }
    .form-banner-left h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
        margin-bottom: 14px;
        letter-spacing: -0.5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .form-banner-left p {
        font-size: 14px !important;
        line-height: 1.55;
        margin-bottom: 24px;
        text-align: justify;
    }
    .contact-highlights {
        gap: 16px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .highlight-box {
        padding: 14px 16px;
        gap: 14px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .highlight-box i {
        font-size: 22px;
        flex-shrink: 0;
    }
    .highlight-box div span {
        font-size: 12px;
    }
    .highlight-box div strong {
        font-size: 15px !important;
        word-wrap: break-word;
        word-break: break-all;
    }
    .talent-request-form {
        padding: 24px 16px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .form-banner-right {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .input-group,
    .input-group input,
    .input-group select,
    .input-group textarea,
    .input-row {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .talent-request-form h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    /* Responsive Footer & Compact Styling for Tablets */
    .site-footer {
        padding: 55px 0 0 !important;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px 24px !important;
        margin-bottom: 45px !important;
    }
    .footer-col .brand-logo .footer-logo-img {
        max-height: 34px !important;
        width: auto !important;
    }
    .footer-col h4 {
        font-size: 13px !important;
        margin-bottom: 16px !important;
    }
    .footer-col p {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
        margin-bottom: 18px !important;
        text-align: justify;
    }
    .footer-col ul,
    .contact-list {
        gap: 10px !important;
        font-size: 13.5px !important;
    }
    .footer-bottom {
        padding: 20px 0 !important;
        font-size: 13px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 12px !important;
    }
    .footer-bottom div {
        text-align: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 340px;
        padding-top: 112px;
        padding-bottom: 30px;
    }
    .hero-badge-wrapper {
        margin-bottom: 7px;
    }
    .hero-pill-badge {
        font-size: 10px;
        padding: 4px 9px;
        letter-spacing: 0.6px;
        border-radius: 4px;
    }
    .hero-headline {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.15;
        margin-bottom: 9px;
    }
    .hero-description {
        font-size: 14.50px;
        line-height: 1.5;
        margin-bottom: 15px;
        text-align: justify;
    }
    .hero-action-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .btn-primary-orange,
    .btn-outline-glass {
        justify-content: center;
        padding: 11px 18px;
        font-size: 13.5px;
    }
    
    /* Compact Responsive Hiring Request Form Banner (0 Left & Right Spacing) for Mobile Phones */
    .hiring-request-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    .hiring-request-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    .form-banner-card {
        padding: 22px 14px !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        gap: 22px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .form-banner-left,
    .form-banner-right {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
    .talent-request-form {
        padding: 16px 12px !important;
        border-radius: 12px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .input-row {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin-bottom: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .input-group {
        gap: 4px !important;
        margin-bottom: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .input-row .input-group {
        margin-bottom: 0 !important;
    }
    .input-group label {
        font-size: 12px !important;
        margin-bottom: 0 !important;
    }
    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 9px 12px !important;
        font-size: 13px !important;
        border-radius: 6px !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .form-submit-btn {
        margin-top: 8px !important;
        padding: 11px !important;
        font-size: 13.5px !important;
    }
    .form-banner-left .sub-pill {
        font-size: 9.5px !important;
        padding: 4px 9px;
        letter-spacing: 0.8px;
        margin-bottom: 12px;
        display: inline-block;
        white-space: normal;
    }
    .form-banner-left h2 {
        font-size: 20px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px;
        letter-spacing: -0.4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .form-banner-left p {
        font-size: 13px !important;
        line-height: 1.5;
        margin-bottom: 20px;
        text-align: justify;
    }
    .contact-highlights {
        gap: 12px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .highlight-box {
        padding: 12px 12px;
        gap: 10px;
        border-radius: 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .highlight-box i {
        font-size: 20px;
        flex-shrink: 0;
    }
    .highlight-box div span {
        font-size: 11px;
        margin-bottom: 2px;
    }
    .highlight-box div strong {
        font-size: 13px !important;
        line-height: 1.3;
        word-wrap: break-word;
        word-break: break-all;
    }
    .talent-request-form h3 {
        font-size: 17px;
        margin-bottom: 10px !important;
        padding-bottom: 8px !important;
    }
    
    /* Compact Responsive Section Header for Mobile Phones */
    .section-header {
        text-align: left;
        margin-bottom: 28px;
    }
    .section-badge {
        font-size: 10.5px;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }
    .section-title {
        font-size: 26px;
        letter-spacing: -0.4px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
        text-align: justify;
    }
    
    /* Compact Responsive Industry Cards for Mobile Phones */
    .industries-grid {
        gap: 14px;
        margin-bottom: 30px;
    }
    .industry-card {
        padding: 18px 18px;
        border-radius: 12px;
    }
    .industry-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        margin-bottom: 12px;
        border-radius: 8px;
    }
    .industry-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .industry-roles {
        gap: 6px;
    }
    .industry-roles li {
        font-size: 13.5px;
        gap: 6px;
    }
    
    /* Compact Responsive Why PasYon Header for Mobile Phones */
    .why-header {
        text-align: left;
        margin-bottom: 28px;
    }
    .why-subheading {
        font-size: 10.5px;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }
    .why-title {
        font-size: 26px;
        letter-spacing: -0.4px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .why-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
        text-align: justify;
    }
    
    /* Responsive 2-Cards-Per-Line Stats Counter for Mobile Phones */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .stat-box {
        padding: 20px 8px 18px !important;
        border-radius: 14px;
    }
    .stat-icon-badge {
        width: 34px;
        height: 34px;
        font-size: 15px;
        margin-bottom: 12px;
        border-radius: 8px;
    }
    .stat-number {
        font-size: 23px !important;
        letter-spacing: -0.5px;
        margin-bottom: 6px;
    }
    .stat-number .stat-unit {
        font-size: 17px;
    }
    .stat-divider {
        width: 20px;
        margin: 4px 0 10px;
    }
    .stat-label {
        font-size: 9.5px !important;
        letter-spacing: 0.4px;
        line-height: 1.3;
        word-break: break-word;
    }
    .stat-watermark {
        font-size: 52px;
    }
    
    /* Compact Responsive Pillars Cards for Mobile Phones */
    .pillars-grid {
        gap: 14px;
    }
    .pillar-card {
        padding: 18px 18px;
        border-radius: 12px;
    }
    .pillar-title {
        font-size: 12px;
        letter-spacing: 1.2px;
        margin-bottom: 10px;
    }
    .pillar-text {
        font-size: 13.5px;
        line-height: 1.5;
        text-align: justify;
    }
    
    /* Compact Responsive Process Step Cards for Mobile Phones */
    .process-grid {
        gap: 28px;
        margin-bottom: 40px;
    }
    .step-circle-wrapper {
        margin-bottom: 14px;
    }
    .step-circle {
        width: 58px;
        height: 58px;
        font-size: 18px;
        border-width: 5px;
        box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.2);
    }
    .step-body {
        padding: 20px 18px;
        border-radius: 14px;
    }
    .step-tag {
        font-size: 9.5px;
        letter-spacing: 1.2px;
        padding: 3px 10px;
        margin-bottom: 8px;
    }
    .step-title {
        font-size: 16.5px;
        margin-bottom: 10px;
    }
    .step-accent-line {
        margin: 0 auto 12px;
    }
    .step-desc {
        font-size: 13.5px;
        line-height: 1.5;
        text-align: justify;
    }
    
    /* Compact Responsive Trusted Partners Pills (2 Per Line) for Mobile Phones */
    .trusted-companies-bar {
        padding: 40px 0;
    }
    .trusted-heading {
        font-size: 11px !important;
        letter-spacing: 1.2px;
        line-height: 1.5;
        margin-bottom: 24px;
        padding: 0 5px;
    }
    .trusted-logos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px 6px !important;
    }
    .trusted-pill {
        padding: 8px 5px !important;
        font-size: 9.5px !important;
        gap: 4px !important;
        border-radius: 40px;
        white-space: nowrap !important;
        justify-content: center;
    }
    .pill-icon {
        font-size: 12px !important;
        flex-shrink: 0;
    }
    
    /* Compact Responsive Footer for Mobile Phones */
    .site-footer {
        padding: 38px 0 0 !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        margin-bottom: 30px !important;
    }
    .footer-col .brand-logo {
        margin-bottom: 14px !important;
    }
    .footer-col .brand-logo .footer-logo-img {
        max-height: 28px !important;
        width: auto !important;
    }
    .footer-col p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
        text-align: justify;
    }
    .social-links {
        gap: 8px !important;
    }
    .social-links a {
        width: 34px !important;
        height: 34px !important;
        font-size: 13.5px !important;
    }
    .footer-col h4 {
        font-size: 12px !important;
        letter-spacing: 1.2px !important;
        margin-bottom: 12px !important;
    }
    .footer-col ul {
        gap: 8px !important;
        font-size: 13px !important;
    }
    .contact-list {
        gap: 10px !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
    }
    .contact-list i {
        font-size: 14px !important;
    }
    .footer-bottom {
        padding: 16px 0 !important;
        font-size: 12px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    .footer-bottom div {
        text-align: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .footer-bottom div:nth-child(2) {
        gap: 24px !important;
        justify-content: center !important;
    }
}

