.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================================================
   PRAYAS SERVICES — GLOBAL DESIGN SYSTEM
   Paste into Elementor Site Settings > Custom CSS
   OR Appearance > Customize > Additional CSS
   ========================================================= */

:root {
    --ps-red: #ed1c24;
    --ps-red-dark: #c81219;
    --ps-black: #0d0d0f;
    --ps-charcoal: #171719;
    --ps-dark-grey: #29292c;
    --ps-grey: #707075;
    --ps-light-grey: #ececee;
    --ps-offwhite: #f7f7f5;
    --ps-white: #ffffff;

    --ps-radius-sm: 12px;
    --ps-radius-md: 20px;
    --ps-radius-lg: 30px;

    --ps-shadow:
        0 18px 50px rgba(0,0,0,.08);

    --ps-shadow-dark:
        0 25px 70px rgba(0,0,0,.22);

    --ps-container: 1240px;
}

/* ---------- RESET ---------- */

.ps-page,
.ps-page * {
    box-sizing: border-box;
}

.ps-page {
    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--ps-black);
    line-height: 1.65;
    overflow: hidden;
}

.ps-page img {
    max-width: 100%;
    display: block;
}

.ps-page a {
    text-decoration: none;
}

.ps-container {
    width: min(
        calc(100% - 40px),
        var(--ps-container)
    );
    margin: 0 auto;
}

/* ---------- TYPOGRAPHY ---------- */

.ps-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--ps-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ps-eyebrow:before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--ps-red);
}

.ps-page h1,
.ps-page h2,
.ps-page h3 {
    margin-top: 0;
    color: var(--ps-black);
    letter-spacing: -.035em;
    line-height: 1.08;
}

.ps-page h1 {
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 800;
}

.ps-page h2 {
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 800;
}

.ps-page h3 {
    font-size: 22px;
    font-weight: 750;
}

.ps-lead {
    font-size: clamp(18px, 1.7vw, 21px);
    line-height: 1.7;
    color: #5c5c61;
}

.ps-text-muted {
    color: var(--ps-grey);
}

/* ---------- SECTIONS ---------- */

.ps-section {
    padding: 110px 0;
}

.ps-section-grey {
    background: var(--ps-offwhite);
}

.ps-section-dark {
    background: var(--ps-black);
    color: white;
}

.ps-section-dark h2,
.ps-section-dark h3 {
    color: white;
}

/* ---------- BUTTONS ---------- */

.ps-btn {
    min-height: 56px;
    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 750;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.ps-btn:hover {
    transform: translateY(-2px);
}

.ps-btn-primary {
    background: var(--ps-red);
    color: white !important;
    box-shadow:
        0 10px 30px rgba(237,28,36,.27);
}

.ps-btn-primary:hover {
    background: var(--ps-red-dark);
}

.ps-btn-dark {
    background: var(--ps-black);
    color: white !important;
}

.ps-btn-outline {
    border: 1px solid rgba(255,255,255,.26);
    color: white !important;
}

/* ---------- LAYOUT ---------- */

.ps-grid-2 {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 70px;
    align-items: center;
}

.ps-grid-3 {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
}

.ps-grid-4 {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 20px;
}

/* ---------- CARDS ---------- */

.ps-card {
    background: white;
    border: 1px solid #e9e9eb;
    border-radius: var(--ps-radius-md);
    padding: 30px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.ps-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ps-shadow);
    border-color: transparent;
}

.ps-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(237,28,36,.09);
    color: var(--ps-red);

    font-weight: 800;
    margin-bottom: 30px;
}

/* ---------- SECTION HEADER ---------- */

.ps-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.ps-heading p {
    max-width: 680px;
}

/* ---------- STAT ---------- */

.ps-stat-value {
    font-size: clamp(38px,5vw,64px);
    font-weight: 850;
    line-height: 1;
    color: white;
    letter-spacing: -.05em;
}

.ps-stat-label {
    margin-top: 12px;
    color: #aaa;
    font-size: 14px;
}

/* ---------- RESPONSIVE ---------- */

@media(max-width: 900px) {

    .ps-section {
        padding: 78px 0;
    }

    .ps-grid-2,
    .ps-grid-3,
    .ps-grid-4 {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ps-grid-4 {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }
}

@media(max-width: 600px) {

    .ps-container {
        width: min(calc(100% - 30px), var(--ps-container));
    }

    .ps-section {
        padding: 62px 0;
    }

    .ps-grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .ps-btn {
        width: 100%;
    }
}

/* ============================================================
   PRAYAS SERVICES
   HEADER + FOOTER
============================================================ */

:root {
    --prayas-red: #ed1c24;
    --prayas-red-hover: #cb151c;

    --prayas-black: #0c0c0e;
    --prayas-dark: #151517;
    --prayas-border: #e7e7e9;

    --prayas-white: #ffffff;
    --prayas-grey: #747478;
    --prayas-light: #f6f6f5;

    --prayas-container: 1240px;
}


/* ============================================================
   HEADER
============================================================ */

.prayas-header {
    position: relative;
    z-index: 9999;

    width: 100%;

    background:
        rgba(255,255,255,.96);

    border-bottom:
        1px solid rgba(0,0,0,.07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;
}


/* Optional:
   Add class "prayas-sticky-header"
   to Elementor parent if you want sticky */

.prayas-header {
    position: sticky;
    top: 0;
}


.prayas-header-inner {
    width:
        min(
            calc(100% - 40px),
            var(--prayas-container)
        );

    height: 82px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 32px;
}


/* LOGO */

.prayas-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.prayas-logo img {
    display: block;

    width: 128px;
    max-height: 64px;

    object-fit: contain;
}


/* ============================================================
   DESKTOP NAV
============================================================ */

.prayas-desktop-nav {
    display: flex;
    align-items: center;

    gap: 5px;

    margin-left: auto;
}

.prayas-desktop-nav > a,
.prayas-dropdown-trigger {
    min-height: 46px;

    padding: 0 13px;

    display: flex;
    align-items: center;
    gap: 5px;

    color: #29292d;

    text-decoration: none;

    font-size: 14px;
    font-weight: 650;

    border-radius: 9px;

    transition:
        color .2s ease,
        background .2s ease;
}

.prayas-desktop-nav > a:hover,
.prayas-dropdown-trigger:hover {
    color: var(--prayas-red);

    background:
        rgba(237,28,36,.055);
}


/* ============================================================
   DROPDOWN
============================================================ */

.prayas-nav-dropdown {
    position: relative;
}

.prayas-dropdown-trigger svg {
    transition:
        transform .2s ease;
}

.prayas-nav-dropdown:hover
.prayas-dropdown-trigger svg {
    transform: rotate(180deg);
}


/* invisible hover bridge */

.prayas-nav-dropdown:after {
    content: "";

    position: absolute;

    top: 44px;
    left: 0;

    width: 100%;
    height: 20px;
}


.prayas-dropdown-menu {
    position: absolute;

    top: calc(100% + 13px);
    left: 50%;

    width: 345px;

    transform:
        translateX(-50%)
        translateY(8px);

    padding: 10px;

    background: white;

    border:
        1px solid rgba(0,0,0,.07);

    border-radius: 18px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.15);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}


.prayas-nav-dropdown:hover
.prayas-dropdown-menu {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


.prayas-dropdown-menu > a {
    display: block;

    padding: 14px 15px;

    text-decoration: none;

    border-radius: 11px;

    transition:
        background .2s ease;
}

.prayas-dropdown-menu > a:hover {
    background:
        #f6f6f6;
}


.prayas-dropdown-menu span {
    display: block;

    color: var(--prayas-black);

    font-size: 14px;
    font-weight: 700;
}


.prayas-dropdown-menu small {
    display: block;

    margin-top: 3px;

    color: var(--prayas-grey);

    font-size: 11px;
    line-height: 1.5;
}


/* ============================================================
   HEADER PHONE
============================================================ */

.prayas-header-contact {
    margin-left: 7px;
}


.prayas-header-phone {
    height: 52px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    gap: 11px;

    background: var(--prayas-red);

    color: white !important;

    text-decoration: none;

    border-radius: 999px;

    box-shadow:
        0 7px 22px rgba(237,28,36,.22);

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


.prayas-header-phone:hover {
    background:
        var(--prayas-red-hover);

    transform:
        translateY(-1px);

    box-shadow:
        0 11px 26px rgba(237,28,36,.28);
}


.prayas-phone-icon {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.14);

    border-radius: 50%;
}


.prayas-phone-copy {
    display: flex;
    flex-direction: column;

    line-height: 1.15;
}


.prayas-phone-copy small {
    margin-bottom: 3px;

    color:
        rgba(255,255,255,.74);

    font-size: 9px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .08em;
}


.prayas-phone-copy strong {
    font-size: 13px;
    font-weight: 750;
}


/* ============================================================
   MOBILE MENU
============================================================ */

.prayas-menu-checkbox,
.prayas-mobile-toggle,
.prayas-mobile-menu {
    display: none;
}


/* ============================================================
   FOOTER
============================================================ */

.prayas-footer {
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    background: var(--prayas-black);

    color: white;
}


.prayas-footer-container {
    width:
        min(
            calc(100% - 40px),
            var(--prayas-container)
        );

    margin: 0 auto;
}


/* MAIN AREA */

.prayas-footer-main {
    padding: 85px 0 75px;
}


.prayas-footer-grid {
    display: grid;

    grid-template-columns:
        1.45fr .85fr .75fr 1.1fr;

    gap: 65px;
}


/* BRAND */

.prayas-footer-logo {
    display: inline-block;

    margin-bottom: 24px;
}

.prayas-footer-logo img {
    display: block;

    width: 135px;
    max-height: 72px;

    object-fit: contain;
}


.prayas-footer-brand p {
    max-width: 350px;

    margin:
        0 0 25px;

    color: #99999e;

    font-size: 14px;
    line-height: 1.75;
}


.prayas-footer-tagline {
    color: white;

    font-size: 15px;
    font-weight: 750;
}


/* FOOTER COLUMNS */

.prayas-footer-column h3 {
    margin:
        0 0 24px;

    color: white;

    font-size: 13px;
    font-weight: 750;

    letter-spacing: .08em;
    text-transform: uppercase;
}


.prayas-footer-column nav {
    display: flex;
    flex-direction: column;

    gap: 13px;
}


.prayas-footer-column nav a {
    width: fit-content;

    color: #9a9a9f;

    font-size: 14px;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.prayas-footer-column nav a:hover {
    color: white;

    transform:
        translateX(3px);
}


/* CONTACT */

.prayas-footer-phone {
    display: block;

    margin-bottom: 18px;

    color: white !important;

    text-decoration: none;
}


.prayas-footer-phone small,
.prayas-footer-address small {
    display: block;

    margin-bottom: 7px;

    color: #77777d;

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: .1em;
}


.prayas-footer-phone strong {
    font-size: 21px;
    font-weight: 750;
}


.prayas-footer-email {
    display: inline-block;

    color: #b2b2b6;

    text-decoration: none;

    font-size: 13px;

    border-bottom:
        1px solid #3a3a3d;

    padding-bottom: 3px;
}


.prayas-footer-email:hover {
    color: white;

    border-color:
        var(--prayas-red);
}


.prayas-footer-address {
    margin-top: 28px;
}


.prayas-footer-address p {
    margin: 0;

    color: #949499;

    font-size: 13px;
    line-height: 1.7;
}


/* ============================================================
   FOOTER CTA BAR
============================================================ */

.prayas-footer-cta {
    border-top:
        1px solid rgba(255,255,255,.08);

    border-bottom:
        1px solid rgba(255,255,255,.08);
}


.prayas-footer-cta-inner {
    min-height: 110px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


.prayas-footer-cta-inner > div {
    display: flex;
    flex-direction: column;
}


.prayas-footer-cta-inner small {
    margin-bottom: 5px;

    color: #77777d;

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: .08em;
}


.prayas-footer-cta-inner strong {
    color: white;

    font-size: 19px;
    font-weight: 650;
}


.prayas-footer-cta-inner > a {
    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    gap: 18px;

    background: var(--prayas-red);

    color: white !important;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    border-radius: 999px;

    transition:
        background .2s ease,
        transform .2s ease;
}


.prayas-footer-cta-inner > a:hover {
    background:
        var(--prayas-red-hover);

    transform:
        translateY(-2px);
}


/* ============================================================
   FOOTER BOTTOM
============================================================ */

.prayas-footer-bottom {
    padding: 23px 0;
}


.prayas-footer-bottom-inner {
    display: flex;
    justify-content: space-between;

    gap: 25px;

    color: #646469;

    font-size: 11px;
}


/* ============================================================
   TABLET
============================================================ */

@media
(max-width: 1100px) {

    .prayas-header-inner {
        gap: 19px;
    }

    .prayas-desktop-nav {
        gap: 0;
    }

    .prayas-desktop-nav > a,
    .prayas-dropdown-trigger {
        padding:
            0 8px;

        font-size:
            13px;
    }

    .prayas-phone-copy small {
        display: none;
    }

    .prayas-header-phone {
        padding:
            0 14px;
    }

    .prayas-footer-grid {
        grid-template-columns:
            1.4fr 1fr 1fr;

        gap: 50px;
    }

    .prayas-footer-contact {
        grid-column:
            2 / 4;
    }
}


/* ============================================================
   MOBILE HEADER
============================================================ */

@media
(max-width: 850px) {

    .prayas-header-inner {
        height: 72px;
    }

    .prayas-logo img {
        width: 108px;
        max-height: 56px;
    }

    .prayas-desktop-nav,
    .prayas-header-contact {
        display: none;
    }


    /* MENU BUTTON */

    .prayas-mobile-toggle {
        width: 45px;
        height: 45px;

        margin-left: auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        cursor: pointer;

        background: #f4f4f4;

        border-radius: 50%;

        position: relative;
        z-index: 10002;
    }


    .prayas-mobile-toggle span {
        width: 18px;
        height: 1.5px;

        display: block;

        background:
            var(--prayas-black);

        transition:
            transform .25s ease,
            opacity .2s ease;
    }


    /* MOBILE MENU */

    .prayas-mobile-menu {
        display: block;

        position: fixed;

        z-index: 10000;

        top: 72px;
        left: 0;
        right: 0;

        height:
            calc(100vh - 72px);

        height:
            calc(100dvh - 72px);

        background:
            rgba(255,255,255,.99);

        visibility: hidden;
        opacity: 0;

        transform:
            translateY(-12px);

        pointer-events: none;

        overflow-y: auto;

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;
    }


    .prayas-mobile-menu-inner {
        width:
            min(
                calc(100% - 34px),
                600px
            );

        margin: 0 auto;

        padding:
            32px 0 45px;
    }


    .prayas-mobile-menu nav {
        display: flex;
        flex-direction: column;
    }


    .prayas-mobile-menu nav a {
        padding:
            18px 3px;

        border-bottom:
            1px solid #e9e9eb;

        color:
            var(--prayas-black);

        text-decoration: none;

        font-size:
            21px;

        font-weight:
            680;

        letter-spacing:
            -.02em;
    }


    /* OPEN */

    .prayas-menu-checkbox:checked
    ~ .prayas-mobile-menu {
        visibility: visible;
        opacity: 1;

        transform:
            translateY(0);

        pointer-events: auto;
    }


    /* ANIMATE HAMBURGER */

    .prayas-menu-checkbox:checked
    + .prayas-mobile-toggle span:nth-child(1) {
        transform:
            translateY(6.5px)
            rotate(45deg);
    }

    .prayas-menu-checkbox:checked
    + .prayas-mobile-toggle span:nth-child(2) {
        opacity: 0;
    }

    .prayas-menu-checkbox:checked
    + .prayas-mobile-toggle span:nth-child(3) {
        transform:
            translateY(-6.5px)
            rotate(-45deg);
    }


    /* MOBILE CONTACT */

    .prayas-mobile-contact {
        display: block;

        margin-top: 35px;

        padding: 25px;

        background:
            var(--prayas-black);

        border-radius: 20px;
    }


    .prayas-mobile-contact > span {
        display: block;

        margin-bottom: 18px;

        color: #999;

        font-size: 13px;
    }


    .prayas-mobile-call {
        min-height: 55px;

        padding:
            0 18px;

        display: flex;
        align-items: center;
        justify-content: center;

        background:
            var(--prayas-red);

        border-radius:
            999px;

        color:
            white !important;

        text-decoration: none;

        font-size:
            15px;

        font-weight:
            750;
    }


    .prayas-mobile-email {
        display: block;

        padding-top:
            19px;

        color:
            #c3c3c5 !important;

        text-align:
            center;

        text-decoration:
            none;

        font-size:
            13px;
    }
}


/* ============================================================
   MOBILE FOOTER
============================================================ */

@media
(max-width: 767px) {

    .prayas-footer-main {
        padding:
            62px 0 50px;
    }


    .prayas-footer-container {
        width:
            calc(100% - 32px);
    }


    .prayas-footer-grid {
        grid-template-columns:
            1fr 1fr;

        gap:
            45px 25px;
    }


    .prayas-footer-brand {
        grid-column:
            1 / 3;
    }


    .prayas-footer-contact {
        grid-column:
            1 / 3;
    }


    .prayas-footer-brand p {
        max-width:
            520px;
    }


    .prayas-footer-cta-inner {
        min-height:
            auto;

        padding:
            30px 0;

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            21px;
    }


    .prayas-footer-cta-inner > a {
        width: 100%;

        justify-content:
            space-between;
    }


    .prayas-footer-bottom-inner {
        flex-direction:
            column;

        gap:
            7px;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media
(max-width: 460px) {

    .prayas-header-inner {
        width:
            calc(100% - 28px);
    }

    .prayas-footer-grid {
        grid-template-columns:
            1fr;
    }

    .prayas-footer-brand,
    .prayas-footer-contact {
        grid-column:
            auto;
    }

    .prayas-footer-column {
        padding-bottom:
            10px;
    }

    .prayas-footer-phone strong {
        font-size:
            23px;
    }
}/* End custom CSS */