/*
 * Homepage section styles.
 *
 * Extracted verbatim from the per-section <style> blocks in
 * resources/views/front/home-1.blade.php. They were ~98 KB of CSS re-sent inside
 * every homepage HTML response; as a file they are cached for a year instead.
 * Blocks are concatenated in their original document order, and the stylesheet is
 * pushed to @stack('page_css') which renders after redesign-2026.css, so the
 * cascade position is unchanged.
 *
 * Any <style> block containing Blade syntax was deliberately left inline.
 */

@keyframes pspHomeHeadingShimmer {

                0%,
                18% {
                    background-position: 165% 50%;
                }

                68%,
                100% {
                    background-position: -165% 50%;
                }
            }

            .mySwiper .split-hero h1.gradient-heading {
                color: #075d9b !important;
                background: none !important;
                -webkit-text-fill-color: currentColor !important;
                filter: drop-shadow(0 5px 13px rgba(6, 46, 91, .10));
            }

            .mySwiper .split-hero h1.gradient-heading .hero-heading-shimmer {
                position: relative;
                display: inline-block;
                max-width: 100%;
                white-space: normal;
                color: #075d9b;
                background-image: linear-gradient(120deg, #062e5b 0%, #076ea9 58%, #078d8b 100%) !important;
                -webkit-background-clip: text !important;
                background-clip: text !important;
                -webkit-text-fill-color: transparent !important;
            }

            .mySwiper .split-hero h1.gradient-heading .hero-heading-shimmer::after {
                position: absolute;
                inset: 0;
                z-index: 1;
                content: attr(data-text);
                color: transparent;
                background-image: linear-gradient(105deg,
                        transparent 35%,
                        rgba(255, 255, 255, .25) 43%,
                        rgba(255, 255, 255, .98) 48%,
                        #ffd86b 50%,
                        rgba(255, 255, 255, .98) 52%,
                        rgba(255, 255, 255, .25) 57%,
                        transparent 65%);
                background-size: 260% 100%;
                background-position: 165% 50%;
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                pointer-events: none;
                /* Finite (was `infinite`): the sweep plays through on load then the
                                           heading visually settles, so it no longer keeps the above-the-fold
                                           viewport "in motion" and inflating Speed Index. */
                animation: pspHomeHeadingShimmer 7.5s ease-in-out 1s 2 forwards;
            }

            @media (prefers-reduced-motion: reduce) {
                .mySwiper .split-hero h1.gradient-heading .hero-heading-shimmer::after {
                    animation: none !important;
                    opacity: 0;
                }
            }

.uni-marquee {
                        position: relative;
                        padding: 30px 0;
                        background: #fff;
                        overflow: hidden;
                        border-bottom: 1px solid var(--psp-line, #e7edf3);
                        -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
                        mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
                    }

                    .uni-marquee__eyebrow {
                        display: block;
                        text-align: center;
                        margin-bottom: 18px;
                        color: var(--psp-blue, #00609e);
                        font-weight: 600;
                        font-size: .8rem;
                        letter-spacing: .08em;
                        text-transform: uppercase;
                    }

                    .uni-marquee__track {
                        display: flex;
                        gap: 18px;
                        width: max-content;
                        animation: uni-scroll 32s linear infinite;
                        will-change: transform;
                    }

                    .uni-marquee:hover .uni-marquee__track {
                        animation-play-state: paused;
                    }

                    @keyframes uni-scroll {
                        from {
                            transform: translateX(0);
                        }

                        to {
                            transform: translateX(-50%);
                        }
                    }

                    /* Horizontal pill / chip: round image left, name right */
                    .uni-marquee .uni-card {
                        position: relative;
                        flex: 0 0 auto;
                        display: flex;
                        align-items: center;
                        gap: 13px;
                        width: 272px;
                        padding: 9px 20px 9px 9px;
                        background: #fff;
                        border: 1px solid var(--psp-line, #e7edf3);
                        border-radius: 999px;
                        text-decoration: none;
                        box-shadow: 0 8px 20px rgba(15, 23, 42, .07);
                        transition: transform .3s var(--psp-ease, ease), box-shadow .3s ease, border-color .3s ease;
                    }

                    /* Gradient ring on hover (drawn as a masked border so the pill keeps its shape) */
                    .uni-card::before {
                        content: "";
                        position: absolute;
                        inset: 0;
                        border-radius: inherit;
                        padding: 1.5px;
                        background: linear-gradient(120deg, var(--psp-blue, #00609e), var(--psp-primary, #f5a623));
                        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
                        -webkit-mask-composite: xor;
                        mask-composite: exclude;
                        opacity: 0;
                        transition: opacity .3s ease;
                        pointer-events: none;
                        z-index: 1;
                    }

                    .uni-card:hover {
                        transform: translateY(-5px);
                        box-shadow: 0 18px 36px rgba(2, 75, 122, .18);
                        border-color: transparent;
                    }

                    .uni-card:hover::before {
                        opacity: 1;
                    }

                    .uni-card__media {
                        position: relative;
                        flex: 0 0 auto;
                        width: 52px;
                        height: 52px;
                        border-radius: 50%;
                        overflow: hidden;
                        background: var(--psp-surface-2, #f7f9fc);
                        box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgba(0, 96, 158, .14);
                    }

                    .uni-card__media img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                        transition: transform .5s var(--psp-ease, ease);
                    }

                    .uni-card:hover .uni-card__media img {
                        transform: scale(1.08);
                    }

                    .uni-card__badge {
                        position: absolute;
                        right: -1px;
                        bottom: -1px;
                        z-index: 2;
                        width: 20px;
                        height: 20px;
                        border-radius: 50%;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        background: var(--psp-blue, #00609e);
                        color: #fff;
                        font-size: .58rem;
                        border: 2px solid #fff;
                    }

                    .uni-card__body {
                        display: flex;
                        flex-direction: column;
                        min-width: 0;
                    }

                    .uni-card__title {
                        display: block;
                        color: var(--psp-ink, #0f172a);
                        font-weight: 700;
                        font-size: .94rem;
                        line-height: 1.25;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        max-width: 180px;
                    }

                    .uni-card__cta {
                        display: inline-flex;
                        align-items: center;
                        gap: 6px;
                        margin-top: 3px;
                        color: var(--psp-blue, #00609e);
                        font-weight: 600;
                        font-size: .76rem;
                    }

                    .uni-card__cta i {
                        transition: transform .3s ease;
                    }

                    .uni-card:hover .uni-card__cta i {
                        transform: translateX(4px);
                    }

                    @media (max-width: 575.98px) {
                        .uni-marquee .uni-card {
                            width: 244px;
                        }

                        .uni-card__title {
                            max-width: 152px;
                        }
                    }

                    @media (prefers-reduced-motion: reduce) {
                        .uni-marquee__track {
                            animation: none;
                        }
                    }

#home-about {
                        position: relative;
                        overflow: hidden;
                        padding: clamp(62px, 7vw, 96px) 0;
                        background: #fff;
                    }

                    #home-about::before {
                        position: absolute;
                        width: 520px;
                        height: 520px;
                        top: -340px;
                        right: -180px;
                        border-radius: 50%;
                        background: radial-gradient(circle, rgba(0, 125, 190, .09), transparent 68%);
                        content: "";
                        pointer-events: none;
                    }

                    #home-about .home-about-grid {
                        position: relative;
                        display: grid;
                        grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
                        align-items: stretch;
                        gap: clamp(28px, 5vw, 66px);
                    }

                    #home-about .home-about-content {
                        align-self: center;
                    }

                    #home-about .home-about-eyebrow {
                        display: inline-flex;
                        align-items: center;
                        gap: 8px;
                        margin-bottom: 15px;
                        padding: 7px 13px;
                        border: 1px solid #d9e9f3;
                        border-radius: 999px;
                        background: #eef7fc;
                        color: #00609e;
                        font-size: .72rem;
                        font-weight: 850;
                        letter-spacing: .09em;
                        text-transform: uppercase;
                    }

                    #home-about .home-about-eyebrow i {
                        color: #f5a623;
                    }

                    #home-about .home-about-content h2 {
                        max-width: 680px;
                        margin: 0 0 17px;
                        color: #10213a;
                        font-size: clamp(2rem, 4vw, 3.25rem);
                        font-weight: 850;
                        line-height: 1.12;
                        letter-spacing: -.035em;
                    }

                    #home-about .home-about-copy {
                        max-width: 720px;
                        color: #334155;
                        font-size: 1.06rem;
                        line-height: 1.85;
                    }

                    #home-about .home-about-copy * {
                        color: #334155 !important;
                    }

                    #home-about .home-about-copy p:last-child {
                        margin-bottom: 0;
                    }

                    #home-about .home-about-link {
                        display: inline-flex;
                        min-height: 49px;
                        align-items: center;
                        justify-content: center;
                        gap: 9px;
                        margin-top: 25px;
                        padding: 12px 20px;
                        border-radius: 999px;
                        background: #00609e;
                        color: #fff;
                        font-size: .86rem;
                        font-weight: 800;
                        text-decoration: none;
                        box-shadow: 0 12px 25px rgba(0, 96, 158, .22);
                        transition: transform .2s ease, box-shadow .2s ease;
                    }

                    #home-about .home-about-link:hover {
                        color: #fff;
                        transform: translateY(-2px);
                        box-shadow: 0 17px 30px rgba(0, 96, 158, .29);
                    }

                    #home-about .home-about-panel {
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        overflow: hidden;
                        min-height: 360px;
                        padding: clamp(28px, 4vw, 42px);
                        border-radius: 24px;
                        background:
                            radial-gradient(260px 180px at 100% 0%, rgba(37, 178, 236, .22), transparent 70%),
                            linear-gradient(145deg, #09254b, #075780);
                        color: #fff;
                        box-shadow: 0 24px 55px rgba(4, 49, 82, .18);
                    }

                    #home-about .home-about-panel::after {
                        position: absolute;
                        width: 190px;
                        height: 190px;
                        right: -100px;
                        bottom: -105px;
                        border: 1px solid rgba(255, 255, 255, .14);
                        border-radius: 50%;
                        content: "";
                    }

                    #home-about .home-about-panel>span {
                        color: #ffc13b;
                        font-size: .72rem;
                        font-weight: 850;
                        letter-spacing: .1em;
                        text-transform: uppercase;
                    }

                    #home-about .home-about-panel h3 {
                        margin: 8px 0 22px;
                        color: #fff;
                        font-size: clamp(1.45rem, 2.6vw, 2rem);
                        font-weight: 850;
                    }

                    #home-about .home-about-proof {
                        display: grid;
                        gap: 11px;
                    }

                    #home-about .home-about-proof div {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        padding: 14px;
                        border: 1px solid rgba(255, 255, 255, .16);
                        border-radius: 13px;
                        background: rgba(255, 255, 255, .09);
                    }

                    #home-about .home-about-proof i {
                        display: grid;
                        width: 38px;
                        height: 38px;
                        flex: 0 0 38px;
                        place-items: center;
                        border-radius: 11px;
                        background: rgba(255, 193, 59, .15);
                        color: #ffc13b;
                    }

                    #home-about .home-about-proof strong {
                        display: block;
                        color: #fff;
                        font-size: .88rem;
                    }

                    #home-about .home-about-proof small {
                        display: block;
                        margin-top: 2px;
                        color: #c8dceb;
                        font-size: .73rem;
                    }

                    #home-about .welcome-info-row {
                        margin-top: 44px;
                    }

                    #home-about .wir-card {
                        display: flex;
                        align-items: flex-start;
                        gap: 16px;
                        height: 100%;
                        padding: 24px;
                        border: 1px solid #e2eaf1;
                        border-radius: 18px;
                        background: #fff;
                        box-shadow: 0 9px 26px rgba(15, 23, 42, .06);
                        transition: transform .2s ease, box-shadow .2s ease;
                    }

                    #home-about .wir-card:hover {
                        transform: translateY(-4px);
                        box-shadow: 0 17px 38px rgba(15, 23, 42, .1);
                    }

                    #home-about .wir-icon {
                        display: inline-flex;
                        width: 56px;
                        height: 56px;
                        flex: 0 0 56px;
                        align-items: center;
                        justify-content: center;
                        border-radius: 15px;
                        background: #fff7df;
                        color: #f5a623;
                        font-size: 27px;
                    }

                    #home-about .wir-title {
                        margin: 2px 0 6px;
                        color: #10213a;
                        font-size: 1.02rem;
                        font-weight: 800;
                        line-height: 1.35;
                    }

                    #home-about .wir-text {
                        color: #5d6d82;
                        font-size: .86rem;
                        line-height: 1.6;
                    }

                    #home-about .wir-text p {
                        margin: 0;
                    }

                    @media (max-width: 991.98px) {
                        #home-about .home-about-grid {
                            grid-template-columns: 1fr;
                        }

                        #home-about .home-about-panel {
                            min-height: 0;
                        }
                    }

                    @media (max-width: 575.98px) {
                        #home-about {
                            padding-block: 54px;
                        }

                        #home-about .home-about-panel {
                            padding: 26px 20px;
                            border-radius: 19px;
                        }

                        #home-about .wir-card {
                            padding: 19px;
                        }
                    }

#home-countries {
                            position: relative;
                            isolation: isolate;
                            overflow: hidden;
                            padding: clamp(42px, 5vw, 66px) 0 !important;
                            background:
                                radial-gradient(660px 340px at 5% 8%, rgba(248, 179, 26, .17), transparent 65%),
                                radial-gradient(700px 380px at 96% 92%, rgba(42, 177, 231, .2), transparent 66%),
                                linear-gradient(135deg, #00609e 0%, #024b7a 55%, #012f50 100%);
                        }

                        #home-countries::before,
                        #home-countries::after {
                            position: absolute;
                            z-index: -1;
                            border: 1px solid rgba(255, 255, 255, .1);
                            border-radius: 50%;
                            content: "";
                            pointer-events: none;
                        }

                        #home-countries::before {
                            width: 390px;
                            height: 390px;
                            top: -250px;
                            right: 7%;
                        }

                        #home-countries::after {
                            width: 260px;
                            height: 260px;
                            bottom: -180px;
                            left: 3%;
                        }

                        #home-countries .home-section-heading {
                            max-width: 760px;
                            margin-bottom: 26px !important;
                        }

                        #home-countries .home-section-eyebrow {
                            border: 1px solid rgba(255, 255, 255, .22);
                            background: rgba(255, 255, 255, .11);
                            color: #fff;
                        }

                        #home-countries .home-section-eyebrow i {
                            color: #f8b31a;
                        }

                        #home-countries .home-section-heading h2 {
                            color: #fff !important;
                        }

                        #home-countries .home-section-heading h2::after {
                            background: #f8b31a;
                        }

                        #home-countries .home-section-heading p {
                            color: #d2e5f2 !important;
                        }

                        #home-countries .country-grid {
                            display: grid;
                            grid-template-columns: repeat(3, minmax(0, 1fr));
                            gap: 18px;
                        }

                        #home-countries .country-card {
                            position: relative;
                            display: grid;
                            grid-template-columns: 35% minmax(0, 1fr);
                            min-width: 0;
                            height: 210px;
                            min-height: 0;
                            overflow: hidden;
                            border: 1px solid rgba(255, 255, 255, .16);
                            border-radius: 17px;
                            background: #fff;
                            box-shadow: 0 18px 42px rgba(1, 28, 48, .2);
                            color: #102033;
                            text-decoration: none;
                            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
                        }

                        #home-countries .country-card:hover {
                            border-color: rgba(248, 179, 26, .72);
                            box-shadow: 0 28px 56px rgba(1, 28, 48, .32);
                            color: #102033;
                            transform: translateY(-5px);
                        }

                        #home-countries .country-card__media {
                            position: relative;
                            display: block;
                            width: 100%;
                            height: 100%;
                            min-height: 0;
                            overflow: hidden;
                            border-right: 1px solid #e4ebf1;
                            background: #eef4f8;
                        }

                        #home-countries .country-card__media::after {
                            position: absolute;
                            inset: 0;
                            background: linear-gradient(90deg, transparent 68%, rgba(1, 30, 52, .08));
                            content: "";
                        }

                        #home-countries .country-card__media img {
                            width: 100%;
                            height: 100%;
                            display: block;
                            object-fit: cover;
                            transition: transform .5s cubic-bezier(.2, .7, .2, 1);
                        }

                        #home-countries .country-card:hover .country-card__media img {
                            transform: scale(1.055);
                        }

                        #home-countries .country-card__location {
                            display: inline-flex;
                            align-self: flex-start;
                            align-items: center;
                            gap: 7px;
                            max-width: 100%;
                            margin-bottom: 6px;
                            padding: 5px 9px;
                            border: 1px solid #d9e9f3;
                            border-radius: 999px;
                            background: #eef7fc;
                            color: #00609e;
                            font-size: .65rem;
                            font-weight: 800;
                        }

                        #home-countries .country-card__body {
                            display: flex;
                            min-width: 0;
                            flex-direction: column;
                            justify-content: flex-start;
                            padding: 16px;
                        }

                        #home-countries .country-card__eyebrow {
                            display: block;
                            margin-bottom: 3px;
                            color: #00609e;
                            font-size: .61rem;
                            font-weight: 800;
                            letter-spacing: .08em;
                            text-transform: uppercase;
                        }

                        #home-countries .country-card h3 {
                            margin: 0 0 5px;
                            color: #102033;
                            font-size: 1rem;
                            font-weight: 850;
                            letter-spacing: -.02em;
                            line-height: 1.3;
                        }

                        #home-countries .country-card__description {
                            display: -webkit-box;
                            margin: 0 0 8px;
                            overflow: hidden;
                            color: #475569;
                            font-size: .75rem;
                            line-height: 1.42;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 2;
                        }

                        #home-countries .country-card__footer {
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            gap: 8px;
                            margin-top: auto;
                            padding-top: 9px;
                            border-top: 1px solid #e8eef3;
                        }

                        #home-countries .country-card__count {
                            display: inline-flex;
                            align-items: center;
                            gap: 5px;
                            color: #40546b;
                            font-size: .68rem;
                            font-weight: 750;
                        }

                        #home-countries .country-card__count i {
                            color: #f5a623;
                        }

                        #home-countries .country-card__arrow {
                            display: grid;
                            width: 31px;
                            height: 31px;
                            flex: 0 0 31px;
                            place-items: center;
                            border-radius: 50%;
                            background: #eaf5fb;
                            color: #00609e;
                            transition: background .25s ease, color .25s ease, transform .25s ease;
                        }

                        #home-countries .country-card:hover .country-card__arrow {
                            background: #00609e;
                            color: #fff;
                            transform: translateX(3px);
                        }

                        #home-countries .country-footer {
                            margin-top: 22px;
                            text-align: center;
                        }

                        #home-countries .country-footer__link {
                            display: inline-flex;
                            min-height: 50px;
                            align-items: center;
                            justify-content: center;
                            gap: 10px;
                            padding: 12px 22px;
                            border: 1px solid rgba(255, 255, 255, .32);
                            border-radius: 13px;
                            background: rgba(255, 255, 255, .1);
                            color: #fff;
                            font-size: .88rem;
                            font-weight: 800;
                            text-decoration: none;
                            backdrop-filter: blur(8px);
                            transition: background .25s ease, transform .25s ease;
                        }

                        #home-countries .country-footer__link:hover {
                            background: #fff;
                            color: #00609e;
                            transform: translateY(-2px);
                        }

                        @media (max-width: 1199.98px) {
                            #home-countries .country-grid {
                                grid-template-columns: repeat(2, minmax(0, 1fr));
                            }

                            #home-countries .country-card {
                                grid-template-columns: 34% minmax(0, 1fr);
                                height: 210px;
                            }
                        }

                        @media (max-width: 767.98px) {
                            #home-countries .country-grid {
                                grid-template-columns: 1fr;
                            }

                            #home-countries .country-card {
                                height: 184px;
                            }

                            #home-countries .country-card__media {
                                height: 184px;
                            }
                        }

                        @media (max-width: 575.98px) {
                            #home-countries .country-grid {
                                grid-template-columns: 1fr;
                                gap: 16px;
                            }

                            #home-countries .country-card {
                                grid-template-columns: 34% minmax(0, 1fr);
                                height: 178px;
                                min-height: 0;
                                border-radius: 16px;
                            }

                            #home-countries .country-card__media {
                                height: 178px;
                                min-height: 0;
                            }

                            #home-countries .country-card__body {
                                padding: 15px;
                            }

                            #home-countries .country-card__location {
                                margin-bottom: 7px;
                                padding: 5px 8px;
                                font-size: .65rem;
                            }

                            #home-countries .country-card__eyebrow {
                                margin-bottom: 4px;
                                font-size: .61rem;
                            }

                            #home-countries .country-card h3 {
                                margin-bottom: 5px;
                                font-size: 1rem;
                            }

                            #home-countries .country-card__description {
                                margin-bottom: 9px;
                                font-size: .75rem;
                                line-height: 1.45;
                            }

                            #home-countries .country-card__footer {
                                gap: 7px;
                                padding-top: 9px;
                            }

                            #home-countries .country-card__count {
                                gap: 5px;
                                font-size: .68rem;
                            }

                            #home-countries .country-card__arrow {
                                width: 31px;
                                height: 31px;
                                flex-basis: 31px;
                                font-size: .75rem;
                            }
                        }

#home-enquiry {
                        position: relative;
                        overflow: hidden;
                        padding: clamp(62px, 7vw, 96px) 0;
                        background:
                            radial-gradient(620px 300px at 95% 5%, rgba(0, 126, 194, .09), transparent 68%),
                            radial-gradient(440px 250px at 4% 96%, rgba(248, 179, 26, .10), transparent 68%),
                            linear-gradient(180deg, #f5f9fc 0%, #fff 100%);
                    }

                    #home-enquiry .home-enquiry-shell {
                        display: grid;
                        grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
                        overflow: hidden;
                        border: 1px solid #dce7ef;
                        border-radius: 28px;
                        background: #fff;
                        box-shadow: 0 28px 70px rgba(3, 54, 88, .13);
                    }

                    #home-enquiry .home-enquiry-intro {
                        position: relative;
                        display: flex;
                        min-width: 0;
                        flex-direction: column;
                        justify-content: center;
                        overflow: hidden;
                        padding: clamp(34px, 5vw, 58px);
                        background:
                            radial-gradient(320px 200px at 100% 0%, rgba(34, 172, 237, .25), transparent 70%),
                            radial-gradient(240px 180px at 0% 100%, rgba(248, 179, 26, .17), transparent 70%),
                            linear-gradient(145deg, #07234a 0%, #064d78 100%);
                        color: #fff;
                    }

                    #home-enquiry .home-enquiry-intro::after {
                        position: absolute;
                        width: 240px;
                        height: 240px;
                        right: -145px;
                        bottom: -140px;
                        border: 1px solid rgba(255, 255, 255, .13);
                        border-radius: 50%;
                        content: "";
                    }

                    #home-enquiry .home-enquiry-badge {
                        display: inline-flex;
                        align-self: flex-start;
                        align-items: center;
                        gap: 8px;
                        margin-bottom: 18px;
                        padding: 8px 13px;
                        border: 1px solid rgba(255, 255, 255, .22);
                        border-radius: 999px;
                        background: rgba(255, 255, 255, .1);
                        color: #fff;
                        font-size: .71rem;
                        font-weight: 850;
                        letter-spacing: .08em;
                        text-transform: uppercase;
                    }

                    #home-enquiry .home-enquiry-badge i {
                        color: #ffc13b;
                    }

                    #home-enquiry .home-enquiry-intro h2 {
                        max-width: 520px;
                        margin: 0 0 15px;
                        color: #fff;
                        font-size: clamp(2rem, 3.5vw, 3rem);
                        font-weight: 850;
                        line-height: 1.12;
                        letter-spacing: -.035em;
                    }

                    #home-enquiry .home-enquiry-copy {
                        color: #d5e5f0;
                        font-size: .96rem;
                        line-height: 1.72;
                    }

                    #home-enquiry .home-enquiry-copy * {
                        color: #d5e5f0 !important;
                    }

                    #home-enquiry .home-enquiry-copy p:last-child {
                        margin-bottom: 0;
                    }

                    #home-enquiry .home-enquiry-benefits {
                        display: grid;
                        gap: 11px;
                        margin: 24px 0;
                        padding: 0;
                        list-style: none;
                    }

                    #home-enquiry .home-enquiry-benefits li {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        color: #e8f2f8;
                        font-size: .86rem;
                        font-weight: 650;
                    }

                    #home-enquiry .home-enquiry-benefits i {
                        display: grid;
                        width: 24px;
                        height: 24px;
                        flex: 0 0 24px;
                        place-items: center;
                        border-radius: 50%;
                        background: #26cf7d;
                        color: #073c28;
                        font-size: .68rem;
                    }

                    #home-enquiry .home-enquiry-contacts {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 10px;
                    }

                    #home-enquiry .home-enquiry-contact {
                        display: inline-flex;
                        min-height: 44px;
                        align-items: center;
                        gap: 9px;
                        padding: 10px 14px;
                        border: 1px solid rgba(255, 255, 255, .2);
                        border-radius: 12px;
                        background: rgba(255, 255, 255, .1);
                        color: #fff;
                        font-size: .79rem;
                        font-weight: 750;
                        text-decoration: none;
                        transition: background .2s ease, transform .2s ease;
                    }

                    #home-enquiry .home-enquiry-contact:hover {
                        background: rgba(255, 255, 255, .18);
                        color: #fff;
                        transform: translateY(-2px);
                    }

                    #home-enquiry .home-enquiry-contact i {
                        color: #ffc13b;
                    }

                    #home-enquiry .home-enquiry-form-panel {
                        min-width: 0;
                        padding: clamp(30px, 5vw, 56px);
                    }

                    #home-enquiry .home-enquiry-form-head {
                        margin-bottom: 25px;
                    }

                    #home-enquiry .home-enquiry-form-head span {
                        color: #0070b6;
                        font-size: .72rem;
                        font-weight: 850;
                        letter-spacing: .1em;
                        text-transform: uppercase;
                    }

                    #home-enquiry .home-enquiry-form-head h3 {
                        margin: 7px 0 8px;
                        color: #10213a;
                        font-size: clamp(1.55rem, 2.6vw, 2.1rem);
                        font-weight: 850;
                        letter-spacing: -.025em;
                    }

                    #home-enquiry .home-enquiry-form-head p {
                        margin: 0;
                        color: #475569;
                        font-size: .9rem;
                        line-height: 1.6;
                    }

                    #home-enquiry .home-enquiry-grid {
                        display: grid;
                        grid-template-columns: repeat(2, minmax(0, 1fr));
                        gap: 16px;
                    }

                    #home-enquiry .home-enquiry-field {
                        min-width: 0;
                    }

                    #home-enquiry .home-enquiry-field--full {
                        grid-column: 1 / -1;
                    }

                    #home-enquiry .home-enquiry-field label {
                        display: block;
                        margin: 0 0 7px;
                        color: #40536d;
                        font-size: .71rem;
                        font-weight: 800;
                        letter-spacing: .055em;
                        text-transform: uppercase;
                    }

                    #home-enquiry .home-enquiry-control {
                        position: relative;
                    }

                    #home-enquiry .home-enquiry-control>i {
                        position: absolute;
                        z-index: 1;
                        top: 50%;
                        left: 15px;
                        color: #8ba1b8;
                        font-size: .9rem;
                        transform: translateY(-50%);
                        pointer-events: none;
                    }

                    #home-enquiry .home-enquiry-control--message>i {
                        top: 17px;
                        transform: none;
                    }

                    #home-enquiry .form-control {
                        width: 100%;
                        min-height: 52px;
                        padding: 12px 15px 12px 43px;
                        border: 1px solid #dbe5ed !important;
                        border-radius: 12px !important;
                        background: #f7fafc !important;
                        color: #14243d !important;
                        font-size: .88rem;
                        box-shadow: none;
                    }

                    #home-enquiry textarea.form-control {
                        min-height: 108px !important;
                        resize: vertical;
                    }

                    #home-enquiry .form-control:focus {
                        border-color: #0071b8 !important;
                        background: #fff !important;
                        box-shadow: 0 0 0 4px rgba(0, 113, 184, .1) !important;
                    }

                    #home-enquiry .home-enquiry-submit {
                        display: inline-flex;
                        width: 100%;
                        min-height: 54px;
                        align-items: center;
                        justify-content: center;
                        gap: 10px;
                        border: 0;
                        border-radius: 12px;
                        background: linear-gradient(135deg, #078e58, #0aa768);
                        color: #fff;
                        font-size: .92rem;
                        font-weight: 850;
                        box-shadow: 0 12px 25px rgba(9, 148, 91, .24);
                        transition: transform .2s ease, box-shadow .2s ease;
                    }

                    #home-enquiry .home-enquiry-submit:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 17px 30px rgba(9, 148, 91, .3);
                    }

                    #home-enquiry .form-reassurance {
                        justify-content: center;
                        margin-top: 12px !important;
                        color: #475569;
                        font-size: .76rem;
                        text-align: center;
                    }

                    #home-enquiry .form-reassurance i {
                        color: #0c985c;
                    }

                    @media (max-width: 991.98px) {
                        #home-enquiry .home-enquiry-shell {
                            grid-template-columns: 1fr;
                        }

                        #home-enquiry .home-enquiry-intro {
                            padding-block: 42px;
                        }
                    }

                    @media (max-width: 575.98px) {
                        #home-enquiry {
                            padding-block: 54px;
                        }

                        #home-enquiry .home-enquiry-shell {
                            border-radius: 20px;
                        }

                        #home-enquiry .home-enquiry-intro,
                        #home-enquiry .home-enquiry-form-panel {
                            padding: 27px 20px;
                        }

                        #home-enquiry .home-enquiry-grid {
                            grid-template-columns: 1fr;
                            gap: 13px;
                        }

                        #home-enquiry .home-enquiry-field--full {
                            grid-column: auto;
                        }

                        #home-enquiry .home-enquiry-contacts {
                            display: grid;
                            grid-template-columns: 1fr;
                        }
                    }

#universities-grid .uni-card {
                    position: relative;
                    border-radius: 18px;
                    border: 1px solid #e7edf3;
                    overflow: hidden;
                    background: #fff;
                    box-shadow: 0 8px 22px rgba(15, 23, 42, .07);
                    transition: transform .3s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease, border-color .3s ease;
                }

                #universities-grid .uni-card::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    height: 4px;
                    background: linear-gradient(90deg, #00609e, #f5a623);
                    opacity: 0;
                    transition: opacity .3s ease;
                    z-index: 3;
                }

                #universities-grid .uni-card:hover {
                    transform: translateY(-7px);
                    box-shadow: 0 22px 44px rgba(2, 75, 122, .18);
                    border-color: rgba(0, 96, 158, .4);
                }

                #universities-grid .uni-card:hover::before {
                    opacity: 1;
                }

                #universities-grid .uni-media {
                    position: relative;
                    overflow: hidden;
                }

                #universities-grid .uni-media::after {
                    content: "";
                    position: absolute;
                    inset: 0;
                    background: linear-gradient(180deg, rgba(2, 30, 54, 0) 55%, rgba(2, 30, 54, .4) 100%);
                }

                #universities-grid .uni-badge {
                    position: absolute;
                    top: 12px;
                    left: 12px;
                    z-index: 2;
                    width: 38px;
                    height: 38px;
                    border-radius: 11px;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    background: rgba(255, 255, 255, .92);
                    color: #00609e;
                    box-shadow: 0 4px 12px rgba(2, 75, 122, .22);
                }

                #universities-grid .uni-img {
                    width: 100%;
                    aspect-ratio: 16/9;
                    object-fit: cover;
                    display: block;
                    transition: transform .5s cubic-bezier(.22, .61, .36, 1);
                }

                #universities-grid .uni-card:hover .uni-img {
                    transform: scale(1.07);
                }

                #universities-grid .uni-title {
                    font-size: 1rem;
                    font-weight: 700;
                    margin: 0 0 .9rem 0;
                    color: #0f172a;
                    text-align: left;
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }

                #universities-grid .btn {
                    font-size: .85rem;
                    font-weight: 600;
                    padding: .55rem .85rem;
                    border-radius: 999px;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 6px;
                }

                #universities-grid .btn-primary {
                    background: #00609e !important;
                    border: 1px solid #00609e !important;
                }

                #universities-grid .btn-primary:hover {
                    background: #024b7a !important;
                    border-color: #024b7a !important;
                }

                #universities-grid .btn-outline-secondary {
                    color: #00609e !important;
                    border: 1px solid #cdddea !important;
                    background: #fff !important;
                }

                #universities-grid .btn-outline-secondary:hover {
                    background: #00609e !important;
                    color: #fff !important;
                    border-color: #00609e !important;
                }

                #universities-grid .uni-card .btn i {
                    transition: transform .3s ease;
                }

                #universities-grid .uni-card:hover .btn-primary i {
                    transform: translateX(3px);
                }

                /* Mobile: wrap the same action row instead of duplicating links */
                @media (max-width: 576px) {
                    #universities-grid .btn-group-desktop {
                        display: flex !important;
                        flex-direction: column;
                    }
                }

                @media (min-width: 577px) {
                    #universities-grid .btn-group-desktop {
                        display: flex !important;
                    }
                }

/* ——— softened, brand-consistent service strip ——— */
                    #services-minicards {
                        background:
                            radial-gradient(900px 400px at 92% 0%, rgba(245, 166, 35, .14), transparent 60%),
                            linear-gradient(180deg, #fffdf7 0%, #fef6e6 100%);
                    }

                    #services-minicards .sec-head {
                        margin-bottom: 2.25rem;
                    }

                    #services-minicards .sec-head .eyebrow {
                        display: inline-block;
                        padding: .35rem .85rem;
                        border-radius: 999px;
                        background: rgba(0, 96, 158, .08);
                        color: var(--psp-blue, #00609e);
                        font-weight: 600;
                        font-size: .8rem;
                        letter-spacing: .04em;
                        text-transform: uppercase;
                        margin-bottom: .75rem;
                    }

                    #services-minicards .sec-head h2 {
                        font-weight: 800;
                        color: var(--psp-ink, #0f172a);
                        font-size: clamp(26px, 3.4vw, 38px);
                        margin: 0;
                    }

                    #services-minicards .ring {
                        padding: 1px;
                        border-radius: 18px;
                        background: linear-gradient(135deg, rgba(245, 166, 35, .55), rgba(255, 216, 107, .35));
                    }

                    #services-minicards .cardx {
                        border-radius: 17px;
                        border: 1px solid rgba(0, 0, 0, .05);
                        background: #fff;
                        height: 100%;
                        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
                        box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
                        padding: 1.6rem;
                    }

                    #services-minicards .cardx:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .12);
                        border-color: rgba(0, 0, 0, .08);
                    }

                    /* Heading */
                    #services-minicards .cardx h5 {
                        font-weight: 700;
                        font-size: 1.1rem;
                        line-height: 1.4;
                        margin-bottom: .75rem;
                        color: #222;
                        position: relative;
                        padding-bottom: .4rem;
                    }

                    #services-minicards .cardx h5::after {
                        content: '';
                        display: block;
                        width: 40px;
                        height: 3px;
                        border-radius: 2px;
                        background: #fec63f;
                        margin-top: .35rem;
                    }

                    /* Description */
                    #services-minicards .desc {
                        color: #475569;
                        line-height: 1.6;
                        font-size: .95rem;
                        display: block;
                        overflow: visible;
                        min-height: auto;
                    }

                    /* CTA — brand blue instead of heavy black */
                    #services-minicards .cardx .btn-dark {
                        background: var(--psp-blue, #00609e);
                        border-color: var(--psp-blue, #00609e);
                        font-weight: 600;
                        letter-spacing: .01em;
                    }

                    #services-minicards .cardx .btn-dark:hover {
                        background: var(--psp-blue-strong, #024b7a);
                        border-color: var(--psp-blue-strong, #024b7a);
                    }

                    @media (prefers-reduced-motion: reduce) {

                        #services-minicards .cardx,
                        #services-minicards .cardx:hover {
                            transition: none
                        }
                    }

/* Minimal, surgical CSS */
                    #video-facts .vid-card {
                        position: relative;
                        border-radius: 16px;
                        overflow: hidden;
                        background: #0b1220;
                        box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .12);
                        height: 100%;
                    }

                    #video-facts .vid-bg {
                        position: absolute;
                        inset: 0;
                        background-position: center;
                        background-size: cover;
                        transform: scale(1.02);
                    }

                    #video-facts .vid-overlay {
                        position: absolute;
                        inset: 0;
                        background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .35));
                    }

                    #video-facts .vid-content {
                        position: relative;
                        z-index: 2;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        text-align: center;
                        padding: 1rem;
                    }

                    #video-facts .play-now {
                        width: 64px;
                        height: 64px;
                        border-radius: 50%;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        background: #fff;
                        color: #111;
                        box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .25);
                        transition: transform .15s ease;
                    }

                    #video-facts .play-now:hover {
                        transform: scale(1.04)
                    }

                    #video-facts .vid-title {
                        color: #fff;
                        font-weight: 800;
                        text-shadow: 0 2px 12px rgba(0, 0, 0, .35)
                    }

                    /* Keep a nice 16:9 even as the column grows */
                    #video-facts .ratio-16x9 {
                        position: relative;
                        width: 100%;
                        padding-top: 56.25%
                    }

                    #video-facts .ratio-16x9>* {
                        position: absolute;
                        inset: 0
                    }

                    /* Right column */
                    #video-facts .cap .sub-title {
                        display: inline-block;
                        padding: .35rem .7rem;
                        border-radius: 999px;
                        background: #eef5ff;
                        color: #0b5aa2;
                        font-weight: 600;
                        font-size: .9rem
                    }

                    #video-facts .cap h2 {
                        margin: .35rem 0 .35rem;
                        font-weight: 800;
                        color: #0f172a
                    }

                    #video-facts .cap .lead {
                        color: #475569;
                        margin-bottom: .5rem;
                        font-size: 16px;
                        font-weight: 500;
                    }

                    /* Fact boxes */
                    #video-facts .fact {
                        border: 1px solid #e7edf3;
                        border-radius: 14px;
                        background: #fff;
                        height: 100%;
                        transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
                        box-shadow: 0 .25rem .6rem rgba(0, 0, 0, .06);
                    }

                    #video-facts .fact:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 .75rem 1.25rem rgba(0, 0, 0, .10);
                        border-color: #e1e7ee;
                    }

                    #video-facts .fact .icon {
                        font-size: 28px;
                        color: #b07a00;
                        background: rgba(254, 198, 63, .16);
                        width: 44px;
                        height: 44px;
                        border-radius: .6rem;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                    }

                    #video-facts .count-box {
                        font-weight: 800;
                        color: #0f172a
                    }

                    #video-facts .counter-title {
                        color: #475569;
                        margin: 0
                    }

                    @media (max-width: 991.98px) {
                        #video-facts .vid-title {
                            font-size: 1.15rem
                        }
                    }

#blog-brand {
                        background: #f6f9fc;
                        color: #0f172a;
                    }

                    #blog-brand .sec-title h2,
                    #blog-brand .sec-title .sub-title {
                        color: #0f172a;
                    }

                    #blog-brand .blog-grid {
                        align-items: stretch;
                    }

                    #blog-brand .blog-card {
                        border: 1px solid #e5edf5;
                        border-radius: 8px;
                        overflow: hidden;
                        background: #fff;
                        color: #0f172a;
                        box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
                        display: flex;
                        flex-direction: column;
                        height: 100%;
                        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
                    }

                    #blog-brand .blog-card:hover {
                        transform: translateY(-3px);
                        border-color: #cbdff2;
                        box-shadow: 0 16px 32px rgba(15, 23, 42, .13);
                    }

                    #blog-brand .blog-media {
                        display: block;
                        position: relative;
                        overflow: hidden;
                        background: #e2e8f0;
                    }

                    #blog-brand .blog-media .ratio {
                        --bs-aspect-ratio: 58%;
                    }

                    #blog-brand .blog-media img {
                        object-fit: cover;
                        transition: transform .35s ease;
                    }

                    #blog-brand .blog-card:hover .blog-media img {
                        transform: scale(1.04);
                    }

                    #blog-brand .badge-date {
                        position: absolute;
                        top: 12px;
                        left: 12px;
                        background: #00609E;
                        color: #fff;
                        border-radius: 6px;
                        padding: .35rem .65rem;
                        font-size: .78rem;
                        font-weight: 700;
                        line-height: 1;
                        box-shadow: 0 8px 18px rgba(0, 96, 158, .24);
                    }

                    #blog-brand .blog-content {
                        display: flex;
                        flex: 1;
                        flex-direction: column;
                        padding: 1.15rem;
                        min-height: 230px;
                    }

                    #blog-brand .blog-meta {
                        display: flex;
                        align-items: center;
                        gap: .45rem;
                        color: #475569;
                        font-size: .86rem;
                        font-weight: 600;
                        margin-bottom: .75rem;
                    }

                    #blog-brand .publish-date {
                        align-items: center;
                        color: #00609E;
                        display: flex;
                        font-size: .86rem;
                        font-weight: 700;
                        gap: .45rem;
                        margin-bottom: .7rem;
                    }

                    #blog-brand .post-title {
                        font-size: 1.08rem;
                        line-height: 1.38;
                        margin-bottom: .65rem;
                    }

                    #blog-brand .post-title a {
                        color: #0f172a;
                        text-decoration: none;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 2;
                        overflow: hidden;
                    }

                    #blog-brand .post-title a:hover {
                        color: #C21875;
                    }

                    #blog-brand .blog-excerpt {
                        color: #475569;
                        font-size: .94rem;
                        line-height: 1.62;
                        margin-bottom: 1rem;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 3;
                        overflow: hidden;
                    }

                    #blog-brand .read-more {
                        align-items: center;
                        border-top: 1px solid #edf2f7;
                        color: #00609E;
                        display: flex;
                        font-weight: 700;
                        gap: .45rem;
                        justify-content: flex-end;
                        margin-top: auto;
                        padding-top: .9rem;
                        text-decoration: none;
                    }

                    #blog-brand .read-more:hover {
                        color: #C21875;
                    }

                    #blog-brand .read-more i {
                        align-items: center;
                        background: #eef7fb;
                        border-radius: 50%;
                        display: inline-flex;
                        height: 30px;
                        justify-content: center;
                        width: 30px;
                        transition: background .2s ease, transform .2s ease;
                    }

                    #blog-brand .read-more:hover i {
                        background: #fdeaf4;
                        transform: translateX(2px);
                    }

                    @media (max-width: 575.98px) {
                        #blog-brand .blog-content {
                            min-height: 0;
                            padding: 1rem;
                        }

                        #blog-brand .post-title {
                            font-size: 1rem;
                        }
                    }

#gallery-polaroid {
                    position: relative;
                    overflow: hidden;
                    background:
                        radial-gradient(500px 260px at 8% 8%, rgba(248, 179, 26, .11), transparent 65%),
                        radial-gradient(560px 300px at 92% 92%, rgba(0, 96, 158, .1), transparent 65%),
                        linear-gradient(180deg, #f7fafc 0%, #fff 100%);
                }

                #gallery-polaroid .gallery-heading {
                    max-width: 680px;
                    margin: 0 auto clamp(28px, 4vw, 42px);
                    text-align: center;
                }

                #gallery-polaroid .gallery-heading__eyebrow {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    margin-bottom: 10px;
                    color: #00609e;
                    font-size: .76rem;
                    font-weight: 800;
                    letter-spacing: .1em;
                    text-transform: uppercase;
                }

                #gallery-polaroid .gallery-heading h2 {
                    margin: 0 0 12px;
                    color: #101828;
                    font-size: clamp(2rem, 4vw, 3rem);
                    font-weight: 850;
                    letter-spacing: -.035em;
                }

                #gallery-polaroid .gallery-heading p {
                    margin: 0;
                    color: #475569;
                    font-size: 1rem;
                    line-height: 1.65;
                }

                #gallery-polaroid .gallery-slider-wrap {
                    position: relative;
                }

                #gallery-polaroid .pspGallerySwiper {
                    margin: 0 -6px;
                    padding: 6px 6px 48px;
                }

                #gallery-polaroid .swiper-slide {
                    height: auto;
                }

                #gallery-polaroid .gallery-card {
                    position: relative;
                    display: block;
                    height: 100%;
                    aspect-ratio: 4 / 3;
                    max-width: none;
                    margin: 0;
                    padding: 0;
                    overflow: hidden;
                    border: 1px solid rgba(15, 56, 86, .1);
                    border-radius: 20px;
                    background: #dfe9f1;
                    box-shadow: 0 12px 30px rgba(15, 45, 70, .11);
                    text-decoration: none;
                    transform: none;
                    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
                }

                #gallery-polaroid .gallery-card:hover {
                    border-color: rgba(0, 96, 158, .28);
                    box-shadow: 0 22px 42px rgba(2, 75, 122, .2);
                    transform: translateY(-7px);
                }

                #gallery-polaroid .gallery-card__image {
                    width: 100%;
                    height: 100%;
                    display: block;
                    object-fit: cover;
                    transition: transform .6s cubic-bezier(.2, .7, .2, 1);
                }

                #gallery-polaroid .gallery-card:hover .gallery-card__image {
                    transform: scale(1.075);
                }

                #gallery-polaroid .gallery-card::after {
                    position: absolute;
                    inset: 34% 0 0;
                    background: linear-gradient(180deg, transparent, rgba(1, 25, 44, .88));
                    content: "";
                    pointer-events: none;
                }

                #gallery-polaroid .gallery-card__content {
                    position: absolute;
                    z-index: 2;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    padding: 20px;
                    color: #fff;
                }

                #gallery-polaroid .gallery-card__category {
                    display: inline-flex;
                    align-items: center;
                    gap: 6px;
                    margin-bottom: 7px;
                    color: #ffd36b;
                    font-size: .68rem;
                    font-weight: 800;
                    letter-spacing: .08em;
                    text-transform: uppercase;
                }

                #gallery-polaroid .gallery-card__title {
                    display: block;
                    margin: 0;
                    color: #fff;
                    font-size: clamp(.95rem, 1.4vw, 1.08rem);
                    font-weight: 800;
                    line-height: 1.35;
                }

                #gallery-polaroid .gallery-card__view {
                    position: absolute;
                    z-index: 3;
                    top: 16px;
                    right: 16px;
                    display: grid;
                    width: 40px;
                    height: 40px;
                    place-items: center;
                    border: 1px solid rgba(255, 255, 255, .45);
                    border-radius: 50%;
                    background: rgba(255, 255, 255, .92);
                    color: #00609e;
                    box-shadow: 0 8px 18px rgba(1, 25, 44, .2);
                    opacity: 0;
                    transform: translateY(5px);
                    transition: opacity .25s ease, transform .25s ease;
                }

                #gallery-polaroid .gallery-card:hover .gallery-card__view {
                    opacity: 1;
                    transform: translateY(0);
                }

                #gallery-polaroid .gallery-nav {
                    position: absolute;
                    z-index: 4;
                    top: calc(50% - 24px);
                    display: grid;
                    width: 48px;
                    height: 48px;
                    margin: 0;
                    place-items: center;
                    border: 1px solid #dce6ee;
                    border-radius: 50%;
                    background: #fff;
                    color: #00609e !important;
                    box-shadow: 0 10px 26px rgba(15, 45, 70, .16);
                    transition: background .2s ease, color .2s ease, transform .2s ease;
                }

                #gallery-polaroid .gallery-nav:hover {
                    background: #00609e;
                    color: #fff !important;
                    transform: scale(1.06);
                }

                #gallery-polaroid .gallery-nav::after {
                    font-size: 16px;
                    font-weight: 900;
                }

                #gallery-polaroid .gallery-nav--prev {
                    left: -24px;
                }

                #gallery-polaroid .gallery-nav--next {
                    right: -24px;
                }

                #gallery-polaroid .swiper-pagination {
                    bottom: 8px;
                }

                #gallery-polaroid .swiper-pagination-bullet {
                    width: 8px;
                    height: 8px;
                    margin: 0 4px !important;
                    background: #b8c8d6;
                    opacity: 1;
                }

                #gallery-polaroid .swiper-pagination-bullet-active {
                    width: 24px;
                    border-radius: 999px;
                    background: #00609e;
                }

                #gallery-polaroid .gallery-footer {
                    margin-top: 2px;
                    text-align: center;
                }

                #gallery-polaroid .view-more-btn {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    min-height: 50px;
                    padding: 12px 23px;
                    border: 0;
                    border-radius: 13px;
                    background: linear-gradient(135deg, #00609e, #024b7a);
                    color: #fff;
                    font-size: .92rem;
                    font-weight: 800;
                    text-decoration: none;
                    box-shadow: 0 12px 26px rgba(0, 96, 158, .25);
                }

                #gallery-polaroid .view-more-btn:hover {
                    color: #fff;
                    transform: translateY(-2px);
                    box-shadow: 0 17px 32px rgba(0, 96, 158, .33);
                }

                @media (max-width: 1240px) {
                    #gallery-polaroid .gallery-nav--prev {
                        left: 4px;
                    }

                    #gallery-polaroid .gallery-nav--next {
                        right: 4px;
                    }
                }

                @media (max-width: 767.98px) {
                    #gallery-polaroid .gallery-heading {
                        margin-bottom: 25px;
                    }

                    #gallery-polaroid .gallery-heading p {
                        font-size: .92rem;
                    }

                    #gallery-polaroid .pspGallerySwiper {
                        margin-right: -15px;
                        padding-right: 42px;
                    }

                    #gallery-polaroid .gallery-nav {
                        display: none;
                    }

                    #gallery-polaroid .gallery-card__view {
                        opacity: 1;
                        transform: none;
                    }
                }

.psp-home #testimonials-alt {
                        overflow: hidden;
                        padding-top: clamp(58px, 5vw, 78px) !important;
                        padding-bottom: clamp(58px, 5vw, 78px) !important;
                        background:
                            radial-gradient(520px 280px at 92% 5%, rgba(0, 96, 158, .09), transparent 68%),
                            radial-gradient(460px 250px at 4% 92%, rgba(248, 179, 26, .08), transparent 68%),
                            linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%) !important;
                    }

                    #testimonials-alt .home-section-heading {
                        margin-bottom: 30px !important;
                    }

                    #testimonials-alt .testimonial-slider-shell {
                        position: relative;
                        max-width: 1220px;
                        margin: 0 auto;
                    }

                    #testimonials-alt .psp-testimonial-swiper {
                        max-width: none;
                        margin: 0;
                        padding: 8px 4px 46px;
                    }

                    #testimonials-alt .swiper-wrapper {
                        align-items: stretch;
                    }

                    #testimonials-alt .swiper-slide {
                        width: auto;
                        height: auto;
                    }

                    #testimonials-alt .testimonial-card {
                        position: relative;
                        display: flex;
                        height: 100%;
                        min-height: 306px;
                        overflow: hidden;
                        border: 1px solid #dde7ef;
                        border-radius: 21px;
                        background: rgba(255, 255, 255, .97);
                        box-shadow: 0 12px 30px rgba(15, 45, 70, .08);
                        transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
                    }

                    #testimonials-alt .testimonial-card::before {
                        position: absolute;
                        top: 0;
                        right: 0;
                        left: 0;
                        height: 4px;
                        background: linear-gradient(90deg, #00609e, #2ab1e7, #f8b31a);
                        content: "";
                    }

                    #testimonials-alt .testimonial-card:hover {
                        border-color: rgba(0, 96, 158, .28);
                        box-shadow: 0 22px 44px rgba(2, 75, 122, .15);
                        transform: translateY(-5px);
                    }

                    #testimonials-alt .testimonial-card__body {
                        display: flex;
                        width: 100%;
                        flex-direction: column;
                        padding: 25px 24px 22px;
                    }

                    #testimonials-alt .testimonial-card__top {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        gap: 16px;
                        margin-bottom: 17px;
                    }

                    #testimonials-alt .testimonial-card__quote {
                        display: grid;
                        width: 40px;
                        height: 40px;
                        flex: 0 0 40px;
                        place-items: center;
                        border-radius: 12px;
                        background: #eaf5fb;
                        color: #00609e;
                        font-family: Georgia, serif;
                        font-size: 1.55rem;
                        font-weight: 800;
                        line-height: 1;
                    }

                    #testimonials-alt .testimonial-card__rating {
                        display: flex;
                        gap: 4px;
                        color: #f5aa13;
                    }

                    #testimonials-alt .testimonial-card__rating i {
                        font-size: .84rem;
                    }

                    #testimonials-alt .testimonial-card__comment {
                        display: -webkit-box;
                        min-height: calc(1.65em * 4);
                        margin: 0 0 20px;
                        overflow: hidden;
                        color: #334155;
                        font-size: .95rem;
                        line-height: 1.65;
                        text-align: left;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 4;
                    }

                    #testimonials-alt .testimonial-card__comment p {
                        margin: 0;
                        color: inherit;
                        font: inherit;
                        line-height: inherit;
                    }

                    #testimonials-alt .testimonial-card__author {
                        display: grid;
                        grid-template-columns: 50px minmax(0, 1fr) auto;
                        gap: 12px;
                        align-items: center;
                        margin-top: auto;
                        padding-top: 17px;
                        border-top: 1px solid #e8eef3;
                    }

                    #testimonials-alt .testimonial-card__avatar {
                        width: 50px;
                        height: 50px;
                        display: block;
                        border: 2px solid #fff;
                        border-radius: 50%;
                        background: #e9eff4;
                        box-shadow: 0 0 0 1px #d9e4ec;
                        object-fit: cover;
                    }

                    #testimonials-alt .testimonial-card__identity {
                        min-width: 0;
                    }

                    #testimonials-alt .testimonial-card__name {
                        display: block;
                        overflow: hidden;
                        color: #102033;
                        font-size: .88rem;
                        font-weight: 850;
                        line-height: 1.3;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                    }

                    #testimonials-alt .testimonial-card__role {
                        display: block;
                        margin-top: 3px;
                        overflow: hidden;
                        color: #475569;
                        font-size: .75rem;
                        line-height: 1.35;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                    }

                    #testimonials-alt .testimonial-card__verified {
                        display: grid;
                        width: 28px;
                        height: 28px;
                        place-items: center;
                        border-radius: 50%;
                        background: #eaf8ef;
                        color: #1a9a50;
                        font-size: .7rem;
                    }

                    #testimonials-alt .swiper-pagination {
                        bottom: 7px !important;
                    }

                    #testimonials-alt .swiper-pagination-bullet {
                        width: 8px;
                        height: 8px;
                        margin: 0 4px !important;
                        background: #b9c8d5;
                        opacity: 1;
                    }

                    #testimonials-alt .swiper-pagination-bullet-active {
                        width: 24px;
                        border-radius: 999px;
                        background: #00609e;
                    }

                    #testimonials-alt .testimonial-nav {
                        position: absolute;
                        z-index: 4;
                        top: calc(50% - 36px);
                        display: grid;
                        width: 44px;
                        height: 44px;
                        margin: 0;
                        place-items: center;
                        border: 1px solid #dce6ee;
                        border-radius: 50%;
                        background: #fff;
                        color: #00609e;
                        box-shadow: 0 10px 24px rgba(15, 45, 70, .14);
                        transition: background .2s ease, color .2s ease, transform .2s ease;
                    }

                    #testimonials-alt .testimonial-nav:hover {
                        background: #00609e;
                        color: #fff;
                        transform: scale(1.05);
                    }

                    #testimonials-alt .testimonial-nav::after {
                        font-size: 14px;
                        font-weight: 900;
                    }

                    #testimonials-alt .testimonial-nav--prev {
                        left: -22px;
                    }

                    #testimonials-alt .testimonial-nav--next {
                        right: -22px;
                    }

                    #testimonials-alt .testimonial-more-wrap {
                        margin-top: 20px;
                        text-align: center;
                    }

                    #testimonials-alt .testimonial-more-btn {
                        display: inline-flex;
                        min-height: 50px;
                        align-items: center;
                        justify-content: center;
                        gap: 10px;
                        padding: 12px 22px;
                        border: 1px solid #00609e;
                        border-radius: 13px;
                        background: #fff;
                        color: #00609e;
                        font-size: .88rem;
                        font-weight: 850;
                        box-shadow: 0 10px 24px rgba(0, 96, 158, .12);
                        transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
                    }

                    #testimonials-alt .testimonial-more-btn:hover {
                        background: #00609e;
                        color: #fff;
                        box-shadow: 0 15px 30px rgba(0, 96, 158, .24);
                        transform: translateY(-2px);
                    }

                    #testimonials-alt .testimonial-more-btn i {
                        transition: transform .2s ease;
                    }

                    #testimonials-alt.testimonials-expanded .testimonial-more-btn i {
                        transform: rotate(180deg);
                    }

                    #testimonials-alt.testimonials-expanded .psp-testimonial-swiper {
                        overflow: visible;
                        padding-bottom: 0;
                    }

                    #testimonials-alt.testimonials-expanded .swiper-wrapper {
                        display: grid;
                        grid-template-columns: repeat(3, minmax(0, 1fr));
                        gap: 22px;
                        transform: none !important;
                    }

                    #testimonials-alt.testimonials-expanded .swiper-slide {
                        width: auto !important;
                        height: auto !important;
                        margin: 0 !important;
                    }

                    #testimonials-alt.testimonials-expanded .testimonial-nav,
                    #testimonials-alt.testimonials-expanded .swiper-pagination {
                        display: none !important;
                    }

                    @media (max-width: 1270px) {
                        #testimonials-alt .testimonial-nav--prev {
                            left: 5px;
                        }

                        #testimonials-alt .testimonial-nav--next {
                            right: 5px;
                        }
                    }

                    @media (max-width: 991.98px) {
                        #testimonials-alt.testimonials-expanded .swiper-wrapper {
                            grid-template-columns: repeat(2, minmax(0, 1fr));
                        }
                    }

                    @media (max-width: 767.98px) {
                        #testimonials-alt .testimonial-nav {
                            display: none;
                        }

                        #testimonials-alt .testimonial-card {
                            min-height: 292px;
                        }

                        #testimonials-alt .testimonial-card__body {
                            padding: 22px 20px 20px;
                        }

                        #testimonials-alt.testimonials-expanded .swiper-wrapper {
                            grid-template-columns: 1fr;
                            gap: 16px;
                        }
                    }

.psp-home .home-consultation-cta .outer-box {
                    position: relative;
                    isolation: isolate;
                    display: grid !important;
                    grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr) !important;
                    gap: clamp(34px, 6vw, 78px);
                    align-items: center;
                    min-height: 300px;
                    overflow: hidden;
                    padding: clamp(34px, 5vw, 58px) clamp(28px, 6vw, 68px) !important;
                    border: 1px solid rgba(255, 255, 255, .1);
                    border-radius: 28px !important;
                    background:
                        radial-gradient(430px 240px at 5% 12%, rgba(32, 116, 220, .25), transparent 68%),
                        radial-gradient(390px 230px at 95% 90%, rgba(248, 179, 26, .12), transparent 68%),
                        linear-gradient(135deg, #111827 0%, #121a2c 52%, #0b2144 100%) !important;
                    box-shadow: 0 24px 55px rgba(15, 23, 42, .2) !important;
                }

                .psp-home .home-consultation-cta .outer-box::before,
                .psp-home .home-consultation-cta .outer-box::after {
                    position: absolute;
                    inset: auto;
                    z-index: -1;
                    border: 1px solid rgba(255, 255, 255, .08);
                    border-radius: 50%;
                    background: transparent;
                    content: "";
                    opacity: 1;
                    pointer-events: none;
                }

                .psp-home .home-consultation-cta .outer-box::before {
                    width: 280px;
                    height: 280px;
                    top: -190px;
                    right: 27%;
                }

                .psp-home .home-consultation-cta .outer-box::after {
                    width: 190px;
                    height: 190px;
                    bottom: -135px;
                    left: 35%;
                }

                .home-consultation-cta__copy {
                    position: relative;
                    z-index: 2;
                    max-width: 650px;
                }

                .home-consultation-cta__eyebrow {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    margin-bottom: 14px;
                    padding: 7px 13px;
                    border: 1px solid rgba(255, 255, 255, .18);
                    border-radius: 999px;
                    background: rgba(255, 255, 255, .08);
                    color: #bcdcf3;
                    font-size: .71rem;
                    font-weight: 800;
                    letter-spacing: .09em;
                    text-transform: uppercase;
                }

                .home-consultation-cta__eyebrow i {
                    color: #f8b31a;
                }

                .home-consultation-cta__title {
                    margin: 0 0 13px;
                    color: #fff;
                    font-size: clamp(2rem, 4vw, 3.25rem);
                    font-weight: 850;
                    letter-spacing: -.04em;
                    line-height: 1.08;
                    text-wrap: balance;
                }

                .home-consultation-cta__lead {
                    max-width: 600px;
                    margin: 0 0 20px;
                    color: #c7d7e7;
                    font-size: .96rem;
                    line-height: 1.65;
                }

                .home-consultation-cta__proof {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 9px;
                    margin: 0;
                    padding: 0;
                    list-style: none;
                }

                .home-consultation-cta__proof li {
                    display: inline-flex;
                    align-items: center;
                    gap: 7px;
                    color: #e7f0f7;
                    font-size: .76rem;
                    font-weight: 700;
                }

                .home-consultation-cta__proof i {
                    color: #45d483;
                }

                .home-consultation-cta__contacts {
                    position: relative;
                    z-index: 2;
                    display: grid;
                    grid-template-columns: repeat(2, minmax(0, 1fr));
                    gap: 12px;
                }

                .home-consultation-cta__contact {
                    position: relative;
                    display: grid;
                    grid-template-columns: 44px minmax(0, 1fr) 18px;
                    gap: 11px;
                    align-items: center;
                    min-height: 92px;
                    padding: 16px;
                    overflow: hidden;
                    border: 1px solid rgba(255, 255, 255, .2);
                    border-radius: 17px;
                    color: #fff;
                    text-decoration: none;
                    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
                }

                .home-consultation-cta__contact--primary {
                    border-color: rgba(47, 137, 255, .72);
                    background: linear-gradient(135deg, #1976ed, #075fcf);
                    box-shadow: 0 13px 28px rgba(7, 95, 207, .28);
                }

                .home-consultation-cta__contact--secondary {
                    background: rgba(255, 255, 255, .09);
                }

                .home-consultation-cta__contact--email {
                    grid-column: 1 / 3;
                    min-height: 76px;
                    border-color: rgba(248, 179, 26, .42);
                    background: rgba(248, 179, 26, .08);
                }

                .home-consultation-cta__contact:hover {
                    border-color: rgba(255, 255, 255, .52);
                    color: #fff;
                    transform: translateY(-3px);
                    box-shadow: 0 18px 35px rgba(1, 20, 38, .24);
                }

                .home-consultation-cta__icon {
                    display: grid;
                    width: 44px;
                    height: 44px;
                    place-items: center;
                    border-radius: 13px;
                    background: rgba(255, 255, 255, .16);
                    color: #fff;
                    font-size: 1rem;
                }

                .home-consultation-cta__contact--email .home-consultation-cta__icon {
                    color: #f8b31a;
                }

                .home-consultation-cta__contact small,
                .home-consultation-cta__contact strong {
                    display: block;
                    min-width: 0;
                    color: inherit;
                }

                .home-consultation-cta__contact small {
                    margin-bottom: 3px;
                    color: #c8d9e8;
                    font-size: .66rem;
                    font-weight: 750;
                    letter-spacing: .05em;
                    text-transform: uppercase;
                }

                .home-consultation-cta__contact--primary small {
                    color: #dceeff;
                }

                .home-consultation-cta__contact strong {
                    overflow-wrap: normal;
                    white-space: nowrap;
                    font-size: clamp(.8rem, 1.05vw, .91rem);
                    font-weight: 800;
                    line-height: 1.3;
                }

                .home-consultation-cta__arrow {
                    color: rgba(255, 255, 255, .72);
                    font-size: .78rem;
                    transition: transform .2s ease;
                }

                .home-consultation-cta__contact:hover .home-consultation-cta__arrow {
                    transform: translateX(3px);
                }

                @media (max-width: 991.98px) {
                    .psp-home .home-consultation-cta .outer-box {
                        grid-template-columns: 1fr !important;
                        text-align: left;
                    }

                    .home-consultation-cta__copy {
                        max-width: 760px;
                    }

                    .home-consultation-cta__contacts {
                        width: 100%;
                        max-width: 680px;
                    }
                }

                @media (max-width: 575.98px) {
                    .psp-home .home-consultation-cta .outer-box {
                        padding: 28px 19px !important;
                        border-radius: 21px !important;
                    }

                    .home-consultation-cta__contacts {
                        grid-template-columns: 1fr;
                    }

                    .home-consultation-cta__contact--email {
                        grid-column: auto;
                    }
                }

/* Minimal cosmetics */
                #faqs .cap {
                    max-width: 900px;
                    margin: 0 auto 10px
                }

                #faqs .sub-title {
                    display: inline-block;
                    padding: .35rem .7rem;
                    border-radius: 999px;
                    background: #eef5ff;
                    color: #0b5aa2;
                    font-weight: 600;
                    font-size: .9rem
                }

                #faqs .h-title {
                    margin: .35rem 0 .25rem;
                    font-weight: 800;
                    color: #0f172a
                }

                #faqs .lead {
                    color: #475569;
                    margin: 0
                }

                /* Accordion look */
                #faqs .accordion-item {
                    border: 1px solid #e7edf3;
                    border-radius: 14px !important;
                    overflow: hidden;
                    background: #fff
                }

                #faqs .accordion-item+.accordion-item {
                    margin-top: .6rem
                }

                #faqs .accordion-button {
                    padding: 1rem 1.1rem;
                    font-weight: 600;
                    color: #0f172a;
                    box-shadow: none
                }

                #faqs .accordion-button:not(.collapsed) {
                    background: #f7fbff;
                    color: #0b5aa2
                }

                #faqs .accordion-button::after {
                    filter: grayscale(1);
                    opacity: .8
                }

                #faqs .accordion-body {
                    padding: 1rem 1.1rem;
                    color: #334155;
                    line-height: 1.6
                }

/* Single-slide hero: rendered as a plain block instead of a Swiper. Mirrors the layout
   swiper-wrapper/swiper-slide would have produced for one full-width slide. */
.psp-hero-static { display: block; width: 100%; }
.psp-hero-static__slide { display: block; width: 100%; flex-shrink: 0; }
