:root {
    --blue: #00448b;
    --black: #000;
    --green: #62c404;
    --gray: #f4f4f4;
    --text: #6c6c6c;
    --muted: #6b7280;
    --white: #fff;
    --teal: #00448b;
    --gold: #c5a36b;
}
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
}


/* ========= HOME - BANNER SLIDER SECTION ========= */
.hm-banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;

}

.hm-banner-slider-item {
    height: 100vh;
}

.hm-banner-slider-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
}

.hm-banner-slider-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.55s ease;
}

.hm-banner-slider-card:hover img {
    transform: scale(1.05);
}

.hm-banner-slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    transition: background 0.4s ease;
}

.hm-banner-slider-card:hover .hm-banner-slider-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.hm-banner-slider-caption {
    position: absolute;
    left: 30px;
    bottom: 35px;
    color: #fff;
    z-index: 2;
}

.hm-banner-slider-caption h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.hm-banner-slider-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    color: #fff;
    transition: color 0.3s ease;
}

.hm-banner-slider-card:hover .hm-banner-slider-link {
    color: var(--gold, #c5a36b);
}

.hm-banner-carousel .owl-nav button.owl-prev,
.hm-banner-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border: none !important;
    font-size: 22px !important;
    line-height: 1 !important;
    z-index: 99;
    transition: background 0.3s ease;
    display: none;
}

.hm-banner-carousel .owl-nav button.owl-prev {
    left: 12px;
}

.hm-banner-carousel .owl-nav button.owl-next {
    right: 12px;
}

.hm-banner-carousel .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

.hm-banner-carousel .owl-dots {
    position: absolute;
    bottom: 14px;
    width: 100%;
    text-align: center;
}

.hm-banner-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.5) !important;
    transition: background 0.3s ease;
}

.hm-banner-carousel .owl-dot.active span {
    background: #fff !important;
}

@media (max-width: 1024px) {
    .hm-banner-slider-caption h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hm-banner-slider-caption h3 {
        font-size: 16px;
    }

    .hm-banner-slider-caption {
        left: 16px;
        bottom: unset;
        top: 60vh;
    }

    .hm-banner-slider {
        height: 85vh;
    }
}

@media (max-width: 480px) {
    .hm-banner-slider-caption h3 {
        font-size: 14px;
    }
}

/* ========= HOME - ABOUT SECTION ========= */
.hm-abt-section {
    position: relative;
    padding: 120px 0 0 0;
    background: #fff;
    overflow: hidden;
}

.hm-abt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: center;
}

.hm-abt-left {
    margin-right: 25px;
}

/* ✅ NEW IMAGE STYLE */
.hm-abt-img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.hm-abt-left h4 {
    color: var(--blue);
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 800;
}

.hm-abt-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hm-abt-form input {
    flex: 1;
    min-width: 260px;
    padding: 12px 10px;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    outline: none;
    font-size: 14px;
}

.hm-abt-form input:focus {
    border-bottom-color: var(--blue);
}

.hm-abt-call {
    margin-top: 26px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
}

.hm-abt-right h2 {
       margin-top: 10px;
    font-family: "Google Sans", sans-serif;
    color: var(--black);
    font-size: 40px;
    line-height: 1.15;
}

.hm-abt-right p {
    margin: 25px 0;
    color: var(--text);
}

.hm-abt-right-underline {
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 10px;
    text-decoration-color: var(--blue);
}

@media (min-width: 1024px) {
    .hm-abt-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hm-abt-right h2 {
        font-size: 46px;
    }
}
/* ========= HOME - CLIENT MARQUEE STRIP ========= */
.hm-client-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hm-client-strip {
    width: 100%;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.hm-client-marquee {
    width: 100%;
    overflow: hidden;
}

.hm-client-marquee-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: hmClientMarquee 22s linear infinite;
    will-change: transform;
}

.hm-client-marquee:hover .hm-client-marquee-track {
    animation-play-state: paused;
}

.hm-client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* .hm-client-item img {
    width: 160px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.hm-client-item img:hover {
    opacity: 1;
    filter: brightness(0) invert(1);
} */

.hm-client-item img {
    width: 250px;
    /* height: 70px; */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.hm-client-item img:hover {
    opacity: 1;
    filter: none;
}

@keyframes hmClientMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hm-client-item img {
        width: 110px;
        height: 50px;
    }

    .hm-client-marquee-track {
        gap: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hm-client-marquee-track {
        animation: none;
    }
}

/* ========= HOME - FEATURE SPLIT SECTION ========= */
.hm-split-section {
    position: relative;
    overflow: hidden;
}

.hm-split-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.hm-split-left {
    background: var(--blue);
    color: #fff;
    padding: 60px 0;
}

.hm-split-left-inner {
    width: min(460px, 90%);
    margin: 0 auto;
}

.hm-split-left h2 {
    font-family: "Google Sans", sans-serif;
    font-size: 38px;
    margin: 0 0 18px;
    line-height: 1.15;
}

.hm-split-left p {
    color: #d1d5db;
    font-size: 14px;
    margin: 0 0 26px;
}

.hm-split-policy-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.radio-row input {
    accent-color: var(--gold);
}

.hm-split-policy-form input,
.hm-split-policy-form select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    padding: 12px 6px;
    color: #fff;
    outline: none;
    font-size: 14px;
}

.hm-split-policy-form select {
    color: var(--white);
    background: transparent;
    border-radius: 6px;
}

.hm-split-policy-form input::placeholder {
    color: rgba(255, 255, 255, .6);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
    padding: 10px 20px;
    font-weight: 700;
    transition: ease-in-out .4s;
}

.btn-green:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--blue);
}

.hm-split-review-row {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    gap: 18px;
    align-items: center;
}

.hm-split-stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
}

.hm-split-review-text {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9ca3af;
}

.hm-split-review-text a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--gold);
}

.hm-split-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.hm-split-tile {
    min-height: 400px;
    padding: 46px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hm-split-tile-card {
    border-right: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    background-color: #F9F7F8;
    color: #fff;
}

.hm-split-tile-green {
    background: #62c404;
    color: #fff;
}

.hm-split-tile h3 {
    margin: 0;
    font-family: "Google Sans", sans-serif;
    color: var(--blue);
    font-size: 26px;
    line-height: 1.25;
}

.hm-split-tile-green h3 {
    color: #fff;
    margin-bottom: 10px;
}

.hm-split-tile-green p {
    color: #fff;
    margin: 0;
    font-size: 14px;
}

.hm-split-tile-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.hm-split-tile-icon.teal {
    color: var(--blue);
}

.hm-split-tile-icon.gold {
    color: var(--gold);
}

.hm-split-tile-link {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.hm-split-tile-link span {
    font-size: 18px;
    margin-left: 6px;
}

.hm-split-tile-link:hover {
    color: var(--gold);
}

.hm-split-tile-link.white {
    color: var(--blue);
}

.hm-split-tile-link.white1 {
    color: #fff;
}



.hm-split-tile-img {
    padding: 0;
    overflow: hidden;
    background: #e5e7eb;
}

.hm-split-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hide-sm {
    display: none;
}

@media (min-width: 640px) {
    .hm-split-right {
        grid-template-columns: 1fr 1fr;
    }

    .hide-sm {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hm-split-feature {
        grid-template-columns: 1fr 1fr;
    }

    .hm-split-left {
        padding: 90px 0;
        display: flex;
        align-items: center;
    }
}
.creatly-btn {
    line-height: 1;
    text-decoration: none !important;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--green);
    color: #fff !important;
    border-radius: 10rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s, border 0.3s;
    border: 2px solid var(--green);
}

.creatly-btn:visited,
.creatly-btn:focus,
.creatly-btn:active {
    color: #fff !important;
    text-decoration: none !important;
}

.creatly-btn__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: var(--green);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.creatly-btn:hover {
    background-color: var(--blue);
    border: 2px solid white;
    color: #fff !important;
    text-decoration: none !important;
}

.creatly-btn:hover .creatly-btn__icon-wrapper {
    color: var(--blue);
}

.creatly-btn__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.creatly-btn:hover .creatly-btn__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.creatly-btn:hover .creatly-btn__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}




/* ========= HOME - SERVICE SECTION ========= */
.hm-services-section {
    position: relative;
    padding: 120px 0;
}

.hm-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 46px;
    align-items: start;
}

.hm-services-left h2 {
    margin: 0 0 18px;
    font-family: "Google Sans", sans-serif;
    color: var(--teal);
    font-size: 40px;
    line-height: 1.15;
}

.hm-services-left p {
    color: var(--muted);
    margin: 0 0 28px;
}

.hm-services-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.hm-service-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.hm-service-ic {
    font-size: 26px;
    width: 40px;
    color: var(--teal);
}

.hm-service-item h4 {
    margin: 0 0 8px;
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
}

.hm-service-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hm-services-right {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media (min-width: 1024px) {
    .hm-services-grid {
        grid-template-columns: 1fr 2fr;
    }
}

/* ========= HOME - TESTIMONIAL SECTION ========= */
.hm-testi-section {
    position: relative;
    background: var(--blue);
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.hm-testi-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: center;
    text-align: center;
}

.hm-testi-avatar {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--green);
    flex-shrink: 0;
}

.hm-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-testi-text h2 {
    margin: 0 0 18px;
    font-family: "Google Sans", sans-serif;
    font-size: 44px;
    line-height: 1.15;
}

.hm-testi-text blockquote {
    margin: 0;
    font-family: "Google Sans", sans-serif;
    font-style: italic;
    font-size: 20px;
    color: var(--white);
}

.hm-testi-author {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.hm-testi-author .line {
    width: 48px;
    height: 2px;
    background: var(--green);
}

.hm-testi-author .name {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hm-testi-decor {
    position: absolute;
    top: 0;
    right: -140px;
    width: 34%;
    height: 100%;
    background: rgba(197, 163, 107, .08);
    transform: skewX(-12deg);
}

.hm-testi-carousel .owl-nav button.owl-prev,
.hm-testi-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border: none !important;
    font-size: 22px !important;
    line-height: 1 !important;
    z-index: 99;
    transition: background 0.3s ease;
    display: none;
}

@media (min-width: 768px) {
    .hm-testi-wrap {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
}


/* ========= HOME - TEAM SECTION ========= */
.hm-team {
    padding: 90px 0;
    background: #fff;
}

.hm-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 46px;
    align-items: start;
}

.hm-team-left h2 {
    margin: 0 0 14px;
    font-family: "Google Sans", sans-serif;
    color: var(--teal);
    font-size: 40px;
    line-height: 1.15;
}

.hm-team-left p {
    margin: 0 0 22px;
    color: var(--muted);
}

.hm-team-member .hm-team-member-photo {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.hm-team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .7s ease;
}

.hm-team-member:hover img {
    transform: scale(1.05);
}

.hm-team-member h4 {
    margin: 16px 0 6px;
    font-family: "Google Sans", sans-serif;
    color: var(--teal);
    font-size: 26px;
}

.hm-team-member .role {
    margin: 0;
    color: #9ca3af;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
}

@media (min-width: 1024px) {
    .hm-team-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}








/* ========= FOOTER ========= */
.footer {
    background: var(--blue);
    color: #fff;
    padding: 72px 0 30px;
    overflow: hidden;
}

.footer,
.footer * {
    box-sizing: border-box;
}

.footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-inner {
    width: 100%;
}

/* ========= FOOTER CTA ========= */
.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
    margin: 0;
    font-family: "Google Sans", sans-serif;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    max-width: 100%;
    word-break: break-word;
}

/* ========= FOOTER GRID ========= */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
    font-family: "Google Sans", sans-serif;
}

.footer-grid > div {
    min-width: 0;
}

.footer-grid h5 {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.4;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid li {
    margin: 0;
    padding: 0;
}

.footer-grid a {
    color: var(--white);
    font-size: 14px;
    line-height: 1.65;
    display: inline-block;
    word-break: break-word;
    font-family: "Google Sans", sans-serif;
}

.footer-grid a:hover {
    color: var(--gold);
}

/* ========= BRAND ========= */
.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    min-width: 0;
}

.footer-name {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    word-break: break-word;
}

.footer-desc {
    color: var(--white);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 18px;
    max-width: 100%;
    word-break: break-word;
}

.footer-contact {
    min-width: 0;
}

.footer-contact p {
    margin: 0 0 10px;
    line-height: 1.7;
}

.footer-contact a {
    color: var(--white);
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 1.7;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.footer-contact a:hover {
    color: var(--white);
}

/* ========= SOCIAL ========= */
.social {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    flex: 0 0 auto;
}

.social a:hover {
    background: var(--green);
    border-color: var(--green);
    color: #0b2b2b;
}

/* ========= BOTTOM ========= */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
    font-family: "Google Sans", sans-serif;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-copy {
    margin: 0;
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    line-height: 1.8;
    word-break: break-word;
}

.footer-dev-link {
    color: #fff;
    font-weight: 700;
}

.footer-dev-link:hover {
    color: var(--gold);
}

.footer-bottom-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-bottom-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    flex: 0 0 auto;
}

.footer-bottom-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0b2b2b;
}

/* ========= SMALL MOBILE ========= */
@media (max-width: 399px) {
    .footer {
        padding: 56px 0 24px;
    }

    .footer-cta {
        gap: 14px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .footer-cta h2 {
        font-size: 22px;
        line-height: 1.35;
    }

    .footer-grid {
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-grid h5 {
        font-size: 11px;
        letter-spacing: 1.6px;
        margin-bottom: 12px;
    }

    .footer-grid a {
        font-size: 13px;
    }

    .footer-name {
        font-size: 22px;
    }

    .footer-desc {
        font-size: 14px;
        line-height: 1.75;
    }

    .footer-contact a {
        font-size: 13px;
    }

    .social a {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .footer-copy {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .footer-bottom-social a {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* ========= MOBILE ========= */
@media (min-width: 400px) and (max-width: 767px) {
    .footer {
        padding: 60px 0 26px;
    }

    .footer-cta h2 {
        font-size: 24px;
    }

    .footer-grid {
        gap: 26px;
    }

    .footer-name {
        font-size: 23px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .footer-contact a {
        font-size: 14px;
    }
}

/* ========= TABLET ========= */
@media (min-width: 768px) {
    .footer {
        padding: 72px 0 30px;
    }

    .footer-cta {
        flex-direction: row;
        align-items: center;
        gap: 24px;
        padding-bottom: 38px;
        margin-bottom: 38px;
    }

    .footer-cta h2 {
        font-size: 32px;
        max-width: 560px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 26px;
        margin-bottom: 32px;
    }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .footer-copy {
        text-align: left;
    }
}

/* ========= SMALL LAPTOP ========= */
@media (min-width: 992px) {
    .footer {
        padding: 82px 0 34px;
    }

    .footer-cta {
        padding-bottom: 42px;
        margin-bottom: 42px;
    }

    .footer-cta h2 {
        font-size: 34px;
        max-width: 640px;
    }

    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 34px 24px;
        margin-bottom: 34px;
    }

    .footer-name {
        font-size: 26px;
    }

    .footer-desc {
        font-size: 16px;
        max-width: 340px;
    }

    .footer-grid a {
        font-size: 14px;
    }

    .footer-contact a {
        font-size: 15px;
    }

    .social a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .footer-bottom-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ========= LARGE DESKTOP ========= */
@media (min-width: 1200px) {
    .footer-grid {
        gap: 38px;
    }

    .footer-cta h2 {
        font-size: 36px;
    }
}





















:root {
  --lime: #b5f23a;
  --lime-dark: #9de020;
  --lime-light: #d4f97a;
  --dark: #111111;
  --gray-text: #555555;
  --border: #e3e3e3;
  --white: #ffffff;
  --card-bg: #f9f9f9;
  --primary: #00448b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ── CONTAINER WRAPPER ── */
.page-wrap {
  max-width: 1445px;
  margin: 0 auto;
  padding: 109px 16px 32px;
}

@media (max-width: 767px) {
  .page-wrap {
    padding: 115px 12px 24px;
  }
}

/* ── HERO / INTRO ── */
.section-hero {
  border: 1px solid var(--border);
  border-radius: 18px;
  margin: 1.5rem auto;
  max-width: 1200px;
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.quote-marks {
  font-size: 5rem;
  line-height: 1;
  color: var(--green);
  font-family: 'Syne', sans-serif;
  letter-spacing: -4px;
  display: block;
}

.hero-headline {
  display: inline-block;
  background: var(--green);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 500px;
  word-break: break-word;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 500px;
}

.social-circles .btn-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.social-circles .btn-social:hover {
  background: var(--lime-dark);
  transform: scale(1.1);
}

/* ── INFO CARDS STRIP ── */
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.info-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
  background: #fff;
  min-width: 0;
}

.info-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.info-card-text {
  min-width: 0;
}

.info-card-text small {
  font-size: 0.72rem;
  color: var(--gray-text);
  display: block;
  margin-bottom: 3px;
}

.info-card-text span {
  font-size: 0.85rem;
  font-weight: 600;
  word-break: break-word;
}

.arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00448b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.arrow-circle:hover {
  background: #333;
}

/* ── CONTACT FORM SECTION ── */
.contact-section {
  border: 1px solid var(--border);
  border-radius: 18px;
  max-width: 1200px;
  margin: 0 auto 2rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: stretch;
  background: #fff;
}

.contact-img-side {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 420px;
  background: #f2f2f2;
}

.contact-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
  padding: 40px;
}

.collab-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: var(--white);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  z-index: 2;
  margin: 40px 40px 0 40px;
}

.collab-badge small {
  font-size: 0.7rem;
  color: var(--gray-text);
  display: block;
  margin-bottom: 2px;
}

.collab-badge span {
  font-size: 0.82rem;
  font-weight: 600;
  word-break: break-word;
}

.contact-form-side {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  border: 5px solid #555;
  background: #fff;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  padding: 0.55rem 0.85rem;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 3px rgba(181, 242, 58, 0.2);
}

.form-control::placeholder {
  color: #aaa;
}

textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

.form-check-input:checked {
  background-color: var(--dark);
  border-color: var(--dark);
}

.form-check-label {
  font-size: 0.8rem;
  color: var(--gray-text);
}

.btn-send {
  background: #00448b;
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.btn-send:hover {
  background: #333;
  transform: translateY(-1px);
}

/* ── CTA CARD ── */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.cta-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  background: #fff;
  min-width: 0;
  text-align: center;
}

.cta-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  word-break: break-word;
  color: #182435;
}

.cta-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin: 0 auto 1.3rem;
  max-width: 620px;
}

.btn-outline-dark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #00448b;
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-outline-dark-pill:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-dark-pill .bi {
  font-size: 0.75rem;
}

@media (max-width: 575px) {
  .cta-card {
    padding: 1.4rem 1rem;
  }

  .cta-card h5 {
    font-size: 1.1rem;
  }

  .cta-card p {
    font-size: 0.86rem;
  }

  .btn-outline-dark-pill {
    width: 100%;
  }
}
/* ── DONATE BANNER ── */
.donate-banner {
  background: var(--green);
  border-radius: 18px;
  max-width: 960px;
  margin: 0 auto 3rem;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donate-banner::before,
.donate-banner::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  transform: rotate(30deg);
}

.donate-banner::before {
  top: -80px;
  left: -60px;
}

.donate-banner::after {
  bottom: -80px;
  right: -60px;
}

.donate-banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.25;
  word-break: break-word;
  color: #182435;
}

.donate-banner p {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.65);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
}

.donate-input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  padding: 1rem 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  gap: 1.5rem;
  position: relative;
  flex-wrap: nowrap;
}

.donate-input-row span {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  line-height: 1.5;
  white-space: normal;
}

.btn-donate-now {
  background: #00448b;
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  flex: 0 0 auto;
}

.btn-donate-now:hover {
  background: var(--white);
  color: #000;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .donate-banner {
    padding: 2.5rem 1.1rem;
  }

  .donate-banner h2 {
    font-size: 1.35rem;
  }

  .donate-banner p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .donate-input-row {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    padding: 1rem;
    gap: 0.9rem;
    max-width: 100%;
  }

  .donate-input-row span {
    text-align: center;
    font-size: 0.88rem;
  }

  .btn-donate-now {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .donate-banner {
    border-radius: 16px;
  }

  .donate-banner::before,
  .donate-banner::after {
    width: 140px;
    height: 140px;
  }
}




/* ============================= */
/* WELLVOYAGE CONTACT PAGE FONT */
/* ============================= */

body,
.page-wrap,
.section-hero,
.info-strip,
.contact-section,
.cta-grid,
.donate-banner {
    font-family: "Google Sans", sans-serif;
}

.page-wrap h1,
.page-wrap h2,
.page-wrap h3,
.page-wrap h4,
.page-wrap h5,
.page-wrap h6,
.page-wrap p,
.page-wrap a,
.page-wrap span,
.page-wrap small,
.page-wrap label,
.page-wrap input,
.page-wrap select,
.page-wrap textarea,
.page-wrap button {
    font-family: "Google Sans", sans-serif;
}

.form-control,
.form-label,
.form-check-label,
.btn-send,
.btn-outline-dark-pill,
.btn-donate-now,
.hero-headline,
.hero-desc,
.info-card-text small,
.info-card-text span,
.collab-badge small,
.collab-badge span,
.cta-card h5,
.cta-card p,
.donate-banner h2,
.donate-banner p,
.donate-input-row span {
    font-family: "Google Sans", sans-serif;
}

/* Replace old Syne font in quote mark */
.quote-marks {
    font-family: "Google Sans", sans-serif;
}




/* 
  aboutpage */


  /* ── VARIABLES ── */
  :root {
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --font-display: "Google Sans", sans-serif;
    --font-body: "Google Sans", sans-serif;
  }

  /* ── HERO ── */
  .gs-ins-hero-img-wrap {
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  .gs-ins-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gs-ins-hero-text {
    padding: 5rem 1.5rem;
    font-family: "Google Sans", sans-serif;
  }
  .gs-ins-hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    font-family: "Google Sans", sans-serif;
    color: #00448b;
  }
  .gs-ins-hero-text p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
    font-family: "Google Sans", sans-serif;
  }

 




  

/* ── TEAM ── */
.gs-ins-team-section {
  padding: 6rem 0;
  text-align: center;
  font-family: "Google Sans", sans-serif;
  background: #ffffff;
}

.gs-ins-team-section h2 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1rem;
  color: #00448b;
  font-family: "Google Sans", sans-serif;
}

.gs-ins-team-section .gs-ins-subtitle {
  color: #667085;
  max-width: 850px;
  margin: 0 auto 4rem;
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Google Sans", sans-serif;
}

/* Flip Card */
.gs-ins-team-card {
  width: 100%;
  height: 520px;
  perspective: 1200px;
  cursor: pointer;
  outline: none;
}

.gs-ins-team-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.gs-ins-team-card:hover .gs-ins-team-card-inner,
.gs-ins-team-card:focus .gs-ins-team-card-inner,
.gs-ins-team-card.active .gs-ins-team-card-inner {
  transform: rotateY(180deg);
}

.gs-ins-team-card-front,
.gs-ins-team-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 0;
}

/* Front */
.gs-ins-team-card-front {
  background: #f4f8fc;
}

.gs-ins-team-member-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.gs-ins-team-card:hover .gs-ins-team-member-img,
.gs-ins-team-card:focus .gs-ins-team-member-img,
.gs-ins-team-card.active .gs-ins-team-member-img {
  filter: grayscale(0%);
}

.gs-ins-team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.gs-ins-team-card:hover .gs-ins-team-member-img img,
.gs-ins-team-card:focus .gs-ins-team-member-img img,
.gs-ins-team-card.active .gs-ins-team-member-img img {
  transform: scale(1.06);
}

/* Name Layer */
.gs-ins-team-name-layer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px 22px;
  background: rgba(0, 68, 139, 0.92);
  color: #ffffff;
  text-align: left;
  backdrop-filter: blur(8px);
}

.gs-ins-team-name-layer h3 {
  margin: 0 0 5px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  font-family: "Google Sans", sans-serif;
}

.gs-ins-team-name-layer span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Google Sans", sans-serif;
}

/* Back */
.gs-ins-team-card-back {
  background: linear-gradient(145deg, #00448b 0%, #00356d 100%);
  color: #ffffff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.gs-ins-team-back-content {
  text-align: left;
}

.gs-ins-team-back-content h3 {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Google Sans", sans-serif;
}

.gs-ins-team-back-content p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Google Sans", sans-serif;
}

.gs-ins-team-back-content p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .gs-ins-team-card {
    height: 500px;
  }
}

@media (max-width: 767.98px) {
  .gs-ins-team-section {
    padding: 3.5rem 0;
  }

  .gs-ins-team-section h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .gs-ins-team-section .gs-ins-subtitle {
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
  }

  .gs-ins-team-card {
    height: 480px;
  }

  .gs-ins-team-card-back {
    padding: 28px;
  }

  .gs-ins-team-back-content h3 {
    font-size: 1.45rem;
  }

  .gs-ins-team-back-content p {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}

@media (max-width: 575.98px) {
  .gs-ins-team-card {
    height: 460px;
  }

  .gs-ins-team-name-layer {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px 18px;
  }

  .gs-ins-team-name-layer h3 {
    font-size: 1.15rem;
  }

  .gs-ins-team-name-layer span {
    font-size: 0.82rem;
  }

  .gs-ins-team-card-back {
    padding: 24px;
  }
}











  /* ── CTA ── */
  .gs-ins-cta-section {
    border-top: 1px solid var(--gray-200);
    padding: 7rem 0;
    font-family: "Google Sans", sans-serif;
  }

  .gs-ins-cta-section h2 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    color: #00448b;
    font-family: "Google Sans", sans-serif;
  }

  .gs-ins-cta-section .gs-ins-cta-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
  }

  .gs-ins-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2.5rem;
    border: 2px solid var(--black);
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    background: transparent;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    font-family: "Google Sans", sans-serif;
    cursor: pointer;
    white-space: nowrap;
  }
  .gs-ins-btn-cta:hover {
    background: #00448b;
    color: var(--white);
  }

  .gs-ins-cta-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    max-width: 320px;
    line-height: 1.6;
    font-family: "Google Sans", sans-serif;
  }
  .gs-ins-cta-note .gs-ins-highlight { font-weight: 700; color: var(--black); font-style: italic; font-family: "Google Sans", sans-serif; }
  .gs-ins-cta-note .gs-ins-underline-word { font-style: italic; text-decoration: underline; font-family: "Google Sans", sans-serif; }
  .gs-ins-cta-note .gs-ins-strong-border { font-weight: 700; color: var(--black); border-bottom: 1px solid var(--black); font-family: "Google Sans", sans-serif; }

  /* ── PANEL ICON ── */
  .gs-ins-panel-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 1rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 767.98px) {
    .gs-ins-hero-img-wrap { height: 260px; }
    .gs-ins-hero-text { padding: 3rem 1rem; text-align: left; }
    .gs-ins-hero-text p { margin: 0; }
    .gs-ins-services-section .gs-ins-service-item-right { text-align: left; }
    .gs-ins-detail-section { padding: 3rem 0; }
    .gs-ins-detail-section-heading { font-size: 1.5rem; }
    .gs-ins-cta-section { padding: 4rem 0; }
    .gs-ins-cta-section h2 { font-size: clamp(2rem, 10vw, 3rem); }
    .gs-ins-accordion { padding: 3rem 1rem; }
    .gs-ins-accordion .gs-ins-acc-header h3 { font-size: 1.1rem; }
    .gs-ins-team-section { padding: 3rem 0; }
    .gs-ins-btn-cta { padding: 0.9rem 1.75rem; font-size: 0.9rem; }
    .gs-ins-detail-img-wrap { aspect-ratio: 4 / 3; }
  }

  @media (max-width: 575.98px) {
    .gs-ins-hero-img-wrap { height: 200px; }
    .gs-ins-hero-text h1 { font-size: 2rem; }
    .gs-ins-accordion .gs-ins-acc-header h3 { font-size: 1rem; }
    .gs-ins-detail-panel h3 { font-size: 0.95rem; }
    .gs-ins-cta-section .d-flex { flex-direction: column !important; }
  }















/* services-hospitals */





    /* ── DIVIDER LINE ── */
    .priva-section-divider {
        width: 48px;
        height: 3px;
        background: var(--gold);
        margin: 14px 0 20px;
        border-radius: 2px;
    }

    /* ── INTRO SECTION ── */
    .priva-intro-section {
        padding: 80px 0;
        font-family: "Google Sans", sans-serif;
    }

    .priva-intro-section .priva-label-tag {
        background: var(--gold);
        color: var(--navy);
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        padding: 4px 12px;
        border-radius: 2px;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 16px;
        font-family: "Google Sans", sans-serif;
    }

    .priva-intro-section h2 {
        font-size: clamp(1.5rem, 3.5vw, 2.2rem);
        color: var(--navy);
        line-height: 1.3;
        font-family: "Google Sans", sans-serif;
    }

    .priva-intro-section p {
        color: var(--text-muted);
        line-height: 1.8;
        font-size: .93rem;
        font-family: "Google Sans", sans-serif;
    }

    .priva-intro-img {
        width: 100%;
        border-radius: 4px;
        object-fit: cover;
        min-height: 360px;
    }

    /* ── FEATURES ── */
    .priva-features-section {
        padding: 60px 0;
        background: var(--white);
        font-family: "Google Sans", sans-serif;
    }

    .priva-feature-card {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        padding: 28px 20px;
        border-radius: 8px;
        transition: box-shadow .25s, transform .25s;
    }

    .priva-feature-card:hover {
        box-shadow: 0 8px 30px rgba(30, 39, 87, .1);
        transform: translateY(-4px);
    }

    .priva-feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        background: #00448b;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.3rem;
    }

    .priva-feature-card h5 {
        font-size: 1rem;
        color: var(--navy);
        margin-bottom: 6px;
        font-family: "Google Sans", sans-serif;
        font-weight: 700;
    }

    .priva-feature-card p {
        font-size: .84rem;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.7;
        font-family: "Google Sans", sans-serif;
    }

    /* ── PROTECTION SECTION ── */
    .priva-protection-section {
        padding: 80px 0;
        background: var(--light-bg);
        font-family: "Google Sans", sans-serif;
    }

    .priva-protection-section h2 {
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        color: var(--navy);
        font-family: "Google Sans", sans-serif;
    }

    .priva-protection-section p {
        color: var(--text-muted);
        line-height: 1.85;
        font-size: .93rem;
        font-family: "Google Sans", sans-serif;
    }

    .priva-protection-img {
        width: 100%;
        border-radius: 4px;
        object-fit: cover;
        min-height: 380px;
    }

    /* ── CTA BAND ── */
    .priva-cta-band {
        background: #00448b;
        padding: 60px 0;
        font-family: "Google Sans", sans-serif;
    }

    .priva-cta-band h2 {
        font-size: clamp(1.4rem, 3vw, 2rem);
        color: var(--white);
        line-height: 1.4;
        font-family: "Google Sans", sans-serif;
    }

    .priva-cta-band h2 span {
        color: var(--gold);
    }

    .priva-cta-band p {
        color: #a0aec0;
        font-size: .88rem;
        margin: 0;
        font-family: "Google Sans", sans-serif;
    }

    .priva-cta-band .priva-phone-cta {
        text-align: center;
        font-family: "Google Sans", sans-serif;
    }

    .priva-cta-band .priva-phone-cta .priva-label {
        font-size: .72rem;
        color: #a0aec0;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 4px;
        font-family: "Google Sans", sans-serif;
    }

    .priva-cta-band .priva-phone-cta .priva-number {
        font-size: clamp(1.6rem, 4vw, 2.4rem);
        color: var(--white);
        font-family: "Google Sans", sans-serif;
        font-weight: 700;
        letter-spacing: -1px;
    }

    .priva-cta-band .priva-btn-contact {
        display: inline-block;
        margin-top: 12px;
        border: 1px solid rgba(255, 255, 255, .3);
        color: var(--white);
        font-size: .75rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 8px 28px;
        border-radius: 2px;
        text-decoration: none;
        transition: background .2s, color .2s;
        font-family: "Google Sans", sans-serif;
    }

    .priva-cta-band .priva-btn-contact:hover {
        background: var(--green);
        color: var(--navy);
        border-color: var(--gold);
    }

    .priva-cta-divider {
        width: 1px;
        background: rgba(255, 255, 255, .15);
        margin: 0 auto;
    }

   
    /* ── SCROLL TO TOP ── */
    #scrollTop {
        position: fixed;
        bottom: 28px;
        right: 28px;
        background: var(--navy);
        color: var(--gold);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
        opacity: 0;
        transition: opacity .3s, transform .3s;
        z-index: 999;
        transform: translateY(12px);
        font-family: "Google Sans", sans-serif;
    }

    #scrollTop.visible {
        opacity: 1;
        transform: translateY(0);
    }

    #scrollTop:hover {
        background: var(--gold);
        color: var(--navy);
    }

    /* ── AOS-LIKE FADE-IN ── */
    .priva-fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity .6s ease, transform .6s ease;
        font-family: "Google Sans", sans-serif;
    }

    .priva-fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }



























    /* ============================= */
/* WellVoyage Careers CTA Section */
/* ============================= */

.wv-career-cta-section {
    padding: 90px 0;
    background: #ffffff;
    font-family: "Google Sans", sans-serif;
    overflow: hidden;
}

.wv-career-cta-box {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 68, 139, 0.92), rgba(0, 148, 116, 0.88)),
        url("../images/career-bgshape.png");
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 70px rgba(0, 68, 139, 0.18);
}

.wv-career-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 38%);
    pointer-events: none;
}

.wv-career-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    margin: 0 auto 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.wv-career-cta-box h2 {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto 18px;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.wv-career-cta-box p {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
}

.wv-career-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    background: #ffffff;
    color: #00448b;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
}

.wv-career-btn:hover {
    background: #00356d;
    color: #ffffff;
    transform: translateY(-3px);
}

.wv-career-btn i {
    font-size: 16px;
    transition: transform 0.35s ease;
}

.wv-career-btn:hover i {
    transform: translate(3px, -3px);
}

/* Responsive */

@media (max-width: 991px) {
    .wv-career-cta-section {
        padding: 75px 0;
    }

    .wv-career-cta-box {
        padding: 70px 32px;
    }

    .wv-career-cta-box h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .wv-career-cta-box {
        padding: 60px 24px;
        border-radius: 20px;
    }

    .wv-career-cta-box h2 {
        font-size: 32px;
    }

    .wv-career-cta-box p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .wv-career-cta-section {
        padding: 60px 0;
    }

    .wv-career-cta-box {
        padding: 50px 20px;
    }

    .wv-career-icon {
        width: 52px;
        height: 52px;
        font-size: 23px;
    }

    .wv-career-cta-box h2 {
        font-size: 28px;
    }

    .wv-career-btn {
        width: 100%;
        padding: 13px 22px;
    }
}