/*
Theme Name: Cobalt Theme
Theme URI: http://cobaltsearch.com/
Author: NeverGuess
Author URI: http://cobaltsearch.com/
Description: A custom WordPress theme for Cobalt.
Version: 1.0
Text Domain: cobalt-theme
*/

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

strong {
    font-weight: 700;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*, *:before, *:after {
    box-sizing: border-box;
}

@media (max-width: 300px) {
    html, body {
        min-width: 300px;
    }
}

/* Header Styles */
.site-header {
    background: transparent;
    width: 100%;
    box-sizing: border-box;
    padding: 32px 64px;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: ease-in 0.2s;
    /*border-bottom: 1px solid #F0F0F0;*/
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
}

.site-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #FFF;
    font-family: Roboto, Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.32px;
    text-decoration: none;
    /*padding: 8px 12px;*/
    /*border-radius: 4px;*/
    /*background: #1B4F9E;*/
    transition: background 0.2s;
}

.nav-link:hover, .nav-link:focus {
    color: #3FA635;
}

.sticky-header-logo {
    display: none;
}

header.site-header.sticky-header {
    background: #FFF;
    box-shadow: 0 7px 25px 0 rgba(0, 0, 0, 0.06);
}

.sticky-header .nav-links .nav-link {
    color: #797979;
}

.sticky-header .nav-links .nav-link:hover, .sticky-header .nav-links .nav-link:focus{
    color: #A62274;
}

.sticky-header .sticky-header-logo {
    display: block;
}

.sticky-header .header-logo {
    display: none;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1B4F9E;
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    padding: 14px 20px;
    background: #FFF;
    /*border: 2px solid #1B4F9E;*/
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27, 79, 158, 0.25);
}

.cta-icon {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 0;
    margin-left: 24px;
    cursor: pointer;
}

.hamburger-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 8px rgba(27, 79, 158, 0.08);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .site-header {
        padding: 24px 32px;
    }

    .header-inner {
        max-width: 100%;
    }

    .nav-links {
        gap: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .site-header {
        padding: 30px 20px;
    }

    .header-inner {
        flex-direction: row;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .site-logo svg {
        max-width: 148px;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    background: var(--Gradient, linear-gradient(100deg, #A62274 0%, #1B4F9E 42.07%, #16A34A 100%));
}

.mobile-menu.active {
    right: 0;
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    background: #fff;
}

.mobile-menu-close:hover {
    background: #F0F0F0;
}

.mobile-nav-header {
    color: #FFF;
    font-family: "Lexend Deca", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    padding: 27px 20px 25px;
    border-bottom: 1px solid #fff;
}

.mobile-nav-link {
    letter-spacing: 0.36px;
    text-decoration: none;
    border-bottom: 1px solid #F0F0F0;
    transition: color 0.2s;
    color: #FFF;
    font-family: "Lexend Deca", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    padding: 25px 20px;
}

.mobile-nav-link:hover {
    color: #A62274;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #1B4F9E;
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    padding: 16px 24px;
    background: #F8F9FA;
    border: 2px solid #1B4F9E;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.2s, color 0.2s;
}

.mobile-cta-btn:hover {
    background: #1B4F9E;
    color: #FFF;
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

/* Footer Banner Styles */
.footer-banner {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
    position: relative;
}

.footer-banner-inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 8px;
    text-align: center;
    z-index: 2;
    background-image: url('/wp-content/uploads/2025/07/footer-banner-bg-min.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    width: 1408px;
    height: 419px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.footer-banner-title {
    color: #FFF;
    text-align: center;
    font-family: "Lexend Deca", Arial, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 24px;
    max-width: 1060px;
}

.footer-banner-title strong {
    color: #FFF;
    font-family: "Lexend Deca";
    font-size: inherit;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.footer-banner-subtitle {
    color: #FFF;
    font-family: Roboto, Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0.32px;
    margin-bottom: 40px;
}

.footer-banner-cta, .content-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 23px;
    border-radius: 50px;
    background-color: #FFF;
    box-shadow: -15px 0px 0px 0px rgba(255, 255, 255, 0.25);
    color: #1B4F9E;
    font-family: Roboto, Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.footer-banner-cta:hover, .content-cta:hover {
    transform: translateY(-2px);
    box-shadow: -15px 2px 10px 0px rgba(255, 255, 255, 0.3);
}

.content-cta.cta-purple {
    background-color: #A62274;
    color: #FFF;
}

.content-cta.cta-blue {
    background-color: #1B4F9E;
    color: #FFF;
}
.content-cta.cta-green {
    background-color: #3FA635;
    color: #FFF;
}

.footer-banner-arrow, .content-cta-arrow {
    display: flex;
    align-items: center;
}

.footer-banner-spiral {
    position: absolute;
    top: -85px;
    right: -91px;
    z-index: 0;
}

/* Footer Styles */
.site-footer {
    /*background-color: #1B4F9E;*/
    padding: 60px 20px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    /*padding: 0 20px 0 40px;*/
    display: flex;
    gap: 80px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(32, 32, 32, 0.10);
    position: relative;
}

.footer-container > svg {
    position: absolute;
    z-index: 3;
    top: -232px;
    left: calc(1px - 48%);
    /* transform: translate(-50%, 0%) scale(1); */
    /* height: 115%; */
    width: 100%;
}

/* Left Column - Logo and Social in Column Layout */
.footer-left {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo svg {
    width: 207px;
    height: 75px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    display: block;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link img {
    width: 45px;
    height: 44px;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid rgba(32, 32, 32, 0.10);
}

/* Right Column - 3-Column Navigation (700px max width) */
.footer-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.footer-nav-container {
    max-width: 700px;
    width: 100%;
    display: flex;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.footer-heading {
    font-family: Roboto, sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
    color: #202020;
    font-size: 16px;
    font-style: normal;
    line-height: 120%;
}

a.footer-heading {
    text-decoration: none;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-container a:hover {
    color: #A62274;
}
.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #3C3C3B;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
    line-height: 120%;
    display: flex;
    gap: 12px;
}

.footer-link svg {
    flex-shrink: 0;
}

.footer-link:hover {
    opacity: 1;
    /*color: #FFF;*/
}

footer .cta-btn {
    background: #1B4F9E;
    color: #FFF;
}

.footer-copyright {
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    color: #3C3C3B;
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.policy-links {
    display: flex;
    gap: 40px;
    color: #3C3C3B;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    text-decoration: none;
}

.policy-link {
    color: #3C3C3B;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-banner-spiral {
        display: none;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .footer-nav-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .footer-logo svg {
        width: 150px;
        height: 55px;
    }

    .site-footer {
        padding: 20px 0;
    }

    .footer-banner-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .footer-banner {
        padding: 20px 20px;
    }

    .footer-container > svg {
        display: none;
    }

    .footer-banner-subtitle {
        margin-bottom: 20px;
    }

    .footer-banner-inner {
        height: auto;
    }
}

/* General Section Container */
.section-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

section {
    padding: 60px 20px;
    box-sizing: border-box;
}

/* Reusable Lift Hover Effect */
.lift-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lift-hover:hover {
    transform: translateY(-10px);
    /*box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);*/
}

/* Lift effect with custom shadow colors */
.lift-hover-blue:hover {
    box-shadow: 0 6px 20px rgba(27, 79, 158, 0.25);
}

.lift-hover-purple:hover {
    box-shadow: 0 6px 20px rgba(166, 34, 116, 0.25);
}

.lift-hover-green:hover {
    box-shadow: 0 6px 20px rgba(63, 165, 53, 0.25);
}

/* Different lift distances */
.lift-hover-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.lift-hover-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Blue Banner style Start */
.blue-banner {
    padding: 66px 0;
    background-color: #CADCFB;
    background-image: url('/wp-content/uploads/2025/07/bb-bgimg-min.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto;
}

.blue-banner-content {
    max-width: 1124px;
    margin: 0 auto;
    padding: 35px 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-radius: 30px;
    background: #FFF;
}

.tile {
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /*min-height: 280px;*/
    border: 1px solid #D2D2D2;
}

.tile-text {
    justify-content: center;
}

.tile-text svg {
    margin-bottom: 10px;
}

.tile-title {
    color: #FFF;
    font-family: Roboto, sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 6px 0;
}

.tile-subtitle {
    color: #202020;
    text-align: center;
    font-family: "Lexend Deca", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    margin: 0;
}

.tile.purple {
    background: #FCE4F3;
}

.tile.blue {
    background: #DDE9FF;
}

.tile.green {
    background: #E6FEE3;
}

.tile.purple h3 {
    color: #A62274;
}

.tile.blue h3 {
    color: #1B4F9E;
}

.tile.green h3 {
    color: #3FA635;
}

.tile-img1, .tile-img2, .tile-img3 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tile-img1 {
    background-image: url('/wp-content/uploads/2025/07/bb-splash-min.png');
}

.tile-img2 {
    background-image: url('/wp-content/uploads/2025/07/bb-globe-min.png');
}

.tile-img3 {
    background-image: url('/wp-content/uploads/2025/07/bb-face-min.png');
}

/* Mobile ordering - show tile-img2 (4th tile) first */
@media (max-width: 767px) {
    .tile-img2 {
        order: 1;
    }

    .tile:nth-child(1) { /* purple text tile */
        order: 2;
    }

    .tile:nth-child(2) { /* tile-img1 */
        order: 3;
    }

    .tile:nth-child(3) { /* blue te xt tile */
        order: 6;
    }

    .tile:nth-child(5) { /* green text tile */
        order: 5;
    }

    .tile:nth-child(6) { /* tile-img3 */
        order: 5;
    }
}


/* Tablet styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .blue-banner-content {
        grid-template-columns: repeat(2, 1fr);
        padding: 35px 24px;
        gap: 16px;
    }

    .tile {
        min-height: 240px;
        padding: 32px 24px;
    }

    .tile-title {
        font-size: 24px;
    }

    .tile-subtitle {
        font-size: 16px;
    }

    /* Reset order for tablet - normal order */
    .tile {
        order: unset;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .blue-banner {
        padding: 20px 20px 20px;
    }

    .blue-banner-content {
        grid-template-columns: 1fr;
        padding: 35px 20px;
        gap: 16px;
    }

    .tile {
        min-height: 200px;
        padding: 32px 20px;
    }

    .tile-title {
        font-size: 24px;
    }

    .tile-subtitle {
        font-size: 16px;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    /* Reset order for desktop - normal order */
    .tile {
        order: unset;
    }
}

/* Blue Banner style End */

/* Homepage Hero style Start*/
.hero-section {
    background: url('/wp-content/uploads/2025/09/home-hero-bg30-min.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 60px 20px;
    margin-top: -148px;
    padding-top: 109px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 64px 0;
    margin-top: 40px;
}

.hero-text {
    flex: 1;
    max-width: 796px;
}

.hero-text h1 {
    color: #FFF;
    font-family: "Lexend Deca";
    font-size: 56px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 67.2px */
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-text h1 .green-text {
    color: #3FA635;
    font-weight: 700;
}

.hero-text h1 .purple-text {
    color: #A62274;
    font-weight: 700;
}

.purple-text {
    color: #A62274;
    font-weight: 700;
}

.green-text {
    color: #3FA635;
    font-weight: 700;
}

.blue-text {
    color: #1B4F9E;
    font-weight: 700;
}

.white-text {
    color: #FFF;
    font-weight: 700;
}

.hero-subtitle {
    color: #FFF;
    font-family: Roboto;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 51.2px */
    letter-spacing: 0.64px;
}

@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 34px;
        line-height: 120%; /* 43.2px */
        text-align: center;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 160%; /* 38.4px */
        text-align: center;
    }
}

/* Homepage Hero style End*/

/* Homepage Leadership Search style Start */
.leadership-search {
    background-image: url("/wp-content/uploads/2025/07/blue-arrow-bg.png");
    background-position: top 246px right 35px;
    background-repeat: no-repeat;
    background-size: contain;
}

.leadership-search .section-container{
    overflow: visible;
}

.section-pretitle-line {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 40px;
}

.section-pretitle-line::before {
    content: '';
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(32, 32, 32, 0.10);
    z-index: -1;
}

.section-pretitle {
    background-color: white;
    padding: 0 1rem 0 0;
    position: relative;
    z-index: 1;
    display: inline-block;
    width: auto;
    color: #A62274;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
}

.section-title {
    color: #202020;
    font-family: "Lexend Deca";
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 48px */
}

.section-title strong {
    font-weight: 700;
}

.leadership-search .section-title {
    max-width: 870px;
    margin-bottom: 32px;
}

.section-subtext {
    color: #202020;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21.6px */
    letter-spacing: 0.36px;
}

.multi-color-cards {
    display: flex;
}

.multi-color-cards.row-cards {
    position: relative;
    justify-content: space-between;
    gap: 20px;
    margin: 110px auto 0;
    height: 463px;
}

.multi-color-cards.row-cards > svg {
    position: absolute;
    top: -72px;
    left: -72px;
    z-index: -1;
}

.color-cards {
    border-radius: 18.998px;
    background: #DDE9FF;
    box-shadow: 0px 5.699px 9.499px 0px rgba(204, 204, 204, 0.25);
    width: 25%;
    padding: 19px;
    transition: all 0.3s ease;
    height: 368px;
}

.color-cards:nth-child(even) {
    align-self: end;
}

.circle-log {
    padding: 18px;
    background: #fff;
    width: auto;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.circle-log.number-circle .number {
    color: #FFF;
    font-family: "Lexend Deca";
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 31.2px */
    transition: color 0.3s ease;
}

.color-cards.purple {
    background: #FCE4F3;
}

.color-cards.blue {
    background: #DDE9FF;
}

.color-cards.green {
    background: #E6FEE3;
}

.purple .circle-log.number-circle .number {
    color: #A62274;
}

.blue .circle-log.number-circle .number {
    color: #1B4F9E;
}

.green .circle-log.number-circle .number {
    color: #3FA635;
}

.purple.color-cards:hover .circle-log {
    background: #A62274;
}

.blue.color-cards:hover .circle-log {
    background: #1B4F9E;
}

.green.color-cards:hover .circle-log {
    background: #3FA635;
}

.purple.color-cards:hover .circle-log .number, .blue.color-cards:hover .circle-log .number, .green.color-cards:hover .circle-log .number {
    color: #ffffff;
}

.card-title {
    color: #202020;
    font-family: "Lexend Deca";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 28.8px */
    margin-bottom: 20px;
}

.card-text {
    color: #3C3C3B;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
}

.color-cards.img {
    background-image: url("/wp-content/uploads/2025/09/faces4-min.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    justify-content: center;
}

.color-cards.img > a {
    margin-bottom: 20px;
}

@media (max-width: 1310px) {
    .multi-color-cards.row-cards {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
    }
}

@media (max-width: 1023px) {
    .color-cards {
        width: 48%;
    }

    .leadership-search {
        background-image: none;
    }
}

@media (max-width: 991px) {
    .section-subtext {
        line-height: 150%;
    }
}

@media (max-width: 767px) {
    .section-pretitle {
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-subtext {
        font-size: 14px;
        line-height: 150%;
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .card-text {
        font-size: 14px;
    }

    .color-cards {
        width: 100%;
        height: 268px;
    }

    .circle-log {
        padding: 11px
    }

    .leadership-search {
        background-image: none;
        padding: 20px 20px;
    }

    .multi-color-cards.row-cards > svg {
        display: none;
    }

    .multi-color-cards.row-cards {
        margin: 30px auto 0;
    }
}

/* Homepage Leadership Search style End */

/* Homepage Cobalt Difference style Start */
section.cobalt-difference {
    background-image: url("/wp-content/uploads/2025/07/wave-bg-min.png");
    background-position: center top;
}

.cobalt-difference .section-content {
    display: flex;
}

.cobalt-difference .section-content > div {
    width: 50%;
}

.cobalt-difference .section-content .multi-color-cards {
    flex-wrap: wrap;
    gap: 0 40px;
}

.cobalt-difference .section-content .color-cards {
    width: 46%;
}

.cobalt-difference .section-content .color-cards:nth-child(odd) {
    margin-top: 40px;
}

.cobalt-difference .section-content .color-cards:nth-child(even) {
    margin-bottom: 40px;
}

.cobalt-difference .section-title {
    margin-bottom: 23px;
    max-width: 626px;
}

.cobalt-difference .section-subtext {
    margin-bottom: 63px;
    max-width: 614px;
}

.cobalt-difference .section-pretitle-line {
    margin-bottom: 40px;
}

.cobalt-difference .section-content .left-side {
    padding-right: 20px;
}

.cobalt-difference .color-cards.purple .circle-log {
    background: #A62274;
}

.cobalt-difference .color-cards.blue .circle-log {
    background: #1B4F9E;
}

.cobalt-difference .color-cards.green .circle-log {
    background: #3FA635;
}

@media (max-width: 1210px) {
    .cobalt-difference .section-content .color-cards {
        height: 400px;
    }
}

@media (max-width: 1160px) {
    .cobalt-difference .section-content > div {
        width: 100%;
    }

    .cobalt-difference .section-content {
        flex-wrap: wrap;
    }

    .cobalt-difference .section-title {
        max-width: 80%;
        margin: 0 auto 23px;
        text-align: center;
    }

    .cobalt-difference .section-subtext {
        max-width: 80%;
        margin: 0 auto 40px;
        text-align: center;
    }

    .cobalt-difference .section-content .left-side {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    section.cobalt-difference {
        background-image: none;
        padding: 20px 20px 60px;
    }

    .cobalt-difference .section-content .left-side img {
        max-width: 100%;
    }

    .cobalt-difference .section-title {
        max-width: 100%;
        margin: 0 auto 12px;
        text-align: left;
    }

    .cobalt-difference .section-subtext {
        max-width: 100%;
        margin: 0 auto 20px;
        text-align: left;
        line-height: 150%;
    }

    .cobalt-difference .section-content .color-cards {
        width: 100%;
        height: 268px;
    }

    .cobalt-difference .section-content .color-cards:nth-child(odd), .cobalt-difference .section-content .color-cards:nth-child(even) {
        margin: 0;
    }

    .cobalt-difference .section-content .multi-color-cards {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Homepage Cobalt Difference style End */

/* Homepage White Banner style Start */
section.white-banner {
    background-image: url("/wp-content/uploads/2025/08/white-banner-bg-min3.png");
    background-position: center;
    padding: 68px 20px 140px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 200px 0 80px
}

section.white-banner .section-container {
    margin: 0 auto;
    max-width: 878px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

section.white-banner .section-title {
    max-width: 709px;
    margin: 0 auto;
}

section.white-banner .section-container .section-subtext {
    max-width: 820px;
    margin: 0 auto;
}

section.white-banner a.content-cta.cta-purple {
    margin-top: 24px;
}

@media (min-width: 1440px){
    section.white-banner {
        background-size: contain;
        background-repeat: no-repeat;
    }
}

@media (max-width: 767px) {
    section.white-banner {
        margin: 50px 0 80px;
    }

    section.white-banner {
        background-image: none;
        padding: 0 20px;
    }

    section.white-banner a {
        display: none;
    }

    section.white-banner .section-container .section-subtext {
        line-height: 150%;
    }
}

/* Homepage White Banner style End */

/* Homepage Reviews Start */

.blue-banner.reviews {
    background-image: url("/wp-content/uploads/2025/07/bb-bgimg2-min.png");
    background-size: contain;
    padding: 66px 20px;
}

.review-item {
    border-radius: 20px;
    background: #FFF;
    padding: 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blue-banner.reviews .section-title {
    /*max-width: 1172px;*/
    max-width: 100%;
}

.blue-banner.reviews .section-title:nth-child(2) {
    margin-top: 16px;
}

.slider-nav-divider {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.60);
    margin-right: 25px;
}

.slider-arrows-container {
    display: flex;
    gap: 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    background: #fff;
}

.slider-arrow {
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0;
    transition: all 0.3s ease;
    border-radius: 0;
}

.slider-arrow.slider-prev {
    background: #F4F8FF;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-radius: 50px;
}

.slider-arrow.slider-next {
    background: #F4F8FF;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border-radius: 50px;
}

.slider-arrow:hover {
    opacity: 0.8;
}

.slider-arrow:disabled {
    opacity: 1;
    cursor: not-allowed;
    background: #fff;
}

.slider-arrow svg {
    width: 17px;
    height: 16px;
}

/* Desktop and Tablet - Slider Layout */
@media (min-width: 768px) {
    .section-container {
        overflow: hidden; /* Add overflow hidden to parent container */
    }

    .reviews-container {
        display: flex;
        transition: transform 0.3s ease;
        width: 166.67%; /* Total width for 5 slides showing 3 at a time (5/3 * 100%) */
        margin-top: 64px;
        gap: 12px;
    }

    .review-item {
        flex: 0 0 calc(20% - 9.6px); /* Each slide takes 20% minus gap adjustment (12px * 4 gaps / 5 slides = 9.6px) */
        margin: 0;
        box-sizing: border-box;
    }

    .reviews-slider-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }
}

/* Mobile - Slider Layout */
@media (max-width: 767px) {
    .blue-banner.reviews {
        padding: 20px;
    }

    .section-container {
        overflow: hidden; /* Move overflow hidden to parent container */
        padding: 0;
    }

    .blue-banner.reviews .section-title {
        text-align: center;
    }

    .reviews-container {
        display: flex;
        transition: transform 0.3s ease;
        width: 500%; /* Total width for 5 slides */
        margin-top: 38px;
        gap: 12px;
    }

    .review-item {
        flex: 0 0 calc(20% - 9.6px); /* Each slide takes 20% minus gap adjustment */
        margin: 0 !important;
        padding: 20px;
        box-sizing: border-box;
    }

    .reviews-slider-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        margin-top: 30px;
        padding: 0 20px;
        position: relative;
    }

    .slider-dots {
        display: none; /* Remove dots */
    }
}

.review-img {
    position: relative;
    margin-bottom: 20px;
}

.reviewer-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.review-img svg {
    /*position: absolute;*/
    /*top: -10px;*/
    /*right: -20px;*/
    width: 100px;
    height: 100px;
    vertical-align: baseline;
    margin-left: -24px;
    z-index: -1;
}

.review-text {
    margin-bottom: 15px;
    flex-grow: 1;
    color: #3C3C3B;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.review-author {
    margin-bottom: 5px;
    color: #202020;
    font-family: "Bonheur Royale", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.review-position {
    color: #3C3C3B;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 22.4px */
}

/* About Page Styles */
@media (max-width: 991px) {
    .about-page .section-subtext {
        line-height: 150%;
    }
}

@media (max-width: 767px) {
    /*.about-page {
        padding: 20px;
    }*/

    .about-page .section-title {
        font-size: 24px;
    }

    .about-page .section-subtext {
        font-size: 16px;
    }
}
/* About Hero Section */
