/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/
/* Add your custom styles here */
.plumrus-glass-nav {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}
/* Desktop only - foggier glass than tablet/mobile get by default above */
@media (min-width: 1025px) {
    .plumrus-glass-nav {
        background: rgba(6, 49, 88, 0.55);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
    }
    .plumrus-glass-nav.is-scrolled {
        background: rgba(6, 49, 88, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
    }
}
/* Logo shrinks on scroll - base is 60% width (set by Elementor), this
   overrides it down to 42% once .is-scrolled is toggled by the header's
   scroll-listener script. Covers desktop (9b55416/74ae13e) and the
   separate mobile nav's logo widget (plumrus-mobile-logo). */
.plumrus-glass-nav .elementor-element-9b55416 img,
.plumrus-glass-nav .elementor-element-74ae13e img,
.plumrus-glass-nav .plumrus-mobile-logo img {
    transition: width 0.3s ease;
}
.plumrus-glass-nav.is-scrolled .elementor-element-9b55416 img,
.plumrus-glass-nav.is-scrolled .elementor-element-74ae13e img,
.plumrus-glass-nav.is-scrolled .plumrus-mobile-logo img {
    width: 42% !important;
}
 
/* ===================================================================
   Testimonials loop card (Home page)
   =================================================================== */
.test-card-loop {
    height: 100%;
}
.test-card-loop .elementor-widget-container {
    height: 100%;
}
.test-card-loop .elementor-image-box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
}
.test-card-loop .elementor-image-box-img {
    flex: 0 0 auto;
}
.test-card-loop .elementor-image-box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
}
.test-card-loop .elementor-image-box-title {
    flex: 1 1 auto;
}
.test-card-loop .elementor-image-box-description {
    margin-top: auto;
}
/* ===================================================================
   Home page hero banner
   =================================================================== */
/* Outer hero container - sized to match the source media's real aspect ratio
   (2000x909, 2.2:1) instead of a fixed 90vh, which was forcing heavy
   cropping on the video/images */
.plumrus-hero-section {
    position: relative !important;
    aspect-ratio: 2000 / 909;
    min-height: 0;
}
/* Carousel widget - fills the hero container completely */
.plumrus-hero-carousel {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
/* Elementor's internal carousel plumbing - forces full height through the chain */
.plumrus-hero-carousel .elementor-widget-container,
.plumrus-hero-carousel .e-n-carousel,
.plumrus-hero-carousel .swiper-wrapper,
.plumrus-hero-carousel .swiper-slide {
    height: 100%;
}
.plumrus-hero-carousel .swiper-pagination {
    position: absolute !important;
    top: auto !important;
    bottom: 25px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    text-align: center !important;
    transform: none !important;
    z-index: 3;
}
/* Each slide's own container - video/image background + 2 headings + button row.
   Targeted by element ID - add the plumrus-hero-slide class to all 4 later for
   long-term stability, then these can be swapped to a single class-based rule. */
.elementor-element-f57063f,
.elementor-element-37aafb0,
.elementor-element-5b7284a,
.elementor-element-cddafd7 {
    height: 100% !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 140px; /* clears the header: 50px nav offset + 86.41px nav height, plus buffer */
}
/* Keep subjects (faces/heads) in frame rather than cropping dead-center */
.elementor-element-f57063f img,
.elementor-element-f57063f video,
.elementor-element-37aafb0 img,
.elementor-element-37aafb0 video,
.elementor-element-5b7284a img,
.elementor-element-5b7284a video,
.elementor-element-cddafd7 img,
.elementor-element-cddafd7 video {
    object-fit: cover;
    object-position: center top;
}
/* Slides 3 & 4 - Elementor never wrote background-size/position for these two
   (unlike slide 2, which has them) - without background-size:cover, the browser
   renders the image at native 2000x909px instead of scaling to fit, which was
   the "zoomed in and cut off on the right" bug */
.elementor-element-5b7284a:not(.elementor-motion-effects-element-type-background),
.elementor-element-cddafd7:not(.elementor-motion-effects-element-type-background) {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
/* Video slide only - the photos already have this whitish fade baked into the
   image files themselves; the video needs it added since it's raw footage */
.elementor-element-f57063f {
    position: relative;
}
.elementor-element-f57063f::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.35) 40%,
        rgba(255, 255, 255, 0) 70%
    );
}
@media (max-width: 767px) {
    .plumrus-hero-section {
        aspect-ratio: auto;
        min-height: 550px;
    }
    .elementor-element-f57063f,
    .elementor-element-37aafb0,
    .elementor-element-5b7284a,
    .elementor-element-cddafd7 {
        padding-top: 0;
    }
}
@media (max-width: 767px) {
    .elementor-element-2f7cbc9 {
        grid-template-rows: none !important;
        height: auto !important;
        overflow: visible;
    }
}
.special-circle {
    aspect-ratio: 1 / 1;
    height: auto !important;
	min-height: 0 !important;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .special-circle {
        padding: 30px !important;
    }
    .special-circle .elementor-heading-title {
        font-size: 16px;
    }
}
/* ===================================================================
   Donor form (About Us page) - gform_1
   =================================================================== */
#gform_wrapper_1 .gform_required_legend {
    display: none !important;
}
#gform_wrapper_1 .gfield_label,
#gform_wrapper_1 label {
    color: #063158;
    font-weight: normal !important;
    font-size: 14px;
    margin-bottom: 4px;
}
#gform_wrapper_1 .ginput_container input {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
}
#gform_wrapper_1 .ginput_container input::placeholder {
    color: #9ca3af;
    font-weight: normal;
}
#gform_wrapper_1 .gfield {
    margin-bottom: 8px !important;
}
#gform_wrapper_1 .gform_fields {
    row-gap: 8px !important;
    column-gap: 16px !important;
}
#gform_wrapper_1 .gform_button,
#gform_wrapper_1 button[type="submit"],
#gform_wrapper_1 input[type="submit"] {
    background-color: #1397BB !important;
    border-color: #1397BB !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-weight: 500 !important;
    padding: 14px 32px !important;
    width: 100%;
    transition: background-color 0.3s ease;
}
#gform_wrapper_1 .gform_button:hover,
#gform_wrapper_1 button[type="submit"]:hover,
#gform_wrapper_1 input[type="submit"]:hover {
    background-color: #A0CE4E !important;
    border-color: #A0CE4E !important;
}
/* ===================================================================
   Enquiry form (Compassion Services page) - gform_2
   =================================================================== */
#gform_wrapper_2 .gform_required_legend {
    display: none !important;
}
#gform_wrapper_2 .gfield_label,
#gform_wrapper_2 label {
    color: #ffffff;
    font-weight: normal !important;
    font-size: 14px;
    margin-bottom: 4px;
}
#gform_wrapper_2 .ginput_container input,
#gform_wrapper_2 .ginput_container textarea {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
    background-color: #ffffff;
}
#gform_wrapper_2 .ginput_container textarea {
    min-height: 140px;
    resize: vertical;
}
#gform_wrapper_2 .ginput_container input::placeholder,
#gform_wrapper_2 .ginput_container textarea::placeholder {
    color: #9ca3af;
    font-weight: normal;
}
#gform_wrapper_2 .gfield {
    margin-bottom: 8px !important;
}
#gform_wrapper_2 .gform_fields {
    row-gap: 8px !important;
    column-gap: 16px !important;
}
#gform_wrapper_2 .gform_button,
#gform_wrapper_2 button[type="submit"],
#gform_wrapper_2 input[type="submit"] {
    background-color: #1397BB !important;
    border-color: #1397BB !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-weight: 500 !important;
    padding: 14px 32px !important;
    width: 100%;
    transition: background-color 0.3s ease;
}
#gform_wrapper_2 .gform_button:hover,
#gform_wrapper_2 button[type="submit"]:hover,
#gform_wrapper_2 input[type="submit"]:hover {
    background-color: #A0CE4E !important;
    border-color: #A0CE4E !important;
}
/* Contact Us page override - navy labels instead of white, since this page has a white background */
body.page-id-722 #gform_wrapper_2 .gfield_label,
body.page-id-722 #gform_wrapper_2 label {
    color: #063158 !important;
}
/* ===================================================================
   Subscribe form (Footer) - gform_3
   =================================================================== */
#gform_wrapper_3 .gform_required_legend {
    display: none !important;
}
#gform_wrapper_3 .gfield--width-half {
    width: auto !important;
}
#gform_wrapper_3 form {
    display: flex;
    align-items: stretch;
}
#gform_wrapper_3 .gform_body {
    flex: 1;
}
#gform_wrapper_3 .gfield {
    margin: 0 !important;
}
#gform_wrapper_3 .ginput_container input {
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 14px 20px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
#gform_wrapper_3 .ginput_container input::placeholder {
    color: #9ca3af;
}
#gform_wrapper_3 .gform_footer {
    margin: 0 0 0 -24px !important;
    padding: 0 !important;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
#gform_wrapper_3 .gform_button,
#gform_wrapper_3 button[type="submit"],
#gform_wrapper_3 input[type="submit"] {
    background-color: #1397BB !important;
    border-color: #1397BB !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-weight: 500 !important;
    padding: 14px 28px !important;
    height: 100%;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}
#gform_wrapper_3 .gform_button:hover,
#gform_wrapper_3 button[type="submit"]:hover,
#gform_wrapper_3 input[type="submit"]:hover {
    background-color: #A0CE4E !important;
    border-color: #A0CE4E !important;
}
#gform_wrapper_4 .gform_required_legend {
    display: none !important;
}
#gform_wrapper_4 .gfield_label,
#gform_wrapper_4 label {
    color: #063158;
    font-weight: normal !important;
    font-size: 14px;
    margin-bottom: 4px;
}
#gform_wrapper_4 .ginput_container input {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    height: 44px;
    padding: 8px 14px;
    box-sizing: border-box;
}
#gform_wrapper_4 .ginput_container select {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    height: 44px;
    line-height: 1.4;
    padding: 8px 14px;
    box-sizing: border-box;
}
#gform_wrapper_4 .ginput_container input::placeholder {
    color: #9ca3af;
    font-weight: normal;
}
#gform_wrapper_4 .ginput_container_fileupload {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    height: 44px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
#gform_wrapper_4 .ginput_container_fileupload input[type="file"]::file-selector-button {
    background-color: #1397BB;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#gform_wrapper_4 .ginput_container_fileupload input[type="file"]::file-selector-button:hover {
    background-color: #A0CE4E;
}
#gform_wrapper_4 .gfield {
    margin-bottom: 8px !important;
}
#gform_wrapper_4 .gform_fields {
    row-gap: 8px !important;
    column-gap: 16px !important;
}
#gform_wrapper_4 .gform_button,
#gform_wrapper_4 button[type="submit"],
#gform_wrapper_4 input[type="submit"] {
    background-color: #1397BB !important;
    border-color: #1397BB !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-weight: 500 !important;
    padding: 14px 32px !important;
    width: 100%;
    transition: background-color 0.3s ease;
}
#gform_wrapper_4 .gform_button:hover,
#gform_wrapper_4 button[type="submit"]:hover,
#gform_wrapper_4 input[type="submit"]:hover {
    background-color: #A0CE4E !important;
    border-color: #A0CE4E !important;
}
 
/* ===================================================================
   Enquiry form w/ Service dropdown (Care Services + Contact Us) - gform_6
   =================================================================== */
#gform_wrapper_6 .gform_required_legend {
    display: none !important;
}
#gform_wrapper_6 .gfield_label,
#gform_wrapper_6 label {
    color: #ffffff;
    font-weight: normal !important;
    font-size: 14px;
    margin-bottom: 4px;
}
#gform_wrapper_6 .ginput_container input,
#gform_wrapper_6 .ginput_container textarea {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
    background-color: #ffffff;
}
#gform_wrapper_6 .ginput_container textarea {
    min-height: 140px;
    resize: vertical;
}
#gform_wrapper_6 .ginput_container input::placeholder,
#gform_wrapper_6 .ginput_container textarea::placeholder {
    color: #9ca3af;
    font-weight: normal;
}
/* Select Service dropdown - custom blue chevron, matches the design */
#gform_wrapper_6 .ginput_container select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: #ffffff;
    color: #374151;
    padding: 10px 36px 10px 14px;
    box-sizing: border-box;
    width: 100%;
    font-size: inherit;
    line-height: inherit;
    font-weight: normal;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231397BB' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}
/* Placeholder text stays grey until a real option is chosen - CSS-only, no JS needed */
#gform_wrapper_6 .ginput_container select:has(option[value=""]:checked) {
    color: #9ca3af;
}
#gform_wrapper_6 .gfield {
    margin-bottom: 8px !important;
}
#gform_wrapper_6 .gform_fields {
    row-gap: 8px !important;
    column-gap: 16px !important;
}
#gform_wrapper_6 .gform_button,
#gform_wrapper_6 button[type="submit"],
#gform_wrapper_6 input[type="submit"] {
    background-color: #1397BB !important;
    border-color: #1397BB !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-weight: 500 !important;
    padding: 14px 32px !important;
    width: 100%;
    transition: background-color 0.3s ease;
}
#gform_wrapper_6 .gform_button:hover,
#gform_wrapper_6 button[type="submit"]:hover,
#gform_wrapper_6 input[type="submit"]:hover {
    background-color: #A0CE4E !important;
    border-color: #A0CE4E !important;
}
/* Contact Us page override - navy labels instead of white, white background there */
body.page-id-722 #gform_wrapper_6 .gfield_label,
body.page-id-722 #gform_wrapper_6 label {
    color: #063158 !important;
}