.custom-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition:
        background-color 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}
.custom-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 15px 56px;
}
.header-logo a {
    display: flex;
    align-items: center;
}
.header-logo a img {
    width: 110px;
    transition: filter 0.3s ease;
}
.header-transparent {
    background: #fff0;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.header-transparent .custom-desktop-nav > ul > li > a,
.header-transparent .custom-menu-toggle {
    color: var(--Neutrals-White, #fff);
}
.header-dark {
    background: var(--Neutrals-Dark-Navy, #0f172a);
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.header-dark .custom-desktop-nav > ul > li > a,
.header-dark .custom-menu-toggle {
    color: var(--Neutrals-White, #fff);
}
.header-light {
    background: var(--Neutrals-Off-White, #f1f5f9);
    border-bottom: 1px solid rgb(148 163 184 / 0.4);
}
.header-light .custom-desktop-nav > ul > li > a,
.header-light .custom-menu-toggle {
    color: var(--Neutrals-Dark-Navy, #0f172a);
}
.header-transparent.fixed-header,
.header-dark.fixed-header {
    background: var(--Neutrals-Dark-Navy, #0f172a);
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.5);
    border-bottom: none;
}
.header-light.fixed-header {
    background: var(--Neutrals-White, #fff);
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.08);
    border-bottom: none;
}
.custom-desktop-nav ul {
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}
.custom-desktop-nav ul li {
    position: relative;
}
.custom-desktop-nav ul li > a {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    text-decoration: none;
}

.fa-caret-down {
    font-size: 12px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}
.has-dropdown:hover > a .fa-caret-down {
    transform: rotate(180deg);
}
.dropdown-menu {
    border-radius: 16px;
    border: 8px solid var(--Neutrals-Off-White, #f1f5f9);
    background: var(--Neutrals-White, #fff);
    padding: 16px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 15px);
    min-width: 322px;
    display: flex;
    flex-direction: column !important;
    gap: 12px !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 12px !important;
    z-index: 10000;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.dropdown-menu.mega-menu-2col {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    min-width: 644px;
}
.dropdown-menu li {
    width: 100%;
}
.dropdown-menu li a {
    border-radius: 8px;
    background: var(--Neutrals-Off-White, #f1f5f9) !important;
    padding: 14px 20px 14px 16px !important;
    color: var(--Neutrals-Dark-Navy, #0f172a);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 100%;
    border-bottom: none !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
.dropdown-menu li a:hover,
.dropdown-menu li a.active-item {
    background-color: #0049cd !important;
    color: #ffffff !important;
}
.dropdown-menu li a img.dropdown-menu-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.dropdown-menu li a:hover img.dropdown-menu-icon,
.dropdown-menu li a.active-item img.dropdown-menu-icon {
    filter: brightness(100);
}
.dropdown-menu.dropdown-products {
    padding: 20px !important;
    border-radius: 16px;
    min-width: 620px;
    gap: 16px !important;
}
.dropdown-products li a {
    background-color: #f1f5f9 !important;
    padding: 20px 24px !important;
    border-radius: 12px !important;
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease !important;
}
.dropdown-products li a:hover {
    background-color: #e2e8f0 !important;
    color: #0f172a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.05);
}
.dropdown-products li a .product-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    display: block;
}
.dropdown-products li a i.product-link-icon {
    color: #0f172a !important;
    font-size: 16px;
    transform: rotate(45deg);
    transition:
        transform 0.2s ease,
        color 0.2s ease;
    width: auto;
}
.dropdown-products li a:hover i.product-link-icon {
    color: #0049cd !important;
    transform: rotate(45deg) translate(2px, -2px);
}
.apply-btn-desktop {
    border: 3px solid rgb(255 255 255 / 0.1);
    background: #0049cd;
    padding: 8px 24px;
    color: var(--Neutrals-White, #fff) !important;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.apply-btn-desktop:hover {
    background-color: #003699;
    color: #fff !important;
    outline: none;
}
.custom-menu-toggle,
.custom-mobile-nav {
    display: none;
}
@media only screen and (max-width: 1024px) {
    .custom-header-container {
        padding: 15px 16px;
    }
    .custom-desktop-nav,
    .apply-btn-desktop {
        display: none !important;
    }
    .custom-menu-toggle {
        display: block;
        background: transparent !important;
        padding: 0;
        border: none;
        color: inherit;
        font-size: 28px;
        cursor: pointer;
        z-index: 999999;
        position: relative;
        outline: none !important;
    }
    .custom-mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #0f172a;
        z-index: 9998;
        padding: 120px 24px 40px 24px;
        overflow-y: auto;
        display: none;
    }
    .custom-mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .custom-mobile-nav ul li a {
        color: #fff !important;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgb(255 255 255 / 0.1);
        padding-bottom: 12px;
    }
    .custom-mobile-nav ul li a img.dropdown-menu-icon {
        filter: brightness(100);
    }
    .mobile-dropdown-menu {
        display: none;
        padding-left: 20px !important;
        margin-top: 10px !important;
        border-left: 2px solid #0049cd;
        gap: 0 !important;
    }
    .mobile-dropdown-menu li a {
        border-bottom: 1px solid rgb(255 255 255 / 0.05) !important;
        font-size: 14px !important;
        color: #94a3b8 !important;
        padding: 12px 0;
        justify-content: flex-start !important;
        gap: 12px;
    }
    .mobile-dropdown-menu li:last-child a {
        border-bottom: none !important;
    }
    .rotate-icon {
        transform: rotate(180deg);
    }
    .mobile-apply-item {
        margin-top: 20px;
        border: none !important;
    }
    .apply-btn-mobile {
        background-color: #0049cd;
        color: #ffffff !important;
        text-align: center;
        padding: 15px;
        border-radius: 6px;
        border-bottom: none !important;
        display: block !important;
        justify-content: center !important;
    }
    body.no-scroll {
        overflow: hidden;
    }
}
.compliance-section {
    display: flex;
    align-items: stretch;
    background-color: #0f172a;
    background-size: 80px 80px;
    min-height: 90vh;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}
.compliance-section-2 {
    padding-top: 78px;
}
.compliance-content {
    flex: 1.6;
    padding-left: max(4%, calc((100vw - 1350px) / 2));
    padding-right: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
}
.compliance-content .title {
    margin: 0 0 20px 0;
    font-weight: 700;
    color: var(--Neutrals-Off-White, #f1f5f9);
    font-family: "Plus Jakarta Sans";
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -3.2px;
}
.compliance-content .description {
    margin: 0 0 40px 0;
    max-width: 600px;
    color: #94a3b8;
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}
.compliance-media {
    flex: 1;
    position: relative;
}
.compliance-media::before {
    content: '';
    position: absolute;
    display: block;
    width: 100px;
    height: 100px;
    left: -100px;
    top: -50px;
    background: #0e172a;
}
.bracket-image {
    position: absolute;
    left: -91px;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 3;
    pointer-events: none;
}
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.video-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #080d19 0%, rgb(26 86 219 / 63%) 40%, rgb(26 86 219 / 31%) 100%);
    pointer-events: none;
    z-index: 2;
}
.pfn-hero-actions {
    display: flex;
    align-items: center;
    gap: 35px;
}
.pfn-hero-btn-primary {
    border: 5px solid rgb(255 255 255 / 0.1);
    background: #0049cd;
    padding: 16px 42px;
    color: var(--Neutrals-White, #fff);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}
.pfn-hero-btn-primary:hover, .pfn-hero-btn-primary:focus {
    background: #003699 !important; 
    color: #fff !important;
    outline: none;
}
.pfn-hero-btn-secondary {
    color: var(--Neutrals-White, #fff);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    transition: color 0.3s ease;
}
.pfn-hero-btn-secondary:hover, .pfn-hero-btn-secondary:focus {
    color: #fff !important;
    outline: none;
}
@media (max-width: 1024px) {
    .compliance-content .title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .compliance-section {
        flex-direction: column;
        min-height: auto;
    }
    .compliance-content {
        padding: 80px 20px;
        text-align: center;
        align-items: center;
    }
    .compliance-media {
        min-height: 50vh;
        width: 100%;
    }
    .bracket-image {
        display: none;
    }
    .video-tint {
        background: rgb(26 86 219 / 0.3);
    }
}
.pfn-cta-section {
    background-color: #f4f7fa;
    padding: 0 0 80px;
}
.pfn-cta-container {
    max-width: 1328px;
    margin: 0 auto;
}
.pfn-cta-box {
    background: url(https://stg-web.programmersforce.com/wp-content/uploads/2026/07/cta-section-bg.svg) no-repeat center
        center;
    background-size: cover;
    border-radius: 24px;
    padding: 45px 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
}
.pfn-cta-content {
    flex: 1 1 auto;
    position: relative;
    z-index: 10;
}
.pfn-cta-title {
    color: var(--Neutrals-Off-White, #f1f5f9);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 20px 0;
}
.pfn-cta-highlight {
    color: #00dc6e;
}
.pfn-cta-subtitle {
    color: var(--Neutrals-Sky-Gray-2, #94a3b8);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 40px 0;
}
.pfn-cta-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pfn-cta-btn-primary {
    border: 4px solid rgb(255 255 255 / 0.1);
    background: #0049cd;
    padding: 14px 36px;
    color: var(--Neutrals-White, #fff);
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.3s ease;
}
.pfn-cta-btn-primary:hover,
.pfn-cta-btn-primary:focus {
    background-color: #003699;
    color: #ffffff !important;
    outline: none;
}
.pfn-cta-btn-secondary {
    background-color: #fff0;
    color: var(--Neutrals-Off-White, #f1f5f9);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.pfn-cta-btn-secondary:hover,
.pfn-cta-btn-secondary:focus {
    color: #00dc6e !important;
    outline: none;
}
.pfn-cta-carousel-wrapper {
    width: 396px;
    height: 350px;
    flex: 0 0 396px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.pfn-cta-swiper {
    width: 280px;
    height: 350px;
    position: absolute;
    right: 0;
    overflow: visible;
}
.pfn-cta-slide {
    width: 280px !important;
    height: 350px !important;
    background: transparent !important;
}
.pfn-cta-slide-inner {
    width: auto;
}
.pfn-cta-slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #fff0;
}
.swiper-slide {
    opacity: 0 !important;
    visibility: hidden;
    transition:
        opacity 0.8s ease,
        filter 0.8s ease;
}
.swiper-slide-active,
.swiper-slide-prev {
    visibility: visible;
}
.swiper-slide-prev {
    filter: blur(4px) brightness(0.85);
    opacity: 0.8 !important;
    z-index: 1;
}
.swiper-slide.swiper-slide-active {
    filter: blur(0) brightness(1);
    opacity: 1 !important;
    z-index: 2;
}
@media (max-width: 1024px) {
    .pfn-cta-box {
        flex-direction: column;
        padding: 50px 40px;
        text-align: center;
        gap: 50px;
    }
    .pfn-cta-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .pfn-cta-subtitle {
        margin: 0 auto 40px auto;
    }
    .pfn-cta-actions {
        justify-content: center;
    }
    .pfn-cta-carousel-wrapper {
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .pfn-cta-box {
        padding: 40px 20px;
    }
    .pfn-cta-title {
        font-size: 36px;
    }
    .pfn-cta-actions {
        flex-wrap: wrap;
    }
    .pfn-cta-carousel-wrapper {
        width: 100%;
        max-width: 396px;
        height: 350px;
        flex: 0 0 350px;
    }
}