:root {
    --navy: #172e81;
    --gold: #ebbf14;
    --cream: #e9ecef;
    --white: #FFFFFF;
    --cyan: #00adef;
    --gray-100: #e9ecef;
    --gray-200: #ced4d9;
    --gray-700: #5f6368;
    --gray-dark: #2f2f2f;
    --text: #2f2f2f;
    --font-display: 'HelveticaNeueLTStd-Bd', Helvetica, Arial, sans-serif;
    --font-body: 'HelveticaNeueLTStd-Roman', Helvetica, Arial, sans-serif;
    --font-headers: 'Helvetica Neue LT Std', Helvetica, Arial, sans-serif;
    --radius: 6px;
    --radius-lg: 14px;
    --shadow-sm: 0 2px 8px rgba(10,31,68,0.08);
    --shadow-md: 0 6px 24px rgba(10,31,68,0.13);
    --transition: 0.25s ease;
}


.breadcrumb {
    background: var(--cream);
    padding: 1px 0 8px 0;
}
.breadcrumb ul li {
    padding-top: 0px;
    line-height: 1;
}
ul.breadcrumbs {
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== HEADER ===== */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

/* ===== HERO ===== */
.hero {
    background: var(--white);
    color: var(--gray-dark);
    position: relative;
    overflow: hidden;
}
.hero h2 {
    font-family: var(--font-headers);
    font-size: 2.8em;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero h2 em {
    font-style: normal;
    color: var(--cyan);
}
.hero-lead {
    font-size: 1.1em;
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 300;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 2% 0 5% 0;
}
.stat {
    text-align: center;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    padding: 5% 0;
    background: #e9ecef;
}
.stat-num {
    display: block;
    font-family: var(--font-headers);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}
.stat-label {
    font-size: 1.15em;
    color: var(--text);
    margin-top: 0.25rem;
    text-transform: uppercase;
    line-height: 1.23;
    letter-spacing: 0.06em;
    font-weight: 600;
    display: block;
}
.stat-label br {
    padding: 0;
    margin: 0;
    height: 0px;
}
/* ===== SECTION BASE ===== */
section[id], article[id] {
    scroll-margin-top: calc(var(--page-nav-offset, 72px) + 10px);
}

section p, section ul li {
    color: var(--gray-dark);
}


.vtabbedSection{
    margin-bottom: 40px;
}

.tabbedContent{
    padding: 0 5%;
}

.section-lead {
    font-size: 1.1em;
    color: var(--gray-dark);
    margin-bottom: 30px !important;
}
.panel3-toggle {
    align-items: center;
}
.panel3-colored {
    background-color: var(--gray-100);
}
.section-title-yellow {
    font-family: var(--font-headers);
    font-size: 2.2em;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--navy);
    border-bottom: 3px solid var(--gold);
    display: inline-block;
}
.esl-image-text-row {
    display: grid;
    grid-template-columns: minmax(0, 13%) minmax(0, 87%);
    align-items: start;
    gap: 1.5rem;
    margin: 35px 0 50px 0;
}
.esl-image-block {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}
.esl-image-block img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.esl-text-block {
    min-width: 0;
}
.esl-text-block h3 {
    margin-top: 0;
}
@media (max-width: 767px) {
    .esl-image-text-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .esl-image-block {
        max-width: 180px;
    }
}
lite-youtube {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

/* ===== WHY BERKELEY ===== */
.imageCard_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.imageCard_card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.internalCardCont {
    padding: 0 15px 15px 15px;
}
.imageCard_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition);
}
.imageCard_card::hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.imageCard_card::hover::before {
    transform: scaleY(1);
}

.imageCard_card_one{
grid-template-columns: repeat(3, 1fr);
}
.imageCard_card_two{
   grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1377px) {
    .imageCard_card_one {
        grid-template-columns: repeat(2, 1fr);
    }

    .imageCard_card_two {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 991px) {
    .imageCard_card_one{
    grid-template-columns: repeat(3, 1fr);
    }
    .imageCard_card_two{
       grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 917px) {
    .imageCard_card_one{
    grid-template-columns: repeat(2, 1fr);
    }
    .imageCard_card_two{
       grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 613px) {
    .imageCard_card_one,
    .imageCard_card_two {
        grid-template-columns: 1fr;
    }
}

.imageCard_card h3, .imageCard_card h4 {
    font-family: var(--font-headers);
    font-size: 1.5em;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.imageCard_imagewrapper {
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    aspect-ratio: 16 / 9;
    background: var(--gray-100);
}

.imageCard_imagewrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition), filter var(--transition);
}
.imageCard_card:hover .imageCard_imagewrapper img {
    transform: scale(1.05);
    filter: saturate(1.05) brightness(1.02);
}

 .imageCard_card p {
    font-size: 1em;
    color: var(--text);
    line-height: 1.6;
}


/* ===== PROGRAMS ===== */
.programs-list {
    display: grid;
    /* grid-template-columns: 1fr 1fr;
    */
    /* gap: 0.5rem;
    */
    padding: 0 0 0 20px;
    list-style: none;
}
.programs-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--gray-700);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    transition: color var(--transition);
}
.programs-list li::before {
    content: '→';
    color: var(--gold);
    font-size: 1.25em;
    flex-shrink: 0;
    padding-top: 1px;
    line-height: 1;
    font-weight: 900;
}
.programs-list li:hover {
    color: var(--navy);
}
/* ===== ADMISSIONS TABS ===== */
.link-inverted {
    color: var(--white);
}
.tab-buttons {
    display: flex;
    border-bottom: 3px solid var(--navy);
    margin-bottom: 28px;
}
.tab-btn {
    background: var(--gray-100);
    color: var(--navy);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
}

.tab-btn.active {
    color: var(--white);
    background-color: var(--navy);
}

.tab-btn:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
    border-radius: 4px;
    border-bottom: 3px solid var(--navy);
}
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
    background-color: transparent;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 25px 0;
}
.req-box {
    background: #122465;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}
.req-box h3 {
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.req-box ul {
    list-style: none;
}
.req-box ul li {
    font-size: 1.1rem;
    color: white;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.sublist {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-left: 5%;
}
.sublist2 {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-left: 10%;
}
.addmissions-accordion-item {
    border-bottom: none;
    color: white;
    font-size: 1.3rem;
}
.addmissions-accordion-item button {
    border-bottom: none;
    color: white;
    font-size: 1.3rem;
    font-weight: normal;
}
.addmissions-accordion-inner {
    color: white;
}
.req-box ul li:last-child {
    border-bottom: none;
}
.req-box ul li::before {
    content: '✓';
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
}
/* ===== TESTIMONIALS ===== */
@media (max-width: 992px) {
    .splide__pagination {
        bottom: 0;
    }
}
.splide__pagination {
    background: transparent;
    position: relative;
}
.splide__pagination__page {
    background: #172e81;
    height: 12px;
    margin: 3px;
    width: 12px;
}
.splide__pagination__page.is-active {
    background: #ebbf14;
    transform: scale(1.4);
    z-index: 1;
}
.splide__pagination li {
    margin: 0 1%;
}

/* New testimonials */
.intTest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 2fr));
    gap: 1.5rem;
    margin: 40px 0 20px 0;
}
.intTest-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 7%;
    justify-content: space-between;
}
.internalTestimCardCont {
    width: 100%;
}
.intTest-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition);
}
.intTest-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.intTest-card:hover::before {
    transform: scaleY(1);
}
.intTestimcardImg {
    height: 80px;
    width: 80px;
}
.intCredCont {
    margin-left: 5%;
}
.intCredCont h3 {
    font-family: var(--font-headers);
    font-size: 1.25em;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.intTestimcardImg img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition), filter var(--transition);
}
.intTest-card:hover .intTestimcardImg img {
    transform: scale(1.05);
    filter: saturate(1.05) brightness(1.02);
}
.intTest-card p {
    font-size: 1em;
    color: var(--text);
    line-height: 1.6;
}
.intImgCont {
    display: flex;
    flex-direction: row;
}
@media (max-width: 768px) {
    .intTest-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
/* ===== FAQ ===== */
.faq-list {
    list-style: none;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.1rem 1.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    gap: 1rem;
}
.faq-question:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}
.faq-icon {
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-answer.open {
    max-height: 400px;
}
.addLongList.open {
    max-height: 1000px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .req-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .hero {
        padding: 3.5rem 1rem 2.5rem;
    }
    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .stat-num {
        font-size: 1.75rem;
    }
    .programs-list {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== ADA FOCUS RING GLOBAL ===== */
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-radius: 3px;
}
/* ===== PRINT ===== */
@media print {
    header, footer {
        display: none;
    }
    .hero {
        background: var(--navy) !important;
        print-color-adjust: exact;
    }
}
/* ===== TEAM SECTION ===== */
.contactspacetop {
    margin-top: 5%;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    min-width: 0;
}
.team-grid-one {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    min-width: 0;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-width: 0;
    width: 100%;
}
.team-avatar {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
}
.team-name {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 5px;
    display: inline-block;
    border-bottom: 3px solid var(--gold);
    line-height: 1.2;
}
.team-name a {
    text-decoration: none;
}
.team-role {
    color: var(--gray-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.team-contact {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.8;
}
@media (max-width: 870px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-avatar {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-width: 250px;
        margin: 0 auto 7% auto;
    }
    .team-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 670px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}
.splide__arrow {
    background: var(--gold);
}
/* splide styles for banner */
.splideTopImgCont img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
/* ===== OPTIONAL - Partnership Hero Section ===== */
.partnership-hero {
    height: 525px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 15px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
.partnership-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}
.partnership-hero-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: var(--white);
    width: 100%;
}
@media (max-width: 768px) {
    .partnership-hero-overlay {
        padding: 0;
    }
}
.partnership-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    padding: 0.75rem 1rem;
    display: inline-block;
    border-radius: var(--radius);
}
.partnership-stats-section {
    background: var(--cream);
    padding: 10%;
    margin-left: 20px;
    border-radius: var(--radius-lg);
}
.partnership-stats-section h3 {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.stat-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.stat-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.title-box {
    margin-top: 5%;
    padding: 15px;
    background: var(--gray-100);
    font-family: var(--font-headers);
    font-size: 2rem;
    font-weight: 700;
    border-left: 4px solid var(--gold);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.stat-content {
    flex: 1;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-top: 0.25rem;
    line-height: 1.3;
}
.ctaGrid0 {
    margin: 0 10px 0 0;
}
.applyImgWrap {
    width: 100%;
    margin-bottom: 1rem;
}
.applyImgWrap img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
    .partnership-hero {
        height: 375px;
        margin: 15% 0;
    }
    .partnership-hero-title {
        font-size: 1.75rem;
    }
    .partnership-stats-section {
        margin-top: 1.5rem;
    }
}
.partnershipsCont {
    margin-top: 3%;
}
.partnershipsCont h3 {
    margin-top: 0;
}
.acadContentBanner {
    padding: 0 5%;
}

.team-contact div {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 10px;
}
/* ===== PARTNERS SLIDER ===== */
.partnersImages {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin: 3% 0 5% 0;
}
.partnersImgCont {
    position: relative;
    width: 48%;
}
.partnersImgCaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: white;
    background-color: #000000a3;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    padding: 10px 0 5px 0;
}
.partnersImgCont img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
@media (max-width: 768px) {
    .partnersImages {
        flex-direction: column;
    }
    .partnersImgCont {
        width: 100%;
    }
}
/* Partnerhip cards */
/* Container limited to approximately 800px */
.parn-grid-wrapper {
    width: 100%;
    margin: 5% auto;
}
/* 2x2 Grid Layout */
.parn-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 40px; /* Vertical gap, Horizontal gap */;
}
/* Individual Card Alignment */
.parn-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
/* Icon Container */
.parn-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--gold);
}
.parn-feature-icon img,
.parn-feature-icon svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* Typography Styles */
.parn-feature-content {
    display: flex;
    flex-direction: column;
}
.parn-feature-title {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
}
.parn-feature-text {
    margin: 0;
    line-height: 1.45;
    color: #333333;
}
/* Responsive breakpoint for screens smaller than 600px */
@media (max-width: 600px) {
    .parn-feature-grid {
        grid-template-columns: 1fr; /* Switch to single column */;
        gap: 24px;
    }
}
.lindaTestimonial {
    margin: 5% 0 5% 0;
    background-color: var(--navy);
    padding: 5%;
    position: relative;
    /* box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); */
}
@media (max-width: 768px) {
    .lindaTestimonial {
        margin: 10% 0;
        background-color: var(--navy);
        padding: 10%;
    }
}
.testimonial-text {
    font-size: 1.1em;
    line-height: 1.5;
    font-style: italic;
    color: white !important;
}
.testimonial-author {
    margin-bottom: 0 !important;
    color: white !important;
}
.quoteIcon {
    background-color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -20px;
    left: 40px;
}
.quoteIcon svg {
    color: var(--white);
    width: 20px;
    height: 20px;
}

/* maps */
.intmap_section{


    padding:5% 0;
}

.intmap_layout{
    display:grid;
    grid-template-columns: minmax(0,4fr) minmax(300px,1fr);
    gap:2px;
    align-items:start;
}

.intmap_map{
    position: relative;
}

.intmap_map svg{
    width:100%;
    height:auto;
    display:block;
}

.intmap_panel{
    background:#f5f7fa;
    border-radius:12px;
    padding:1.5rem;
    position:sticky;
    top:2rem;
    display:grid;
    grid-template-rows:auto 1fr auto;
    gap:1rem;
    min-height: 420px;
}

.intmap_panel > .intmap_countrylist-wrapper,
.intmap_panel > .intmap_testimonial-wrapper {
    width:100%;
}

.intmap_countrylist-wrapper {
    overflow:auto;
    max-height: 320px;
    padding-right: 0.5rem;
}

.intmap_countrylist{
  margin-left: 20px;
  padding-left: 1rem;
  margin-bottom:0;
}

.intmap_countrylist li {
  margin-bottom: 0.35rem;
}

.intmap_testimonial-wrapper {
    position:relative;
}

.intmap_testimonial {
  margin-top: 0;
  padding: 1rem;
  background: #fff;
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.intmap_testimonial_label {
  margin: 0 0 0.35rem;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intmap_testimonial_name {
  margin: 0 0 0.2rem;
  color: #1f2937;
  font-size: 1.05rem;
}

.intmap_testimonial_country {
  margin: 0 0 0.5rem;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 600;
}

.intmap_testimonial_text {
  margin: 0;
  color: #374151;
  font-style: italic;
  line-height: 1.6;
}

.intmap_country{
    cursor:pointer;
    transition:
        fill .2s ease,
        opacity .2s ease;
}

.intmap_country.intmap_active{
    fill: var(--gold);
}

.intmap_country.intmap_hover{
    fill: var(--gold);
}

.intmap_country.intmap_with_testimonial {
    fill: #c62b2b;
    fill-opacity: 0.75;
    stroke: #8b1a1a;
    stroke-width: 1.5px;
    stroke-linejoin: round;
}

.intmap_country{
    cursor:pointer;
    transition:
        fill .2s ease,
        opacity .2s ease,
        stroke .2s ease;
}

.selectedCountry{
  color: var(--cyan) !important;
}

.intmap_tooltip {
    position: absolute;
    display: none;
    padding: 0.5rem 0.75rem;
    background: rgba(15, 23, 42, 0.95);
    color: #fff;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
    pointer-events: none;
    z-index: 10;
    max-width: 180px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

.intmap_modal_overlay,
.intmap_modal {
    display: none;
}

.intmap_modal_overlay[hidden],
.intmap_modal[hidden] {
    display: none !important;
}

.intmap_modal_overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 1000;
}

.intmap_modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1001;
}

.intmap_modal_inner {
    width: min(560px, 100%);
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
    position: relative;
}

.intmap_modal_close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    color: #0f172a;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.intmap_modal_label {
    margin: 0 0 0.5rem;
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.intmap_modal_name {
    margin: 0 0 0.3rem;
    font-size: 1.55rem;
    color: #0f172a;
}

.intmap_modal_country {
    margin: 0 0 1rem;
    color: #475569;
    font-weight: 600;
}

.intmap_modal_text {
    margin: 0;
    color: #334155;
    font-style: italic;
    line-height: 1.8;
}

@media (max-width:992px){
  .intmap_layout{
    grid-template-columns:1fr;
  }

  .intmap_panel {
      position: relative;
      top: auto;
      min-height: auto;
      grid-template-rows:auto 1fr auto;
      padding: 1rem;
  }

  .intmap_countrylist-wrapper {
      max-height: 240px;
  }

  .intmap_testimonial {
      padding: 0.9rem;
  }
}

#intmap_modal_title{
    
  font-family: var(--font-headers);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 16.5px;
    border-left: 5px solid var(--gold);
}

.captionTitleBe5 {
    font-family: 'Befont_webnormal', Helvetica, Arial, sans-serif;
    color: #172e81;
    line-height: 0.66;
    text-align: left;
    padding-bottom: 10px;
}

.captionTxt5 {
    display: block;
    color: #172e81;
    line-height: 1;
}

.beCamp .captionTitleBe5{
    font-size: 5em;
  }
 .beCamp .captionTxt5{
    font-size: 1.3em;
  }

 @media (max-width: 992px){
  .beCamp .captionTitleBe5{
    font-size: 3em;
  }
  .beCamp .captionTxt5{
    font-size: 1.1em;
  }
}

.tabbedContent ul{
    /*margin-left: 15px;*/
}

.tabbedContent ul li::marker{
    color: var(--gold);
}