/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.9.1784362378
Updated: 2026-07-18 12:12:58

*/

/* CUSTOM ABOUT RIGHT */

/* =========================================
ABOUT SECTION CREATIVE IMAGE DESIGN
========================================= */

.about-image-design {
    --about-navy: #0A103A;
    --about-gold: #DAA028;
    --about-white: #FFFFFF;

    position: relative !important;
    isolation: isolate;

    width: 100%;
    max-width: 610px;
    min-height: 590px;

    margin-left: auto;
    padding: 30px 28px 35px 38px;

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

    overflow: visible !important;
}


/* Allow all floating decorative elements */

.about-image-design,
.about-image-design > .e-con-inner,
.about-image-design .elementor-element,
.about-image-design__image,
.about-image-design__image .elementor-widget-container {
    overflow: visible !important;
}


/* =========================================
NAVY BACKGROUND SHAPE
========================================= */

.about-image-design::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;

    width: 66%;
    height: 76%;

    border-radius: 14px 14px 45px 14px;

    background:
        linear-gradient(
            145deg,
            #0A103A 0%,
            #151D55 100%
        );

    box-shadow: 0 24px 55px rgba(10, 16, 58, 0.16);
}


/* =========================================
OFFSET GOLD FRAME
========================================= */

.about-image-design::after {
    content: "";

    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: -2;

    width: calc(100% - 72px);
    height: calc(100% - 80px);

    border: 2px solid rgba(218, 160, 40, 0.85);
    border-radius: 15px 15px 38px 15px;

    pointer-events: none;
}


/* =========================================
MAIN IMAGE WIDGET
========================================= */

.about-image-design__image {
    position: relative !important;
    z-index: 2 !important;

    width: 100%;
}


/* Elementor image wrapper */

.about-image-design__image .elementor-widget-container {
    position: relative;

    width: 100%;

    border-radius: 14px 14px 42px 14px;

    background-color: #E9EBF1;

    box-shadow:
        0 26px 60px rgba(10, 16, 58, 0.20),
        0 8px 20px rgba(10, 16, 58, 0.10);
}


/* Actual image */

.about-image-design__image img {
    display: block!important;
    width: 100%;
    height: 520px!important;
    object-fit: cover;
    object-position: center;
    border-radius: 14px 14px 42px 14px!important;
    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}


/* Image overlay */

.about-image-design__image .elementor-widget-container::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    border-radius: 14px 14px 42px 14px;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(10, 16, 58, 0.26) 100%
        );

    pointer-events: none;
}


/* Image hover */

.about-image-design:hover
.about-image-design__image img {
    transform: scale(1.035);
}


/* =========================================
TOP GOLD CORNER
========================================= */

.about-image-design__image::before {
    content: "";

    position: absolute;
    top: -15px;
    right: -13px;
    z-index: 5;

    width: 74px;
    height: 74px;

    border-top: 5px solid var(--about-gold);
    border-right: 5px solid var(--about-gold);

    border-radius: 0 10px 0 0;

    pointer-events: none;
}


/* =========================================
DECORATIVE DOT PATTERN
========================================= */

.about-image-design__image::after {
    content: "";

    position: absolute;
    top: 75px;
    left: -25px;
    z-index: -1;

    width: 92px;
    height: 125px;

    opacity: 0.42;

    background-image:
        radial-gradient(
            circle,
            var(--about-gold) 2px,
            transparent 2.5px
        );

    background-size: 15px 15px;

    pointer-events: none;
}


/* =========================================
FLOATING INFORMATION CARD
========================================= */

.about-image-design .about-image-design__card {
    position: absolute !important;

    left: 0 !important;
    bottom: 72px !important;
    top: auto !important;
    right: auto !important;

    z-index: 50 !important;

    width: 315px !important;
    max-width: calc(100% - 20px);
    min-height: 108px;

    margin: 0 !important;
    padding: 18px !important;

    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;

    column-gap: 13px !important;
    row-gap: 3px !important;

    align-items: center !important;

    overflow: visible !important;

    border: 1px solid rgba(218, 160, 40, 0.38) !important;
    border-radius: 10px !important;

    background: rgba(255, 255, 255, 0.98) !important;

    box-shadow:
        0 22px 48px rgba(10, 16, 58, 0.20),
        0 6px 16px rgba(10, 16, 58, 0.10) !important;

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

    transform: none !important;
}


/* Elementor container width override */

.about-image-design .about-image-design__card.e-con {
    --width: 245px;

    flex: none !important;
}


/* Gold line above card */

.about-image-design .about-image-design__card::before {
    content: "";

    position: absolute;
    top: -1px;
    left: 18px;
    z-index: 2;

    width: 48px;
    height: 4px;

    border-radius: 0 0 3px 3px;

    background-color: var(--about-gold);
}


/* Gold circle */

.about-image-design .about-image-design__card::after {
    content: "";

    position: absolute;
    right: -13px;
    bottom: -13px;
    z-index: 2;

    width: 27px;
    height: 27px;

    border: 6px solid #FFFFFF;
    border-radius: 50%;

    background-color: var(--about-gold);

    box-shadow: 0 5px 12px rgba(10, 16, 58, 0.18);
}


/* =========================================
CARD ICON
========================================= */

.about-image-design__card-icon {
    position: relative !important;

    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;

    width: 48px !important;
    height: 48px !important;

    margin: 0 !important;

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

    border-radius: 8px;

    color: var(--about-gold);
    background-color: var(--about-navy);
}

.about-image-design__card-icon .elementor-widget-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-design__card-icon svg {
    width: 24px!important;
    height: 24px!important;
    fill: #ffffff!important;
}


/* =========================================
CARD TITLE
========================================= */

.about-image-design__card-title {
    grid-column: 2 !important;
    grid-row: 1 !important;

    width: 100% !important;

    margin: 0 !important;
}

.about-image-design__card-title .elementor-heading-title {
    margin: 0 !important;

    color: var(--about-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25em;
}


/* =========================================
CARD TEXT
========================================= */

.about-image-design__card-text {
    grid-column: 2 !important;
    grid-row: 2 !important;

    width: 100% !important;

    margin: 0 !important;
}

.about-image-design__card-text,
.about-image-design__card-text p {
    margin: 0 !important;

    color: rgba(10, 16, 58, 0.65);

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45em;
}


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

@media screen and (max-width: 1024px) {

    .about-image-design {
        max-width: 560px;
        min-height: 540px;

        padding: 27px 24px 31px 34px;
    }

    .about-image-design__image img {
        height: 475px;
    }

    .about-image-design .about-image-design__card {
        left: 0 !important;
        bottom: 55px !important;

        width: 225px !important;
    }

    .about-image-design .about-image-design__card.e-con {
        --width: 225px;
    }
}


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

@media screen and (max-width: 767px) {

    .about-image-design {
        max-width: 100%;
        min-height: auto;

        margin: 25px auto 0;
        padding: 23px 12px 70px 23px;
    }

    .about-image-design::before {
        width: 70%;
        height: 70%;

        border-radius: 11px 11px 30px 11px;
    }

    .about-image-design::after {
        right: 0;
        bottom: 45px;

        width: calc(100% - 42px);
        height: calc(100% - 66px);

        border-radius: 12px 12px 29px 12px;
    }

    .about-image-design__image
    .elementor-widget-container {
        border-radius: 11px 11px 30px 11px;
    }

    .about-image-design__image img {
        height: 390px;

        border-radius: 11px 11px 30px 11px;
    }

    .about-image-design__image
    .elementor-widget-container::after {
        border-radius: 11px 11px 30px 11px;
    }

    .about-image-design__image::before {
        top: -11px;
        right: -8px;

        width: 53px;
        height: 53px;

        border-top-width: 4px;
        border-right-width: 4px;
    }

    .about-image-design__image::after {
        top: 55px;
        left: -18px;

        width: 64px;
        height: 95px;

        background-size: 12px 12px;
    }

    .about-image-design .about-image-design__card {
        left: 5px !important;
        bottom: 18px !important;

        width: min(245px, calc(100% - 30px)) !important;
        min-height: 96px;

        padding: 15px !important;
    }

    .about-image-design .about-image-design__card.e-con {
        --width: min(245px, calc(100% - 30px));
    }
}


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

@media screen and (max-width: 420px) {

    .about-image-design {
        padding-left: 17px;
    }

    .about-image-design__image img {
        height: 330px;
    }

    .about-image-design .about-image-design__card {
        grid-template-columns: 43px minmax(0, 1fr) !important;
    }

    .about-image-design__card-icon {
        width: 43px !important;
        height: 43px !important;
    }

    .about-image-design__card-title
    .elementor-heading-title {
        font-size: 14px;
    }
}


/* =========================================
REDUCED MOTION
========================================= */

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

    .about-image-design__image img {
        transition: none;
    }

    .about-image-design:hover
    .about-image-design__image img {
        transform: none;
    }
}


/** Quick Links CSS**/
/* =========================================
FOOTER QUICK LINKS
ELEMENTOR ICON LIST
========================================= */

.footer-quick-links {
    --footer-navy: #0A103A;
    --footer-gold: #DAA028;
    --footer-cream: #FFF7E7;
}


/* Remove default list spacing */

.footer-quick-links
.elementor-icon-list-items {
    margin: 0 !important;
    padding: 0 !important;

    display: flex;
    flex-direction: column;
    gap: 5px;
}


/* Each list item */

.footer-quick-links
.elementor-icon-list-item {
    position: relative;

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;

    border-radius: 7px;
}


/* Link area */

.footer-quick-links
.elementor-icon-list-item > a {
    position: relative;

    width: 100%;

    padding: 11px 14px 11px 0px !important;

    display: flex !important;
    align-items: center !important;
    gap: 10px;

    border-radius: 7px;

    color: rgba(255, 255, 255, 0.78) !important;
    background-color: transparent;

    text-decoration: none !important;

    transition:
        color 0.28s ease,
        background-color 0.28s ease,
        padding-left 0.28s ease,
        transform 0.28s ease;
}


/* Gold line before link */

.footer-quick-links
.elementor-icon-list-item > a::before {
    content: "";

    position: absolute;
    left: 10px;
    top: 50%;

    width: 0;
    height: 2px;

    border-radius: 2px;

    background-color: var(--footer-gold);

    transform: translateY(-50%);

    transition:
        width 0.28s ease,
        opacity 0.28s ease;
}


/* Hover state */

.footer-quick-links
.elementor-icon-list-item > a:hover,
.footer-quick-links
.elementor-icon-list-item > a:focus {
    padding-left: 38px !important;

    color: var(--footer-gold) !important;
/*     background-color: var(--footer-cream); */
}


/* Reveal gold line */

.footer-quick-links
.elementor-icon-list-item > a:hover::before,
.footer-quick-links
.elementor-icon-list-item > a:focus::before {
    width: 16px;
}


/* Text */

.footer-quick-links
.elementor-icon-list-text {
    color: inherit !important;

    font-family: "Montserrat", sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4em !important;

    transition: color 0.28s ease;
}


/* Elementor icon */

.footer-quick-links
.elementor-icon-list-icon {
    flex: 0 0 auto;

    color: var(--footer-gold) !important;

    transition:
        color 0.28s ease,
        transform 0.28s ease;
}

.footer-quick-links
.elementor-icon-list-icon i,
.footer-quick-links
.elementor-icon-list-icon svg {
    color: inherit !important;
    fill: currentColor !important;
}


/* Move icon slightly on hover */

.footer-quick-links
.elementor-icon-list-item > a:hover
.elementor-icon-list-icon,
.footer-quick-links
.elementor-icon-list-item > a:focus
.elementor-icon-list-icon {
    color: var(--footer-navy) !important;

    transform: translateX(2px);
}


/* Current page */

.footer-quick-links
.elementor-icon-list-item.current-menu-item > a,
.footer-quick-links
.elementor-icon-list-item > a[aria-current="page"] {
    padding-left: 38px !important;

    color: var(--footer-navy) !important;
    background-color: var(--footer-cream);
}

.footer-quick-links
.elementor-icon-list-item.current-menu-item > a::before,
.footer-quick-links
.elementor-icon-list-item > a[aria-current="page"]::before {
    width: 16px;
}


/* Focus accessibility */

.footer-quick-links
.elementor-icon-list-item > a:focus-visible {
    outline: 2px solid var(--footer-gold);
    outline-offset: 2px;
}


/* Mobile */

@media screen and (max-width: 767px) {

    .footer-quick-links
    .elementor-icon-list-item > a {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .footer-quick-links
    .elementor-icon-list-text {
        font-size: 13px !important;
    }
}






/* =========================================
COMPANY META BOXES
========================================= */

.company-meta-boxes {
    --meta-green: #DAA028;
    --meta-green-soft: rgb(218 160 40 / 24%);
    --meta-dark: #252932;
    --meta-white: #FFFFFF;

    width: 170px;
    min-width: 170px;

    display: flex !important;
    flex-direction: column !important;
    gap: 12px;

    align-items: stretch !important;
}


/* =========================================
INDIVIDUAL BOX
========================================= */

.company-meta-box {
    position: relative !important;
    isolation: isolate;

    width: 100%;

    min-height: 100px!important;

    padding: 15px 16px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px;

    overflow: hidden!important;

    border: 1px solid #DAA028;
    border-radius: 14px!important;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(248, 251, 246, 0.96) 100%
        );

    box-shadow:
        0 10px 28px rgba(37, 41, 50, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease!important;
}


/* Small green accent */

.company-meta-box::before {
    content: "";

    position: absolute;
    top: 0;
    left: 16px;

    width: 38px;
    height: 3px;

    border-radius: 0 0 4px 4px;

    background-color: var(--meta-green);

    transition: width 0.3s ease;
}


/* Soft decorative glow */

.company-meta-box::after {
    content: "";

    position: absolute;
    right: -32px;
    bottom: -34px;
    z-index: -1;

    width: 82px;
    height: 82px;

    border-radius: 50%;

    background-color: var(--meta-green-soft);

    transition:
        width 0.35s ease,
        height 0.35s ease,
        right 0.35s ease,
        bottom 0.35s ease;
}


/* Hover */

.company-meta-box:hover {
    transform: translateY(-4px);

    border-color: #0a103a52;

    box-shadow:
        0 16px 34px rgba(37, 41, 50, 0.10);
}

.company-meta-box:hover::before {
    width: 68px;
}

.company-meta-box:hover::after {
    right: -18px;
    bottom: -20px;

    width: 96px;
    height: 96px;
}


/* =========================================
LABEL
========================================= */

.company-meta-box__label {
    width: 100% !important;

    margin: 0 !important;
}

.company-meta-box__label .elementor-heading-title {
    margin: 0 !important;

    color: var(--meta-green)!important;

    font-family: "Montserrat", sans-serif!important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


/* =========================================
VALUE
========================================= */

.company-meta-box__value {
    width: 100% !important;

    margin: 0 !important;
}

.company-meta-box__value,
.company-meta-box__value p {
    margin: 0 !important;

    color: var(--meta-dark);

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4em;

    overflow-wrap: anywhere;
}


/* =========================================
OPTIONAL SECOND BOX VARIATION
========================================= */

.company-meta-box:nth-child(2)::before {
    left: auto;
    right: 16px;
}


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

@media screen and (max-width: 1024px) {

    .company-meta-boxes {
        width: 155px;
        min-width: 155px;
    }

    .company-meta-box {
        padding: 14px !important;
    }
}


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

@media screen and (max-width: 767px) {

    .company-meta-boxes {
        width: 100%;
        min-width: 0;

        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .company-meta-box {
        min-height: 72px;
    }
}


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

@media screen and (max-width: 480px) {

    .company-meta-boxes {
        grid-template-columns: 1fr;
    }

    .company-meta-box__value,
    .company-meta-box__value p {
        font-size: 12px;
    }
}


/* =========================================
COMPANY PROFILE INFORMATION PANEL
========================================= */

.company-profile-panel {
    --profile-navy: #0A103A;
    --profile-gold: #DAA028;
    --profile-white: #FFFFFF;
    --profile-light: #F7F8FB;
    --profile-text: rgba(10, 16, 58, 0.67);

    position: relative !important;
    isolation: isolate;

    width: 100%;
    max-width: 1280px;

    margin-inline: auto;
    padding: 34px !important;

    display: grid !important;
/*     grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); */
    gap: 34px!important;

    align-items: stretch !important;

    overflow: hidden !important;

    border: 1px solid rgba(10, 16, 58, 0.08);
    border-radius: 18px!important;

    background:
        linear-gradient(
            145deg,
            #FFFFFF 0%,
            #F7F8FB 100%
        );

    box-shadow:
        0 0px 20px rgba(10, 16, 58, 0.10),
        0 6px 18px rgba(10, 16, 58, 0.05);
}


/* Gold top accent */

.company-profile-panel::before {
    content: "";

    position: absolute;
    top: 0;
    left: 34px;

    width: 82px;
    height: 4px;

    border-radius: 0 0 4px 4px;

    background-color: var(--profile-gold);
}


/* Decorative circle */

.company-profile-panel::after {
    content: "";

    position: absolute;
    right: -70px;
    bottom: -75px;
    z-index: -1;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background-color: rgba(218, 160, 40, 0.07);
}


/* =========================================
LEFT ACTION AREA
========================================= */

.company-profile-actions {
    position: relative;

    width: 100% !important;
    min-width: 0;

    padding: 4px 10px 4px 0 !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 16px;

    border-right: 1px solid rgba(10, 16, 58, 0.09);
}


/* Optional section heading */

.company-profile-actions::before {
    content: "Company Documents & Contact";

    display: block;

    margin-bottom: 2px;

    color: var(--profile-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35em;
}


/* Optional supporting text */

.company-profile-actions::after {
    content: "Download our company profile or speak directly with our team.";

    display: block;

    max-width: 430px;

    margin-bottom: 5px;

    color: var(--profile-text);

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65em;
}


/* =========================================
BUTTON ROW
========================================= */

.company-profile-actions
.company-action-buttons {
    width: 100%;

    display: flex !important;
    align-items: stretch !important;
    flex-wrap: wrap;
    gap: 13px;
}


/* Button widget */

.company-profile-actions
.company-action-btn {
    width: auto !important;

    margin: 0 !important;
}


/* Button */

.company-profile-actions
.company-action-btn
.elementor-button {
    position: relative;

    min-height: 58px;

    padding: 7px 7px 7px 21px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 17px;

    overflow: hidden;

    border-radius: 8px;

    font-family: "Montserrat", sans-serif !important;
    text-decoration: none !important;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Content wrapper */

.company-profile-actions
.company-action-btn
.elementor-button-content-wrapper {
    width: 100%;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 17px;
}


/* Text */

.company-profile-actions
.company-action-btn
.elementor-button-text {
    font-family: "Montserrat", sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.35em !important;

    white-space: nowrap;
}


/* Icon */

.company-profile-actions
.company-action-btn
.elementor-button-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    margin: 0 !important;

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

    border-radius: 6px;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        border-radius 0.3s ease;
}


/* =========================================
DOWNLOAD BUTTON
========================================= */

.company-profile-actions
.company-action-btn--download
.elementor-button {
    min-width: 250px;
	text-transform: uppercase;
    color: var(--profile-navy) !important;
    background-color: var(--profile-gold) !important;
    border: 1px solid var(--profile-gold) !important;
    box-shadow: 0 12px 26px rgba(218, 160, 40, 0.20);
}


.company-profile-actions
.company-action-btn--download
.elementor-button-icon {
    color: #FFFFFF !important;
    background-color: var(--profile-navy) !important;
}


.company-profile-actions
.company-action-btn--download
.elementor-button:hover {
    color: #FFFFFF !important;
    background-color: var(--profile-navy) !important;
    border-color: var(--profile-navy) !important;

    transform: translateY(-4px);

    box-shadow:
        0 18px 34px rgba(10, 16, 58, 0.21);
}


.company-profile-actions
.company-action-btn--download
.elementor-button:hover
.elementor-button-icon {
    color: var(--profile-navy) !important;
    background-color: var(--profile-gold) !important;

    border-radius: 50%;

    transform: translateY(2px);
}


/* =========================================
CALL BUTTON
========================================= */

.company-profile-actions
.company-action-btn--call
.elementor-button {
    min-width: 155px;
	text-transform: uppercase;
    color: var(--profile-navy) !important;
    background-color: #FFFFFF !important;
    border: 1px solid rgba(218, 160, 40, 0.75) !important;
    box-shadow: 0 10px 23px rgba(10, 16, 58, 0.07);
}


.company-profile-actions
.company-action-btn--call
.elementor-button-icon {
    color: var(--profile-gold) !important;
    background-color: var(--profile-navy) !important;
}


.company-profile-actions
.company-action-btn--call
.elementor-button:hover {
    color: var(--profile-navy) !important;
    background-color: var(--profile-gold) !important;
    border-color: var(--profile-gold) !important;

    transform: translateY(-4px);

    box-shadow:
        0 17px 34px rgba(218, 160, 40, 0.18);
}


.company-profile-actions
.company-action-btn--call
.elementor-button:hover
.elementor-button-icon {
    color: #FFFFFF !important;
    background-color: var(--profile-navy) !important;

    border-radius: 50%;

    transform: rotate(-8deg);
}


/* =========================================
RIGHT META AREA
========================================= */

.company-profile-panel
.company-meta-boxes {
    width: 100% !important;
    min-width: 0 !important;

    display: grid !important;
    grid-template-columns: 1fr;
    gap: 14px;

    align-content: center;
}


/* Meta box */

.company-profile-panel
.company-meta-box {
	display: none!important;
/*     position: relative !important;
    isolation: isolate;

    width: 100% !important;
    min-height: 86px;

    padding: 19px 21px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px;

    overflow: hidden !important;

    border: 1px solid rgba(218, 160, 40, 0.62);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #FFFFFF 0%,
            #FBFAF5 100%
        );

    box-shadow:
        0 11px 28px rgba(10, 16, 58, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease; */
}


/* Gold left bar */

.company-profile-panel
.company-meta-box::before {
    content: "";

    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;

    width: 4px;

    border-radius: 0 4px 4px 0;

    background-color: var(--profile-gold);

    transition:
        top 0.3s ease,
        bottom 0.3s ease;
}


/* Decorative circle */

.company-profile-panel
.company-meta-box::after {
    content: "";

    position: absolute;
    right: -28px;
    bottom: -30px;
    z-index: -1;

    width: 78px;
    height: 78px;

    border-radius: 50%;

    background-color: rgba(218, 160, 40, 0.12);

    transition:
        width 0.35s ease,
        height 0.35s ease,
        right 0.35s ease,
        bottom 0.35s ease;
}


/* Hover */

.company-profile-panel
.company-meta-box:hover {
    transform: translateX(5px);

    border-color: var(--profile-gold);

    box-shadow:
        0 16px 34px rgba(10, 16, 58, 0.11);
}


.company-profile-panel
.company-meta-box:hover::before {
    top: 9px;
    bottom: 9px;
}


.company-profile-panel
.company-meta-box:hover::after {
    right: -12px;
    bottom: -15px;

    width: 96px;
    height: 96px;
}


/* Label */

.company-profile-panel
.company-meta-box__label {
    margin: 0 !important;
}


.company-profile-panel
.company-meta-box__label
.elementor-heading-title {
    margin: 0 !important;

    color: var(--profile-gold);

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Value */

.company-profile-panel
.company-meta-box__value,
.company-profile-panel
.company-meta-box__value p {
    margin: 0 !important;

    color: var(--profile-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45em;

    overflow-wrap: anywhere;
}


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

@media screen and (max-width: 1024px) {

    .company-profile-panel {
        grid-template-columns: 1fr 1fr;
        gap: 24px;

        padding: 28px !important;
    }

    .company-profile-actions {
        padding-right: 20px !important;
    }

    .company-profile-actions
    .company-action-btn--download
    .elementor-button {
        min-width: 220px;
    }
}


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

@media screen and (max-width: 767px) {

    .company-profile-panel {
        grid-template-columns: 1fr;
        gap: 25px;

        padding: 24px 20px !important;
    }

    .company-profile-actions {
        padding: 0 0 24px !important;

        border-right: 0;
        border-bottom: 1px solid rgba(10, 16, 58, 0.09);
    }

    .company-profile-actions
    .company-action-buttons {
        width: 100%;

        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-profile-actions
    .company-action-btn {
        width: 100% !important;
    }

    .company-profile-actions
    .company-action-btn
    .elementor-button {
        width: 100%;

        min-width: 0;
    }
}


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

@media screen and (max-width: 520px) {

    .company-profile-panel {
        padding: 21px 16px !important;

        border-radius: 14px;
    }

    .company-profile-actions
    .company-action-buttons {
        grid-template-columns: 1fr;
    }

    .company-profile-actions
    .company-action-btn
    .elementor-button-text {
        font-size: 12px !important;
    }

    .company-profile-panel
    .company-meta-box {
        min-height: 80px;

        padding: 17px 18px !important;
    }
}


/* =========================================
REDUCED MOTION
========================================= */

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

    .company-profile-actions
    .company-action-btn
    .elementor-button,

    .company-profile-actions
    .company-action-btn
    .elementor-button-icon,

    .company-profile-panel
    .company-meta-box,

    .company-profile-panel
    .company-meta-box::before,

    .company-profile-panel
    .company-meta-box::after {
        transition: none;
    }

    .company-profile-actions
    .company-action-btn
    .elementor-button:hover,

    .company-profile-panel
    .company-meta-box:hover {
        transform: none;
    }
}



/* =========================================
INDUSTRIES SECTION
ICON + TITLE CARDS ONLY
========================================= */

.industries-section {
    --industry-navy: #0A103A;
    --industry-gold: #DAA028;
    --industry-white: #FFFFFF;
    --industry-light: #F7F8FB;

    position: relative;
    isolation: isolate;

    width: 100%;

    overflow: hidden;
}


/* =========================================
INDUSTRIES INTRO
========================================= */

.industries-intro {
    position: relative;

    width: 100% !important;
}


/* =========================================
INDUSTRIES GRID
========================================= */

.industries-grid {
    width: 100%;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;

    align-items: stretch !important;
}


/* =========================================
INDUSTRY ICON BOX WIDGET
========================================= */

.industries-grid .industry-card {
    position: relative !important;
    isolation: isolate;

    width: 100% !important;
    min-width: 0;
    min-height: 94px;
	padding: 15px;
    margin: 0 !important;

    overflow: hidden !important;

    border: 1px solid rgb(10 16 58 / 29%);
    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #FFFFFF 0%,
            #F7F8FB 100%
        );

    box-shadow:
        0 10px 25px rgba(10, 16, 58, 0.06);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
}


/* Gold bottom line */

.industries-grid .industry-card::before {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;

    width: 100%;
    height: 3px;

    background-color: var(--industry-gold);

    transform: scaleX(0);
    transform-origin: left center;

    transition: transform 0.4s ease;
}


/* Decorative circle */

.industries-grid .industry-card::after {
    content: "";

    position: absolute;
    right: -44px;
    bottom: -48px;
    z-index: 0;

    width: 105px;
    height: 105px;

    border-radius: 50%;

    background-color: rgba(218, 160, 40, 0.07);

    transition:
        width 0.4s ease,
        height 0.4s ease,
        right 0.4s ease,
        bottom 0.4s ease;
}


/* Card hover */

.industries-grid .industry-card:hover {
    transform: translateY(-7px);

    border-color: rgba(218, 160, 40, 0.48);

    background-color: #FFFFFF;

    box-shadow:
        0 20px 42px rgba(10, 16, 58, 0.12),
        0 5px 14px rgba(10, 16, 58, 0.06);
}

.industries-grid .industry-card:hover::before {
    transform: scaleX(1);
}

.industries-grid .industry-card:hover::after {
    right: -23px;
    bottom: -28px;

    width: 125px;
    height: 125px;
}


/* Elementor wrapper */

.industries-grid
.industry-card
.elementor-widget-container {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    padding: 18px 20px !important;
}


/* Icon Box wrapper */

.industries-grid
.industry-card
.elementor-icon-box-wrapper {
    width: 100%;
    height: 100%;

    display: flex !important;
    align-items: center !important;
    gap: 15px;

    text-align: left !important;
}


/* Icon wrapper */

.industries-grid
.industry-card
.elementor-icon-box-icon {
    flex: 0 0 auto;

    margin: 0 !important;
}


/* Icon space */

.industries-grid
.industry-card
.elementor-icon {
    width: 54px !important;
    height: 54px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(218, 160, 40, 0.34) !important;
    border-radius: 12px !important;

    color: var(--industry-gold) !important;
    background-color: var(--industry-navy) !important;

    box-shadow: 0 8px 18px rgba(10, 16, 58, 0.14);

    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-radius 0.35s ease,
        transform 0.35s ease;
}


/* SVG icon */

.industries-grid
.industry-card
.elementor-icon svg {
    width: 25px !important;
    height: 25px !important;

    fill: currentColor !important;
}


/* Font icon fallback */

.industries-grid
.industry-card
.elementor-icon i {
    color: inherit !important;

    font-size: 24px !important;
}


/* Icon hover */

.industries-grid
.industry-card:hover
.elementor-icon {
    color: var(--industry-navy) !important;
    background-color: var(--industry-gold) !important;

    border-radius: 50% !important;

    transform:
        rotate(-6deg)
        scale(1.07);
}


/* Content */

.industries-grid
.industry-card
.elementor-icon-box-content {
    flex: 1 1 auto;
    min-width: 0;

    text-align: left !important;
}


/* Industry title */

.industries-grid
.industry-card
.elementor-icon-box-title {
    margin: 0 !important;
}


.industries-grid
.industry-card
.elementor-icon-box-title,
.industries-grid
.industry-card
.elementor-icon-box-title a {
    color: var(--industry-navy) !important;

    font-family: "Montserrat", sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.35em !important;

    text-decoration: none !important;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.industries-grid
.industry-card:hover
.elementor-icon-box-title {
    transform: translateX(4px);
}


/* Ensure no description is displayed */

.industries-grid
.industry-card
.elementor-icon-box-description {
    display: none !important;
}


/* =========================================
INDIVIDUAL DETAILS
========================================= */

.industries-grid
.industry-card:nth-child(2)
.elementor-icon,
.industries-grid
.industry-card:nth-child(5)
.elementor-icon {
    border-radius: 50% !important;
}


.industries-grid
.industry-card:nth-child(2):hover
.elementor-icon,
.industries-grid
.industry-card:nth-child(5):hover
.elementor-icon {
    border-radius: 12px !important;
}


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

@media screen and (max-width: 1024px) {

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


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

@media screen and (max-width: 600px) {

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .industries-grid .industry-card {
        min-height: 84px;
    }

    .industries-grid
    .industry-card
    .elementor-widget-container {
        padding: 15px 17px !important;
    }

    .industries-grid
    .industry-card
    .elementor-icon {
        width: 48px !important;
        height: 48px !important;
    }

    .industries-grid
    .industry-card
    .elementor-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    .industries-grid
    .industry-card
    .elementor-icon-box-title,
    .industries-grid
    .industry-card
    .elementor-icon-box-title a {
        font-size: 15px !important;
    }
}



/* =========================================
WHY CHOOSE US SECTION
DARK CHECKLIST DESIGN
========================================= */

.why-section {
    --why-navy: #0A103A;
    --why-navy-light: #182154;
    --why-gold: #DAA028;
    --why-white: #FFFFFF;

    position: relative;
    isolation: isolate;

    width: 100%;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--why-navy) 0%,
            #11194A 100%
        );
}


/* Large decorative circle */

.why-section::before {
    content: "";

    position: absolute;
    top: -180px;
    right: -110px;
    z-index: 0;

    width: 440px;
    height: 440px;

    border: 65px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}


/* Gold background glow */

.why-section::after {
    content: "";

    position: absolute;
    left: 10%;
    bottom: -180px;
    z-index: 0;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(218, 160, 40, 0.13) 0%,
            transparent 70%
        );
}


/* =========================================
WHY HEADING AREA
========================================= */

.why-heading-area {
    position: relative;
    z-index: 2;

    width: 100% !important;
}


/* Heading text when using Elementor Heading */

.why-heading-area
.elementor-heading-title {
    color: var(--why-white) !important;
}


/* =========================================
WHY BENEFITS GRID
========================================= */

.why-list-grid {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;

    align-items: stretch !important;
}


/* =========================================
WHY ICON BOX
========================================= */

.why-list-grid .why-list-item {
    position: relative !important;
    width: 100% !important;
    min-width: 0;
    min-height: 78px;
	padding: 15px;
    margin: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 11px;
    background-color: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease;
}


/* Gold line */

.why-list-grid .why-list-item::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;

    width: 4px;

    background-color: var(--why-gold);

    transform: scaleY(0);
    transform-origin: top center;

    transition: transform 0.35s ease;
}


/* Hover */

.why-list-grid .why-list-item:hover {
    transform: translateX(7px);

    border-color: rgba(218, 160, 40, 0.42);

    background-color: rgba(255, 255, 255, 0.075);
}

.why-list-grid .why-list-item:hover::before {
    transform: scaleY(1);
}


/* Elementor wrapper */

.why-list-grid
.why-list-item
.elementor-widget-container {
    width: 100%;
    height: 100%;

    padding: 16px 18px !important;
}


/* Icon Box wrapper */

.why-list-grid
.why-list-item
.elementor-icon-box-wrapper {
    width: 100%;
    height: 100%;

    display: flex !important;
    align-items: center !important;
    gap: 14px;

    text-align: left !important;
}


/* Icon margin */

.why-list-grid
.why-list-item
.elementor-icon-box-icon {
    flex: 0 0 auto;

    margin: 0 !important;
}


/* Check icon circle */

.why-list-grid
.why-list-item
.elementor-icon {
    width: 42px !important;
    height: 42px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(218, 160, 40, 0.58) !important;
    border-radius: 50% !important;

    color: var(--why-navy) !important;
    background-color: var(--why-gold) !important;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);

    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease;
}


/* SVG */

.why-list-grid
.why-list-item
.elementor-icon svg {
    width: 19px !important;
    height: 19px !important;

    fill: currentColor !important;
}


/* Icon hover */

.why-list-grid
.why-list-item:hover
.elementor-icon {
    color: var(--why-gold) !important;
    background-color: var(--why-white) !important;

    transform:
        rotate(-8deg)
        scale(1.08);
}


/* Content */

.why-list-grid
.why-list-item
.elementor-icon-box-content {
    min-width: 0;

    text-align: left !important;
}


/* Benefit title */

.why-list-grid
.why-list-item
.elementor-icon-box-title {
    margin: 0 !important;
}


.why-list-grid
.why-list-item
.elementor-icon-box-title,
.why-list-grid
.why-list-item
.elementor-icon-box-title a {
    color: var(--why-white) !important;

    font-family: "Montserrat", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.4em !important;

    text-decoration: none !important;
}


/* Hide empty description */

.why-list-grid
.why-list-item
.elementor-icon-box-description {
    display: none !important;
}


/* =========================================
ALTERNATE MOTION
========================================= */

.why-list-grid
.why-list-item:nth-child(even):hover {
    transform: translateX(-7px);
}


.why-list-grid
.why-list-item:nth-child(even)::before {
    right: 0;
    left: auto;
}


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

@media screen and (max-width: 767px) {

    .why-list-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-list-grid
    .why-list-item:nth-child(even):hover,
    .why-list-grid
    .why-list-item:hover {
        transform: translateX(5px);
    }
}


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

@media screen and (max-width: 480px) {

    .why-list-grid .why-list-item {
        min-height: 70px;
    }

    .why-list-grid
    .why-list-item
    .elementor-widget-container {
        padding: 14px 15px !important;
    }

    .why-list-grid
    .why-list-item
    .elementor-icon {
        width: 38px !important;
        height: 38px !important;
    }

    .why-list-grid
    .why-list-item
    .elementor-icon-box-title,
    .why-list-grid
    .why-list-item
    .elementor-icon-box-title a {
        font-size: 14px !important;
    }
}


/* =========================================
REDUCED MOTION
========================================= */

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

    .industries-grid .industry-card,
    .industries-grid .industry-card::before,
    .industries-grid .industry-card::after,
    .industries-grid .industry-card .elementor-icon,
    .why-list-grid .why-list-item,
    .why-list-grid .why-list-item::before,
    .why-list-grid .why-list-item .elementor-icon {
        transition: none;
    }

    .industries-grid .industry-card:hover,
    .why-list-grid .why-list-item:hover,
    .why-list-grid .why-list-item:nth-child(even):hover {
        transform: none;
    }
}


/* =========================================
HOW IT WORKS TIMELINE
CLEAN CONNECTED VERSION
========================================= */

.process-timeline {
    --process-navy: #0A103A;
    --process-navy-light: #182154;
    --process-gold: #DAA028;
    --process-white: #FFFFFF;
    --process-light: #F7F8FB;
    --process-text: rgba(10, 16, 58, 0.67);

    position: relative !important;
    isolation: isolate;

    width: 100%;
    max-width: 1280px;

    margin-inline: auto;
    padding: 125px 0 115px !important;

    display: grid !important;
/*     grid-template-columns: repeat(5, minmax(0, 1fr)); */
    gap: 24px;

    align-items: stretch !important;

    overflow: visible !important;
}


/* =========================================
MAIN HORIZONTAL TIMELINE
========================================= */

.process-timeline::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 3%;
    right: 3%;
    z-index: 1;

    height: 4px;

    border-radius: 4px;

    background:
        linear-gradient(
            90deg,
            rgba(218, 160, 40, 0.18) 0%,
            #DAA028 12%,
            #DAA028 88%,
            rgba(218, 160, 40, 0.18) 100%
        );

    transform: translateY(-50%);

    box-shadow: 0 4px 12px rgba(218, 160, 40, 0.18);
}


/* Remove moving white highlight */

.process-timeline::after {
    display: none !important;
    content: none !important;
    animation: none !important;
}

/* =========================================
PROCESS STEP CARD
========================================= */

.process-step {
    position: relative !important;
    z-index: 5;

    min-width: 0;
    min-height: 255px;

    margin: 0 !important;
    padding: 27px 22px 24px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    overflow: visible !important;

    border: 1px solid rgba(10, 16, 58, 0.09);
    border-radius: 14px!important;

    background:
        linear-gradient(
            145deg,
            #FFFFFF 0%,
            #F7F8FB 100%
        );

    box-shadow:
        0 16px 36px rgba(10, 16, 58, 0.09),
        0 5px 13px rgba(10, 16, 58, 0.05);

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


/* Odd cards above timeline */

.process-step:nth-child(odd) {
    transform: translateY(-88px);
}


/* Even cards below timeline */

.process-step:nth-child(even) {
    transform: translateY(88px);
}


/* Gold top accent */

.process-step::before {
    content: "";

    position: absolute;
    top: 0;
    left: 22px;

    width: 48px;
    height: 4px;

    border-radius: 0 0 4px 4px;

    background-color: var(--process-gold);

    transition: width 0.35s ease;
}


/* Remove the large previous decorative circle */

/* =========================================
CLEAN CARD-TO-TIMELINE CONNECTORS
The connector starts from the card edge,
not from inside the icon or card content.
========================================= */

.process-step::after {
    content: "";

    position: absolute;
    left: 50%;
    z-index: -1;

    width: 18px;
    height: 92px;

    pointer-events: none;

    transform: translateX(-50%);

    transition: none;
}


/* Upper cards: connector begins below card */

.process-step:nth-child(odd)::after {
    top: 100%;
    bottom: auto;

    background:
        radial-gradient(
            circle at 50% calc(100% - 8px),
            var(--process-gold) 0 4px,
            #FFFFFF 4px 7px,
            var(--process-gold) 7px 9px,
            transparent 9px
        ),
        linear-gradient(
            180deg,
            var(--process-gold),
            rgba(218, 160, 40, 0.35)
        )
        center top / 2px calc(100% - 16px)
        no-repeat;
}


/* Lower cards: connector begins above card */

.process-step:nth-child(even)::after {
    top: auto;
    bottom: 100%;

    background:
        radial-gradient(
            circle at 50% 8px,
            var(--process-gold) 0 4px,
            #FFFFFF 4px 7px,
            var(--process-gold) 7px 9px,
            transparent 9px
        ),
        linear-gradient(
            0deg,
            var(--process-gold),
            rgba(218, 160, 40, 0.35)
        )
        center bottom / 2px calc(100% - 16px)
        no-repeat;
}

/* Hover */

.process-step:nth-child(odd):hover {
    transform: translateY(-99px);
}

.process-step:nth-child(even):hover {
    transform: translateY(77px);
}

.process-step:hover {
    border-color: rgba(218, 160, 40, 0.48);

    box-shadow:
        0 27px 55px rgba(10, 16, 58, 0.15),
        0 7px 18px rgba(10, 16, 58, 0.07);
}

.process-step:hover::before {
    width: 90px;
}

.process-step:hover::after {
    width: 18px;
    height: 92px;
}

/* =========================================
CONNECTOR LINES
========================================= */

/* Completely remove old icon-based connectors */

.process-step__icon::before,
.process-step__icon::after {
    display: none !important;
    content: none !important;
}




/* =========================================
STEP ICON
========================================= */

.process-step__icon {
    position: relative !important;
    z-index: 4;

    width: 58px !important;
    height: 58px !important;

    margin: 0 0 20px !important;

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

    border: 1px solid rgba(218, 160, 40, 0.45);
    border-radius: 13px;

    color: var(--process-gold);

    background:
        linear-gradient(
            145deg,
            var(--process-navy) 0%,
            var(--process-navy-light) 100%
        );

    box-shadow:
        0 10px 23px rgba(10, 16, 58, 0.18);

    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-radius 0.35s ease,
        transform 0.35s ease;
}


.process-step__icon .elementor-widget-container {
    width: 100%;
    height: 100%;

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


.process-step__icon svg {
    width: 26px !important;
    height: 26px !important;

    fill: #ffffff !important;
}


.process-step__icon i {
    color: inherit !important;

    font-size: 25px !important;
}


/* Icon hover */

.process-step:hover
.process-step__icon {
    color: var(--process-navy);
    background: var(--process-gold);

    border-radius: 50%;

    transform:
        rotate(-7deg)
        scale(1.08);
}


/* =========================================
STEP NUMBER
========================================= */

.process-step__number {
    position: absolute !important;
    top: 17px;
    right: 17px;

    width: auto !important;

    margin: 0 !important;
}


.process-step__number .elementor-heading-title {
    margin: 0 !important;

    color: var(--process-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 39px;
    font-weight: 800;
    line-height: 1em;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


.process-step:hover
.process-step__number .elementor-heading-title {
    color: var(--process-gold);

    transform:
        translateY(-3px)
        rotate(3deg);
}


/* =========================================
STEP TITLE
========================================= */

.process-step__title {
    position: relative;
    z-index: 3;

    width: 100% !important;
    min-height: 50px;

    margin: 0 0 12px !important;
}


.process-step__title .elementor-heading-title {
    margin: 0 !important;

    color: var(--process-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35em;
}


/* =========================================
STEP DESCRIPTION
========================================= */

.process-step__description {
    position: relative;
    z-index: 3;

    width: 100% !important;

    margin: 0 !important;
}


.process-step__description,
.process-step__description p {
    margin: 0 !important;

    color: var(--process-text);

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7em;
}


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

@media screen and (max-width: 1100px) {

    .process-timeline {
        padding: 20px 0 !important;

/*         grid-template-columns: repeat(2, minmax(0, 1fr)); */
        gap: 24px;
    }

    .process-timeline::before,
    .process-timeline::after {
        display: none;
    }

    .process-step,
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        min-height: 245px;

        transform: none;
    }

    .process-step:nth-child(odd):hover,
    .process-step:nth-child(even):hover {
        transform: translateY(-7px);
    }

    .process-step__icon::before,
    .process-step__icon::after {
        display: none !important;
    }

    .process-step:last-child {
        grid-column: 1 / -1;

        width: calc(50% - 12px);

        margin-inline: auto !important;
    }
}


/* =========================================
MOBILE VERTICAL TIMELINE
========================================= */

@media screen and (max-width: 767px) {

    .process-timeline {
/*         grid-template-columns: 1fr; */
        gap: 22px;

        padding: 8px 0 8px 38px !important;
    }


    /* Mobile vertical timeline */

    .process-timeline::before {
        display: block;

        top: 18px;
        bottom: 18px;
        left: 12px;
        right: auto;

        width: 3px;
        height: auto;

        transform: none;

        background:
            linear-gradient(
                180deg,
                var(--process-gold),
                rgba(218, 160, 40, 0.18)
            );
    }


    .process-step,
    .process-step:last-child {
        width: 100%;

        grid-column: auto;

        min-height: auto;

        padding: 24px 20px 22px !important;
    }


    /* Mobile timeline dot */

    .process-step::after,
    .process-step:nth-child(odd)::after,
    .process-step:nth-child(even)::after {
        content: "";

        position: absolute;
        top: 30px;
        left: -34px;
        right: auto;
        bottom: auto;
        z-index: 10;

        width: 15px;
        height: 15px;

        border: 4px solid #FFFFFF;
        border-radius: 50%;

        background: var(--process-gold);

        box-shadow:
            0 0 0 2px var(--process-gold),
            0 5px 12px rgba(10, 16, 58, 0.16);

        transform: none;
    }

    .process-step:hover::after {
        width: 15px;
        height: 15px;
    }

    .process-step__icon::before,
    .process-step__icon::after {
        display: none !important;
    }

    .process-step__title {
        min-height: auto;
    }
}


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

@media screen and (max-width: 480px) {

    .process-timeline {
        padding-left: 31px !important;
    }

    .process-step {
        padding: 22px 17px 20px !important;
    }

    .process-step__icon {
        width: 52px !important;
        height: 52px !important;
    }

    .process-step__number
    .elementor-heading-title {
        font-size: 35px;
    }

    .process-step__title
    .elementor-heading-title {
        font-size: 16px;
    }
}


/* =========================================
REDUCED MOTION
========================================= */

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

    .process-timeline::after {
        animation: none;
    }

    .process-step,
    .process-step::before,
    .process-step::after,
    .process-step__icon,
    .process-step__number
    .elementor-heading-title {
        transition: none;
    }

    .process-step:nth-child(odd):hover {
        transform: translateY(-88px);
    }

    .process-step:nth-child(even):hover {
        transform: translateY(88px);
    }
}



/* =========================================
OJAS CONTACT SECTION
========================================= */

.ojas-contact-section {
    --ojas-navy: #0A103A;
    --ojas-gold: #DAA028;
    --ojas-text: #1A1F24;;
    --ojas-border: #E7EBF2;
    --ojas-light: #F7F8FB;

    position: relative;
    overflow: hidden;

    padding: 0px 20px;

    font-family: "Montserrat", sans-serif;
}


/* Decorative background circles */

.ojas-contact-section::before,
.ojas-contact-section::after {
    content: "";

    position: absolute;
    z-index: 0;

    border-radius: 50%;

    pointer-events: none;
}

.ojas-contact-section::before {
    width: 260px;
    height: 260px;

    top: -110px;
    right: -80px;

    background: rgba(218, 160, 40, 0.10);
}

/* .ojas-contact-section::after {
    width: 220px;
    height: 220px;

    bottom: -110px;
    left: -80px;

    background: rgba(10, 16, 58, 0.05);
} */


/* Keep Elementor content above decorations */

.ojas-contact-section > .e-con-inner,
.ojas-contact-section > .elementor-container {
    position: relative;
    z-index: 1;
}


/* =========================================
LEFT CONTACT DETAILS
========================================= */

.ojas-contact-details {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* =========================================
CONTACT ICON BOX CARD
========================================= */

.ojas-contact-card {
    position: relative;

    width: 100%;

    border: 1px solid var(--ojas-border);
    border-radius: 18px;

    background: #FFFFFF;

    box-shadow:
        0 12px 30px rgba(10, 16, 58, 0.055);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
}


/* Gold accent line */

.ojas-contact-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--ojas-gold);

    transform: scaleY(0.4);
    transform-origin: center;

    transition:
        transform 0.35s ease,
        width 0.35s ease;
}


/* Elementor Icon Box wrapper */

.ojas-contact-card .elementor-icon-box-wrapper {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 18px;

    min-height: 122px;

    padding: 24px 24px 24px 28px;

    text-align: left;
}


/* =========================================
ICON AREA
========================================= */

.ojas-contact-card .elementor-icon-box-icon {
    flex: 0 0 auto;

    margin: 0 !important;
}


/* Icon circle */

.ojas-contact-card .elementor-icon {
    width: 62px;
    height: 62px;

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

    border: 2px solid var(--ojas-gold);
    border-radius: 50%;

    background: var(--ojas-navy);

    color: #FFFFFF;

    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Elementor font icon */

.ojas-contact-card .elementor-icon i {
    font-size: 23px;

    color: inherit;
}


/* Elementor SVG icon */

.ojas-contact-card .elementor-icon svg {
    width: 23px;
    height: 23px;

    fill: #ffffff;

    transition: fill 0.35s ease;
}


/* =========================================
CARD CONTENT
========================================= */

.ojas-contact-card .elementor-icon-box-content {
    flex: 1;

    min-width: 0;
}


/* Title */

.ojas-contact-card .elementor-icon-box-title {
    margin: 0 0 7px !important;

    color: var(--ojas-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35em;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


/* Description */

.ojas-contact-card .elementor-icon-box-description {
    margin: 0 !important;

    color: var(--ojas-text);

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;

    word-break: break-word;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


/* Linked title/description */

.ojas-contact-card .elementor-icon-box-title a,
.ojas-contact-card .elementor-icon-box-description a {
    color: inherit;

    text-decoration: none;
}


/* =========================================
CARD HOVER
========================================= */

.ojas-contact-card:hover {
    transform: translateX(8px);

    border-color: rgba(218, 160, 40, 0.75);

    background: #FFFFFF;

    box-shadow:
        0 20px 42px rgba(10, 16, 58, 0.11);
}


.ojas-contact-card:hover::before {
    width: 6px;

    transform: scaleY(1);
}


.ojas-contact-card:hover .elementor-icon {
    transform: rotate(7deg) scale(1.05);

    border-color: var(--ojas-gold)!important;

    background: var(--ojas-gold);

    color: var(--ojas-navy);

/*     box-shadow:
        0 10px 24px rgba(218, 160, 40, 0.28); */
}


.ojas-contact-card:hover .elementor-icon-box-title {
    color: #131C55;

    transform: translateX(3px);
}


.ojas-contact-card:hover .elementor-icon-box-description {
    transform: translateX(3px);
}


/* =========================================
RIGHT CONTACT FORM CARD
========================================= */

.ojas-contact-form-card {
    position: relative!important;

    padding: 42px!important;

    border: 1px solid #EEF1F6;
    border-radius: 24px!important;

    background: #FFFFFF;

    box-shadow:
        0 22px 58px rgba(10, 16, 58, 0.09);

    overflow: hidden!important;
}


/* Gold decoration on top */

.ojas-contact-form-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 42px;

    width: 90px;
    height: 5px;

    border-radius: 0 0 6px 6px;

    background: var(--ojas-gold);
}


/* Subtle form background shape */

.ojas-contact-form-card::after {
    content: "";

    position: absolute;
    z-index: 0;

    width: 180px;
    height: 180px;

    top: -80px;
    right: -80px;

    border-radius: 50%;

    background: rgba(218, 160, 40, 0.07);

    pointer-events: none;
}


.ojas-contact-form-card > * {
    position: relative;
    z-index: 1;
}


/* =========================================
CF7 FORM
========================================= */

.ojas-contact-form-card .wpcf7 {
    width: 100%;
}


.ojas-contact-form-card .wpcf7-form {
    margin: 0;
}


/* Form row created in your CF7 HTML */

.ojas-contact-form-card .ojas-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* Field */

.ojas-contact-form-card .ojas-form__field {
    margin-bottom: 18px;
}


/* Labels */

.ojas-contact-form-card .ojas-form__field label {
    display: block;

    margin-bottom: 8px;

    color: var(--ojas-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5em;
}


.ojas-contact-form-card .ojas-form__field label span {
    color: var(--ojas-gold);
}


/* CF7 wrappers */

.ojas-contact-form-card .wpcf7-form-control-wrap {
    display: block;

    width: 100%;
}


/* All inputs */

.ojas-contact-form-card input[type="text"],
.ojas-contact-form-card input[type="email"],
.ojas-contact-form-card input[type="tel"],
.ojas-contact-form-card input[type="url"],
.ojas-contact-form-card input[type="number"],
.ojas-contact-form-card select,
.ojas-contact-form-card textarea {
    width: 100%;

    margin: 0;
    padding: 15px 16px;

    border: 1px solid #E1E6EE;
    border-radius: 10px;

    outline: none;

    background: #F8F9FC;

    color: var(--ojas-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;

    box-shadow: none;

    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/* Input height */

.ojas-contact-form-card input[type="text"],
.ojas-contact-form-card input[type="email"],
.ojas-contact-form-card input[type="tel"],
.ojas-contact-form-card input[type="url"],
.ojas-contact-form-card input[type="number"],
.ojas-contact-form-card select {
    min-height: 54px;
}


/* Textarea */

.ojas-contact-form-card textarea {
    min-height: 155px;

    resize: vertical;
}


/* Placeholder */

.ojas-contact-form-card input::placeholder,
.ojas-contact-form-card textarea::placeholder {
    color: #98A2B3;

    opacity: 1;
}


/* Hover */

.ojas-contact-form-card input:hover,
.ojas-contact-form-card select:hover,
.ojas-contact-form-card textarea:hover {
    border-color: rgba(218, 160, 40, 0.7);

    background: #FFFFFF;
}


/* Focus */

.ojas-contact-form-card input:focus,
.ojas-contact-form-card select:focus,
.ojas-contact-form-card textarea:focus {
    border-color: var(--ojas-gold);

    background: #FFFFFF;

    box-shadow:
        0 0 0 4px rgba(218, 160, 40, 0.12);

    transform: translateY(-1px);
}


/* Select arrow */

.ojas-contact-form-card select {
    cursor: pointer;
}


/* =========================================
ACCEPTANCE CHECKBOX
========================================= */

.ojas-contact-form-card .ojas-form__privacy {
    margin: 2px 0 22px;

    color: var(--ojas-text);

    font-size: 13px;
    line-height: 1.65em;
}


.ojas-contact-form-card .ojas-form__privacy label {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    cursor: pointer;
}


.ojas-contact-form-card .ojas-form__privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;

    min-width: 18px;

    margin-top: 2px;

    accent-color: var(--ojas-gold);

    cursor: pointer;
}


/* =========================================
SUBMIT BUTTON
========================================= */

.ojas-contact-form-card .ojas-form__submit {
    margin-top: 4px;
}


.ojas-contact-form-card input[type="submit"],
.ojas-contact-form-card button[type="submit"] {
    min-height: 54px;

    padding: 15px 30px;

    border: 1px solid var(--ojas-gold);
    border-radius: 10px;

    background: var(--ojas-gold);

    color: var(--ojas-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3em;

    cursor: pointer;

    box-shadow:
        0 10px 24px rgba(218, 160, 40, 0.24);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


.ojas-contact-form-card input[type="submit"]:hover,
.ojas-contact-form-card button[type="submit"]:hover {
    transform: translateY(-3px);

    background: var(--ojas-navy);

    color: #FFFFFF;

    border-color: var(--ojas-navy);

    box-shadow:
        0 14px 28px rgba(10, 16, 58, 0.22);
}


/* =========================================
CF7 VALIDATION
========================================= */

.ojas-contact-form-card .wpcf7-not-valid {
    border-color: #D92D20 !important;

    box-shadow:
        0 0 0 3px rgba(217, 45, 32, 0.08) !important;
}


.ojas-contact-form-card .wpcf7-not-valid-tip {
    margin-top: 6px;

    color: #D92D20;

    font-size: 12px;
    font-weight: 500;
}


.ojas-contact-form-card .wpcf7-response-output {
    margin: 22px 0 0 !important;
    padding: 14px 16px !important;

    border-width: 1px !important;
    border-radius: 10px;

    font-size: 13px;
    line-height: 1.6em;
}


.ojas-contact-form-card form.sent .wpcf7-response-output {
    border-color: #12B76A !important;

    background: rgba(18, 183, 106, 0.06);

    color: #067647;
}


.ojas-contact-form-card form.invalid .wpcf7-response-output,
.ojas-contact-form-card form.failed .wpcf7-response-output {
    border-color: #F04438 !important;

    background: rgba(240, 68, 56, 0.06);

    color: #B42318;
}


/* Spinner */

.ojas-contact-form-card .wpcf7-spinner {
    margin: 0 0 0 12px;

    vertical-align: middle;
}


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

@media screen and (max-width: 1024px) {

    .ojas-contact-section {
        padding: 80px 20px;
    }

    .ojas-contact-card:hover {
        transform: translateX(5px);
    }

    .ojas-contact-form-card {
        padding: 34px;
    }

    .ojas-contact-form-card::before {
        left: 34px;
    }
}


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

@media screen and (max-width: 767px) {

    .ojas-contact-section {
        padding: 65px 16px;
    }

    .ojas-contact-details {
        gap: 14px;
    }

    .ojas-contact-card .elementor-icon-box-wrapper {
        min-height: auto;

        padding: 20px;

        gap: 15px;
    }

    .ojas-contact-card .elementor-icon {
        width: 54px;
        height: 54px;
    }

    .ojas-contact-card .elementor-icon i {
        font-size: 20px;
    }

    .ojas-contact-card .elementor-icon svg {
        width: 20px;
        height: 20px;
    }

    .ojas-contact-card .elementor-icon-box-title {
        font-size: 17px;
    }

    .ojas-contact-card .elementor-icon-box-description {
        font-size: 13px;
    }

    .ojas-contact-card:hover {
        transform: translateY(-3px);
    }

    .ojas-contact-form-card {
        padding: 28px 20px;

        border-radius: 18px;
    }

    .ojas-contact-form-card::before {
        left: 20px;

        width: 70px;
    }

    .ojas-contact-form-card .ojas-form__row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .ojas-contact-form-card input[type="submit"],
    .ojas-contact-form-card button[type="submit"] {
        width: 100%;
    }
}


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

@media screen and (max-width: 420px) {

    .ojas-contact-card .elementor-icon-box-wrapper {
        align-items: flex-start;
    }

    .ojas-contact-card .elementor-icon {
        width: 50px;
        height: 50px;
    }

    .ojas-contact-form-card {
        padding: 26px 17px;
    }
}


/* =========================================
REDUCED MOTION
========================================= */

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

    .ojas-contact-card,
    .ojas-contact-card::before,
    .ojas-contact-card .elementor-icon,
    .ojas-contact-card .elementor-icon-box-title,
    .ojas-contact-card .elementor-icon-box-description,
    .ojas-contact-form-card input,
    .ojas-contact-form-card select,
    .ojas-contact-form-card textarea,
    .ojas-contact-form-card input[type="submit"],
    .ojas-contact-form-card button[type="submit"] {
        transition: none;
    }
}



/* =========================================
CONTACT MAP — INSIDE LEFT COLUMN
========================================= */

.ojas-contact-map {
    position: relative;

    width: 100%;

    margin-top: 2px;
    padding: 8px;

    border: 1px solid var(--ojas-border);
    border-radius: 18px;

    background: #FFFFFF;

    box-shadow:
        0 12px 30px rgba(10, 16, 58, 0.055);

    overflow: hidden;

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


/* Elementor Google Maps widget */

.ojas-contact-map .elementor-widget-container {
    height: 100%;

    border-radius: 12px;

    overflow: hidden;
}


/* Google Maps iframe */

.ojas-contact-map iframe {
    display: block;

    width: 100% !important;
    height: 310px !important;

    margin: 0;

    border: 0;
    border-radius: 12px;

    filter: saturate(0.85) contrast(1.03);

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}


/* Hover */

.ojas-contact-map:hover {
    transform: translateY(-4px);

    border-color: rgba(218, 160, 40, 0.75);

    box-shadow:
        0 20px 42px rgba(10, 16, 58, 0.11);
}


.ojas-contact-map:hover iframe {
    transform: scale(1.015);

    filter: saturate(1) contrast(1);
}


/* Small gold corner decoration */

.ojas-contact-map::before {
    content: "";

    position: absolute;
    z-index: 2;

    top: 0;
    left: 28px;

    width: 65px;
    height: 4px;

    border-radius: 0 0 5px 5px;

    background: var(--ojas-gold);

    pointer-events: none;
}


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

@media screen and (max-width: 1024px) {

    .ojas-contact-map iframe {
        height: 290px !important;
    }
}


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

@media screen and (max-width: 767px) {

    .ojas-contact-map {
        padding: 7px;

        border-radius: 16px;
    }

    .ojas-contact-map iframe {
        height: 280px !important;

        border-radius: 10px;
    }

    .ojas-contact-map::before {
        left: 20px;

        width: 55px;
    }
}



/*=========================================
QUOTE SECTION
=========================================*/

.ojas-quote-section{

    --quote-navy:#0A103A;
    --quote-gold:#DAA028;
    --quote-text:#667085;
    --quote-border:#E8ECF3;

    position:relative;

    overflow:hidden;
}

.ojas-quote-section::before{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    right:-90px;
    top:-90px;

    border-radius:50%;

    background:rgba(218,160,40,.08);
}

/* .ojas-quote-section::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    left:-80px;
    bottom:-80px;

    border-radius:50%;

    background:rgba(10,16,58,.05);
} */


/*=========================================
FORM CARD
=========================================*/

.ojas-quote-form-card{

    position:relative!important;

    background:#fff;

    border:1px solid #EEF2F6;

    border-radius:24px!important;

    padding:42px!important;

    box-shadow:
    0 20px 55px rgba(10,16,58,.08);

    overflow:hidden!important;
}

/* .ojas-quote-form-card:before{

    content:"";

    position:absolute;

    left:40px;
    top:0;

    width:90px;
    height:5px;

    background:var(--quote-gold);

    border-radius:0 0 6px 6px;
} */


/*=========================================
SIDEBAR
=========================================*/

.ojas-quote-sidebar{

    background:#fff;

    border:1px solid var(--quote-border);

    border-radius:24px!important;

    padding:34px!important;

    box-shadow:
    0 16px 40px rgba(10,16,58,.05);

    height:fit-content;
}


/*=========================================
STEP ICON BOX
=========================================*/

.ojas-quote-step{

    position:relative!important;

    padding:0 0 0 0px;

    margin-bottom:28px;
}

.ojas-quote-step:last-child{

    margin-bottom:0;
}


/* vertical line */

.ojas-quote-step:before{

    content:"";

    position:absolute;

    left:30px;
    top:60px;

    width:2px;
    height:calc(100% - 38px);

    background:#E4E7ED;
}

.ojas-quote-step:last-child:before{

    display:none;
}


/* wrapper */

.ojas-quote-step .elementor-icon-box-wrapper{

    display:flex;

    align-items:flex-start;

    gap:18px;

    text-align:left;
}


/* icon */

.ojas-quote-step .elementor-icon{

    width:58px;
    height:58px;

    display:flex;

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

    border-radius:50%;

    background:#0A103A;

    border:2px solid #DAA028;

    color:#fff;

    transition:.35s;
}

.ojas-quote-step .elementor-icon i{

    font-size:22px;
}

.ojas-quote-step .elementor-icon svg{

    width:22px;
    height:22px;

    fill:#ffffff;
}


/* title */

.ojas-quote-step .elementor-icon-box-title{

    margin:0 0 8px!important;

    font-size:19px;

    font-weight:700;

    color:#0A103A;
}


/* description */

.ojas-quote-step .elementor-icon-box-description{

    color:#667085;

    font-size:14px;

    line-height:1.8em;
}


/* hover */

.ojas-quote-step:hover .elementor-icon{

    background:#DAA028;

    color:#0A103A;

    transform:rotate(8deg) scale(1.05);

    box-shadow:
    0 12px 24px rgba(218,160,40,.25);
}


/*=========================================
BOTTOM HELP BOX
=========================================*/

.ojas-quote-help{

    margin-top:40px;

    padding:28px!important;

    border-radius:18px!important;

    background:#0A103A;

    color:#fff;

    overflow:hidden!important;

    position:relative!important;
}

.ojas-quote-help:before{

    content:"";

    position:absolute;

    width:150px;
    height:150px;

    right:-50px;
    bottom:-50px;

    border-radius:50%;

    background:rgba(255,255,255,.05);
}

.ojas-quote-help h3{

    color:#fff;

    margin-bottom:10px;
}

.ojas-quote-help p{

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

    margin-bottom:24px;
}


/* =========================================
QUOTE FORM — CONTACT FORM MATCHING STYLE
========================================= */

.ojas-quote-form-card {
    --quote-navy: #0A103A;
    --quote-gold: #DAA028;
    --quote-text: #667085;
    --quote-border: #E7EBF2;

    position: relative;

    padding: 42px;

    border: 1px solid #EEF1F6;
    border-radius: 24px;

    background: #FFFFFF;

    box-shadow:
        0 22px 58px rgba(10, 16, 58, 0.09);

    overflow: hidden;
}


/* Gold decoration at top */

.ojas-quote-form-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 42px;

    width: 90px;
    height: 5px;

    border-radius: 0 0 6px 6px;

    background: var(--quote-gold);
}


/* Decorative background circle */

.ojas-quote-form-card::after {
    content: "";

    position: absolute;
    z-index: 0;

    width: 180px;
    height: 180px;

    top: -80px;
    right: -80px;

    border-radius: 50%;

    background: rgba(218, 160, 40, 0.07);

    pointer-events: none;
}


/* Keep all widgets above decoration */

.ojas-quote-form-card > * {
    position: relative;
    z-index: 1;
}


/* =========================================
CONTACT FORM 7 WRAPPER
========================================= */

.ojas-quote-form-card .wpcf7 {
    width: 100%;
}


.ojas-quote-form-card .wpcf7-form {
    width: 100%;

    margin: 0;
}


/* =========================================
TWO-COLUMN FORM ROW
========================================= */

.ojas-quote-form-card .ojas-form__row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================
FORM FIELD
========================================= */

.ojas-quote-form-card .ojas-form__field {
    width: 100%;

    margin-bottom: 18px;
}


.ojas-quote-form-card .ojas-form__field--full {
    grid-column: 1 / -1;
}


/* =========================================
LABELS
========================================= */

.ojas-quote-form-card .ojas-form__field label {
    display: block;

    margin: 0 0 8px;

    color: var(--quote-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5em;
}


/* Required asterisk */

.ojas-quote-form-card .ojas-form__field label > span {
    color: var(--quote-gold);
}


/* CF7 field wrapper */

.ojas-quote-form-card .wpcf7-form-control-wrap {
    display: block;

    width: 100%;
}


/* =========================================
TEXT, EMAIL, PHONE AND SELECT FIELDS
========================================= */

.ojas-quote-form-card input[type="text"],
.ojas-quote-form-card input[type="email"],
.ojas-quote-form-card input[type="tel"],
.ojas-quote-form-card input[type="url"],
.ojas-quote-form-card input[type="number"],
.ojas-quote-form-card select,
.ojas-quote-form-card textarea {
    display: block;

    width: 100%;

    margin: 0;
    padding: 15px 16px;

    border: 1px solid #E1E6EE;
    border-radius: 10px;

    outline: none;

    background: #F8F9FC;

    color: var(--quote-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;

    box-shadow: none;

    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/* Standard field height */

.ojas-quote-form-card input[type="text"],
.ojas-quote-form-card input[type="email"],
.ojas-quote-form-card input[type="tel"],
.ojas-quote-form-card input[type="url"],
.ojas-quote-form-card input[type="number"],
.ojas-quote-form-card select {
    min-height: 54px;
}


/* =========================================
SELECT FIELD
========================================= */

.ojas-quote-form-card select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding-right: 46px;

    cursor: pointer;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--quote-navy) 50%
        ),
        linear-gradient(
            135deg,
            var(--quote-navy) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 14px) 50%;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}


/* First placeholder option */

.ojas-quote-form-card select:invalid {
    color: #98A2B3;
}


.ojas-quote-form-card select option {
    color: var(--quote-navy);

    background: #FFFFFF;
}


/* =========================================
TEXTAREA
========================================= */

.ojas-quote-form-card textarea {
    min-height: 160px;

    resize: vertical;
}


/* =========================================
PLACEHOLDERS
========================================= */

.ojas-quote-form-card input::placeholder,
.ojas-quote-form-card textarea::placeholder {
    color: #98A2B3;

    opacity: 1;
}


/* =========================================
FIELD HOVER
========================================= */

.ojas-quote-form-card input[type="text"]:hover,
.ojas-quote-form-card input[type="email"]:hover,
.ojas-quote-form-card input[type="tel"]:hover,
.ojas-quote-form-card input[type="url"]:hover,
.ojas-quote-form-card input[type="number"]:hover,
.ojas-quote-form-card select:hover,
.ojas-quote-form-card textarea:hover {
    border-color: rgba(218, 160, 40, 0.7);

    background-color: #FFFFFF;
}


/* =========================================
FIELD FOCUS
========================================= */

.ojas-quote-form-card input[type="text"]:focus,
.ojas-quote-form-card input[type="email"]:focus,
.ojas-quote-form-card input[type="tel"]:focus,
.ojas-quote-form-card input[type="url"]:focus,
.ojas-quote-form-card input[type="number"]:focus,
.ojas-quote-form-card select:focus,
.ojas-quote-form-card textarea:focus {
    border-color: var(--quote-gold);

    background-color: #FFFFFF;

    box-shadow:
        0 0 0 4px rgba(218, 160, 40, 0.12);

    transform: translateY(-1px);
}


/* =========================================
ACCEPTANCE CHECKBOX
========================================= */

.ojas-quote-form-card .ojas-form__privacy {
    margin: 2px 0 22px;

    color: var(--quote-text);

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.65em;
}


.ojas-quote-form-card .ojas-form__privacy .wpcf7-list-item {
    margin: 0;
}


.ojas-quote-form-card .ojas-form__privacy label {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    cursor: pointer;
}


.ojas-quote-form-card
.ojas-form__privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;

    min-width: 18px;

    margin: 2px 0 0;

    accent-color: var(--quote-gold);

    cursor: pointer;
}


/* =========================================
SUBMIT AREA
========================================= */

.ojas-quote-form-card .ojas-form__submit {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 4px;
}


/* =========================================
SUBMIT BUTTON
========================================= */

.ojas-quote-form-card input[type="submit"],
.ojas-quote-form-card button[type="submit"] {
    min-height: 54px;

    margin: 0;
    padding: 15px 30px;

    border: 1px solid var(--quote-gold);
    border-radius: 10px;

    outline: none;

    background: var(--quote-gold);

    color: var(--quote-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3em;

    cursor: pointer;

    box-shadow:
        0 10px 24px rgba(218, 160, 40, 0.24);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


.ojas-quote-form-card input[type="submit"]:hover,
.ojas-quote-form-card button[type="submit"]:hover {
    transform: translateY(-3px);

    border-color: var(--quote-navy);

    background: var(--quote-navy);

    color: #FFFFFF;

    box-shadow:
        0 14px 28px rgba(10, 16, 58, 0.22);
}


.ojas-quote-form-card input[type="submit"]:focus-visible,
.ojas-quote-form-card button[type="submit"]:focus-visible {
    outline: 3px solid rgba(218, 160, 40, 0.32);
    outline-offset: 3px;
}


/* CF7 disabled state while sending */

.ojas-quote-form-card input[type="submit"]:disabled,
.ojas-quote-form-card button[type="submit"]:disabled {
    opacity: 0.65;

    cursor: not-allowed;

    transform: none;
}


/* =========================================
CF7 VALIDATION
========================================= */

.ojas-quote-form-card .wpcf7-not-valid {
    border-color: #D92D20 !important;

    box-shadow:
        0 0 0 3px rgba(217, 45, 32, 0.08) !important;
}


.ojas-quote-form-card .wpcf7-not-valid-tip {
    display: block;

    margin-top: 6px;

    color: #D92D20;

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5em;
}


/* =========================================
CF7 RESPONSE MESSAGE
========================================= */

.ojas-quote-form-card .wpcf7-response-output {
    margin: 22px 0 0 !important;
    padding: 14px 16px !important;

    border-width: 1px !important;
    border-radius: 10px;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.6em;
}


.ojas-quote-form-card
form.sent
.wpcf7-response-output {
    border-color: #12B76A !important;

    background: rgba(18, 183, 106, 0.06);

    color: #067647;
}


.ojas-quote-form-card
form.invalid
.wpcf7-response-output,
.ojas-quote-form-card
form.failed
.wpcf7-response-output,
.ojas-quote-form-card
form.unaccepted
.wpcf7-response-output {
    border-color: #F04438 !important;

    background: rgba(240, 68, 56, 0.06);

    color: #B42318;
}


/* =========================================
CF7 SPINNER
========================================= */

.ojas-quote-form-card .wpcf7-spinner {
    margin: 0;

    vertical-align: middle;
}


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

@media screen and (max-width: 1024px) {

    .ojas-quote-form-card {
        padding: 34px;
    }

    .ojas-quote-form-card::before {
        left: 34px;
    }
}


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

@media screen and (max-width: 767px) {

    .ojas-quote-form-card {
        padding: 28px 20px;

        border-radius: 18px;
    }

    .ojas-quote-form-card::before {
        left: 20px;

        width: 70px;
    }

    .ojas-quote-form-card .ojas-form__row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .ojas-quote-form-card .ojas-form__submit {
        display: block;
    }

    .ojas-quote-form-card input[type="submit"],
    .ojas-quote-form-card button[type="submit"] {
        width: 100%;
    }

    .ojas-quote-form-card .wpcf7-spinner {
        display: block;

        margin: 12px auto 0;
    }
}


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

@media screen and (max-width: 420px) {

    .ojas-quote-form-card {
        padding: 26px 17px;
    }

    .ojas-quote-form-card input[type="text"],
    .ojas-quote-form-card input[type="email"],
    .ojas-quote-form-card input[type="tel"],
    .ojas-quote-form-card input[type="url"],
    .ojas-quote-form-card input[type="number"],
    .ojas-quote-form-card select,
    .ojas-quote-form-card textarea {
        padding-right: 14px;
        padding-left: 14px;
    }
}


/* =========================================
REDUCED MOTION
========================================= */

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

    .ojas-quote-form-card input,
    .ojas-quote-form-card select,
    .ojas-quote-form-card textarea,
    .ojas-quote-form-card input[type="submit"],
    .ojas-quote-form-card button[type="submit"] {
        transition: none;
    }
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1024px){

    .ojas-quote-form-card{

        padding:34px;
    }

    .ojas-quote-sidebar{

        padding:28px;
    }

}

@media(max-width:767px){

    .ojas-quote-form-card{

        padding:26px 20px;
    }

    .ojas-quote-sidebar{

        padding:24px;

        margin-top:30px;
    }

    .ojas-quote-step{

        padding-left:0;
    }

    .ojas-quote-step:before{

        display:none;
    }

    .ojas-quote-step .elementor-icon-box-wrapper{

        flex-direction:column;

        gap:14px;
    }

}



/* ==========================================================
   OJAS PRODUCTS SECTION
========================================================== */

.ojas-products-section {
    --products-navy: #0A103A;
    --products-gold: #DAA028;
    --products-text: #5E6678;
    --products-border: #E5E9F1;
    --products-light: #F7F8FB;
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
}


/* Keep Elementor content above decorations */

.ojas-products-section > .e-con-inner,
.ojas-products-section > .elementor-container {
    position: relative;
    z-index: 1;
}


/* ==========================================================
   PRODUCTS LIST
========================================================== */

.ojas-products__list {
    display: flex !important;
    flex-direction: column !important;

    width: 100%;

    gap: 42px;

    margin-top: 55px;
}


/* ==========================================================
   PRODUCT CARD
========================================================== */

.ojas-product-card {
    position: relative;

    display: grid !important;
    grid-template-columns:
        minmax(360px, 46%)
        minmax(0, 1fr);

    align-items: stretch;

    width: 100% !important;
    max-width: 100% !important;

    min-height: 520px;

    padding: 0 !important;

    border: 1px solid var(--products-border);
    border-radius: 26px!important;

    background: #FFFFFF;

    box-shadow:
        0 20px 55px rgba(10, 16, 58, 0.07);

    overflow: hidden;

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


/* Gold top accent */

.ojas-product-card::before {
    content: "";

    position: absolute;
    z-index: 5;

    top: 0;
    left: 50%;

    width: 88px;
    height: 5px;

    border-radius: 0 0 6px 6px;

    background: var(--products-gold);

    transform: translateX(-50%);

    transition: width 0.4s ease;
}


/* Subtle circle inside content */

.ojas-product-card::after {
    content: "";

    position: absolute;
    z-index: 0;

    width: 220px;
    height: 220px;

    right: -100px;
    bottom: -110px;

    border-radius: 50%;

    background: rgba(218, 160, 40, 0.055);

    pointer-events: none;
}


.ojas-product-card:hover {
    transform: translateY(-8px);

    border-color: rgba(218, 160, 40, 0.72);

    box-shadow:
        0 30px 70px rgba(10, 16, 58, 0.12);
}


.ojas-product-card:hover::before {
    width: 150px;
}


/* ==========================================================
   ALTERNATING SECOND CARD
========================================================== */

.ojas-product-card--marine {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 46%);
}


.ojas-product-card--marine .ojas-product-card__media {
    grid-column: 2;
    grid-row: 1;
}


.ojas-product-card--marine .ojas-product-card__content {
    grid-column: 1;
    grid-row: 1;
}


/* ==========================================================
   PRODUCT IMAGE
========================================================== */

.ojas-product-card__media {
    position: relative;

    width: 100% !important;
    height: 100%;

    min-height: 520px;

    overflow: hidden;
}


/* Ensure Elementor wrappers fill full area */

.ojas-product-card__media,
.ojas-product-card__media > .elementor-widget,
.ojas-product-card__media .elementor-widget-container,
.ojas-product-card__media .elementor-image {
    height: 100%;
}


.ojas-product-card__media img {
    display: block!important;

    width: 100%!important;
    height: 100% !important;
    min-height: 520px;

    border-radius: 0 !important;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.65s ease,
        filter 0.65s ease;
}


/* Navy image shading */

.ojas-product-card__media::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(10, 16, 58, 0.34) 100%
        );

    pointer-events: none;
}


.ojas-product-card:hover
.ojas-product-card__media img {
    transform: scale(1.06);

    filter:
        saturate(1.04)
        contrast(1.02);
}


/* Small gold corner detail */

.ojas-product-card__media::before {
    content: "";

    position: absolute;
    z-index: 3;

    top: 24px;
    right: 24px;

    width: 52px;
    height: 52px;

    border-top: 3px solid var(--products-gold);
    border-right: 3px solid var(--products-gold);

    pointer-events: none;
}


.ojas-product-card--marine
.ojas-product-card__media::before {
    right: auto;
    left: 24px;

    border-right: 0;
    border-left: 3px solid var(--products-gold);
}


/* ==========================================================
   PRODUCT CONTENT
========================================================== */

.ojas-product-card__content {
    position: relative!important;
    z-index: 2!important;

    display: flex !important;
    flex-direction: column!important;

    justify-content: center!important;

    min-width: 0!important;

    padding: 48px 50px !important;
}


/* ==========================================================
   EYEBROW
========================================================== */

.ojas-product-card__eyebrow {
    display: inline-flex;
    align-items: center!important;

    width: fit-content;

    gap: 12px!important;

    margin: 0 0 16px !important;

    color: var(--products-gold);

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.ojas-product-card__eyebrow::before {
    content: "";

    width: 38px;
    height: 2px;

    flex: 0 0 auto;

    background: var(--products-gold);

    transition: width 0.35s ease;
}


.ojas-product-card:hover
.ojas-product-card__eyebrow::before {
    width: 60px;
}


/* ==========================================================
   PRODUCT TITLE
========================================================== */

.ojas-product-card__content h2,
.ojas-product-card__content h3,
.ojas-product-card__content
.elementor-heading-title {
/*     margin: 0 0 18px !important; */

    color: var(--products-navy)!important;

    font-family: "Montserrat", sans-serif!important;
/*     font-size: clamp(28px, 3vw, 40px)!important; */
    font-weight: 700!important;
    line-height: 1.2em!important;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.ojas-product-card__description {
    margin: 0 0 27px !important;

    color: var(--products-text);

    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
}


.ojas-product-card__description p {
    margin: 0 !important;
}


/* ==========================================================
   KEY HIGHLIGHTS TITLE
========================================================== */

.ojas-product-card__highlights-title {
    position: relative;

    margin: 0 0 16px !important;
    padding-bottom: 12px;

    color: var(--products-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4em;
}


.ojas-product-card__highlights-title::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 45px;
    height: 2px;

    background: var(--products-gold);
}


/* ==========================================================
   ELEMENTOR ICON LIST
========================================================== */

.ojas-product-card__highlights {
    margin-bottom: 28px;
}


.ojas-product-card__highlights
.elementor-icon-list-items {
    display: grid;

    gap: 11px;

    margin: 0;
    padding: 0;
}


.ojas-product-card__highlights
.elementor-icon-list-item {
    align-items: flex-start;

    margin: 0 !important;
    padding: 0 !important;
}


/* Create consistent check circles */

.ojas-product-card__highlights
.elementor-icon-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    min-width: 22px;

    margin-top: 1px;
    margin-right: 10px;

    border: 1px solid rgba(218, 160, 40, 0.38);
    border-radius: 50%;

    background: rgba(218, 160, 40, 0.09);

    color: var(--products-gold) !important;
}


.ojas-product-card__highlights
.elementor-icon-list-icon i {
    color: inherit !important;

    font-size: 10px;
}


.ojas-product-card__highlights
.elementor-icon-list-icon svg {
    width: 10px!important;
    height: 10px!important;

    fill: currentColor !important;
}


.ojas-product-card__highlights
.elementor-icon-list-text {
    color: var(--products-navy)!important;
    font-size: 15px;
    font-weight: 500!important;
    line-height: 1.65em;
}


/* ==========================================================
   EXISTING BUTTON SHORTCODE
========================================================== */

/*
The button shortcode stays untouched.

This only gives its Elementor widget or shortcode wrapper
some spacing when it is inside the product card.
*/

.ojas-product-card__content
.elementor-widget-shortcode:last-child,
.ojas-product-card__content
.shortcode-button:last-child {
    margin-top: auto;
    padding-top: 4px;
}


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

@media screen and (max-width: 1024px) {

    .ojas-products-section {
        padding: 80px 20px;
    }

    .ojas-product-card,
    .ojas-product-card--marine {
        grid-template-columns:
            minmax(280px, 42%)
            minmax(0, 1fr);
    }

    .ojas-product-card--marine {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 42%);
    }

    .ojas-product-card__content {
        padding: 38px 34px !important;
    }

    .ojas-product-card__media,
    .ojas-product-card__media img {
        min-height: 500px;
    }
}


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

@media screen and (max-width: 767px) {

    .ojas-products-section {
        padding: 65px 16px;
    }

    .ojas-products__list {
        gap: 28px;

        margin-top: 38px;
    }

    .ojas-product-card,
    .ojas-product-card--marine {
        display: flex !important;
        flex-direction: column !important;

        min-height: auto;

        border-radius: 20px;
    }

    .ojas-product-card--marine
    .ojas-product-card__media,
    .ojas-product-card--marine
    .ojas-product-card__content {
        grid-column: auto;
        grid-row: auto;
    }

    .ojas-product-card__media {
        min-height: 280px;
        height: 280px;
    }

    .ojas-product-card__media img {
        min-height: 280px;
        height: 280px !important;
    }

    .ojas-product-card__content {
        padding: 30px 24px 32px !important;
    }

    .ojas-product-card__content h2,
    .ojas-product-card__content h3,
    .ojas-product-card__content
    .elementor-heading-title {
        font-size: 28px;
    }

    .ojas-product-card__description {
        font-size: 14px;
    }

    .ojas-product-card__highlights
    .elementor-icon-list-text {
        font-size: 13px;
    }

    .ojas-product-card:hover {
        transform: translateY(-4px);
    }
}


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

@media screen and (max-width: 420px) {

    .ojas-product-card__media {
        min-height: 240px;
        height: 240px;
    }

    .ojas-product-card__media img {
        min-height: 240px;
        height: 240px !important;
    }

    .ojas-product-card__content {
        padding: 27px 19px 29px !important;
    }
}


/* ==========================================================
   REDUCED MOTION
========================================================== */

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

    .ojas-product-card,
    .ojas-product-card::before,
    .ojas-product-card__media img,
    .ojas-product-card__eyebrow::before {
        transition: none;
    }
}
