/* ==================== VARIABLES & THEME ==================== */
:root {
    /* Colors - Corporate & Premium (Updated from Logo) */
    --hue-color: 210;
    --first-color: #0D2C66;
    /* Deep Blue from 'V' */
    --first-color-alt: #081A3E;
    --first-color-light: #F0F4F8;

    --second-color: #00A99D;
    /* Teal/Turquoise from 'F' */
    --second-color-alt: #008C82;

    --title-color: #0D2C66;
    --text-color: #333333;
    --text-color-light: #666666;
    --body-color: #FAFAFA;
    --container-color: #FFFFFF;

    /* Typography */
    --body-font: 'Outfit', sans-serif;
    --title-font: 'Playfair Display', serif;
    /* Premium feel for headings */

    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;

    /* Font Weights */
    --font-regular: 400;
    --font-semi-bold: 600;
    --font-bold: 700;

    /* Margins */
    --mb-0-5: 0.5rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-3: 3rem;

    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* Responsive Typography */
@media screen and (min-width: 968px) {
    :root {
        --big-font-size: 4.5rem;
        --h1-font-size: 3rem;
        --h2-font-size: 2rem;
        --h3-font-size: 1.5rem;
        --normal-font-size: 1.125rem;
        --small-font-size: 1rem;
    }
}

/* ==================== BASE ==================== */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    font-family: var(--title-font);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== REUSABLE CSS CLASSES ==================== */
.section {
    padding: 2rem 0 4rem;
}

.section-title {
    font-size: var(--h1-font-size);
    margin-bottom: var(--mb-3);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--second-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    display: block;
    font-size: var(--small-font-size);
    color: var(--second-color);
    text-align: center;
    font-weight: var(--font-semi-bold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--mb-1);
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--mb-3);
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.text-center {
    text-align: center;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: var(--second-color);
    color: #FFF;
    padding: 1rem 2rem;
    border-radius: .5rem;
    font-weight: var(--font-semi-bold);
    transition: .3s;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.button:hover {
    background-color: var(--second-color-alt);
    transform: translateY(-2px);
}

.button--link {
    background: transparent;
    color: #FFF;
    border: 2px solid #FFF;
    box-shadow: none;
}

.button--link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==================== HEADER & NAV ==================== */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: transparent;
    /* Initially transparent */
    transition: .4s;
}

.scroll-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}

.header-container {
    height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 5rem;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    /* No space for seamless integration */
    font-family: var(--title-font);
    font-weight: var(--font-bold);
    color: var(--first-color);
    text-transform: uppercase;
}

.logo-img,
.logo-secondary {
    filter: brightness(0) invert(1);
    /* Make logos white initially */
    transition: .3s;
}

.scroll-header .logo-img,
.scroll-header .logo-secondary {
    filter: none;
    /* Restore original logo colors on scroll */
}

.logo-text {
    display: none;
}

.logo-secondary {
    height: 4.5rem;
    /* Adjusted to balance with Plenus logo */
    width: auto;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 480px) {
    .logo-secondary {
        height: 3.5rem;
        margin-left: 0.5rem;
        padding-left: 0.5rem;
    }
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: var(--font-semi-bold);
    color: #FFF;
    /* White link on transparent header */
    transition: .3s;
    font-size: var(--small-font-size);
    text-transform: uppercase;
}

.scroll-header .nav-link {
    color: var(--title-color);
    /* Dark link on white header */
}

.nav-link:hover,
.active {
    color: var(--second-color) !important;
}

.nav-toggle,
.nav-close {
    display: none;
    /* Hidden on desktop first */
}

/* ==================== HERO ==================== */
.home {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--first-color);
    /* Fallback */
    /* Add a background image here in real project */
    background-image: linear-gradient(rgba(10, 38, 71, 0.8), rgba(10, 38, 71, 0.7)), url('../assets/images/Evaluaciones Diagnostico.jpg');
    background-size: cover;
    background-position: center;
    color: #FFF;
}

.home-container {
    width: 100%;
}

.home-data {
    max-width: 800px;
}

.home-subtitle {
    display: block;
    font-size: 1.25rem;
    margin-bottom: var(--mb-1);
    color: var(--second-color);
    font-weight: var(--font-semi-bold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-title {
    font-size: var(--big-font-size);
    line-height: 1.2;
    margin-bottom: var(--mb-1-5);
    color: #FFF;
}

.home-description {
    font-size: 1.25rem;
    margin-bottom: var(--mb-2);
    max-width: 600px;
    opacity: 0.9;
}

.home-buttons {
    display: flex;
    gap: 1rem;
}

/* ==================== ABOUT ==================== */
.about-container {
    align-items: center;
}

.about-vision {
    border-left: 4px solid var(--second-color);
    padding-left: 1rem;
    margin: 2rem 0;
    background: var(--first-color-light);
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.about-vision h3 {
    color: var(--first-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.about-vision p:not(:last-child) {
    margin-bottom: 1.5rem;
}

.about-stats-bottom {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: var(--font-bold);
    color: var(--first-color);
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.2;
    font-weight: var(--font-semi-bold);
}

.image-wrapper {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 2rem;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 100%;
    height: 100%;
    background-color: var(--first-color-alt);
    z-index: -1;
    border-radius: 0.5rem;
}

.about-img-real {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==================== AXES (Methodology) - REDESIGNED ==================== */
.axes {
    background-color: var(--first-color);
    /* Dark Blue Background */
    color: white;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.axes .section-title,
.axes .section-subtitle,
.axes .section-description {
    color: white;
}

.axes .section-subtitle {
    color: var(--second-color);
}

.axes-container {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.axis-card {
    background-color: rgba(255, 255, 255, 0.1);
    /* Glassmorphism effect */
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform .3s, background-color .3s;
}

.axis-card:hover {
    transform: translateY(-10px);
    background-color: white;
}

.axis-card:hover .axis-title,
.axis-card:hover .axis-description {
    color: var(--title-color);
}

.axis-card:hover .axis-icon {
    color: var(--second-color);
    transform: scale(1.1);
}

.axis-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--second-color);
    transition: .3s;
}

.axis-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.axis-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ==================== VALUES STRIP ==================== */
.values-strip {
    background-color: var(--first-color);
    color: white;
    padding: 3rem 0;
}

.values-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    text-align: center;
}

.value-item h4 {
    color: var(--second-color);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==================== VALUE PROPOSITION (NEW) ==================== */
.proposition {
    background-color: var(--first-color-light);
    position: relative;
    overflow: hidden;
}

.proposition::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--second-color);
    opacity: 0.1;
    border-radius: 50%;
}

.proposition-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--second-color);
}

.proposition-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.proposition-text strong {
    color: var(--first-color);
}

/* ==================== VALUE PROPOSITION (NEW) ==================== */
.proposition {
    background-color: var(--first-color-light);
    position: relative;
    overflow: hidden;
}

.proposition::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--second-color);
    opacity: 0.1;
    border-radius: 50%;
}

.proposition-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--second-color);
}

.proposition-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.proposition-text strong {
    color: var(--first-color);
}

/* ==================== SERVICES ==================== */
/* ==================== SERVICES (FLEX CARDS) ==================== */
.services-container {
    display: flex;
    width: 100%;
    height: 450px;
    gap: 1rem;
    padding: 1rem 0;
}

.service-card {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.active {
    flex: 4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: all 0.7s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.service-card.active .service-img img {
    filter: brightness(0.5);
    transform: scale(1.05);
}

.service-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    color: white;
}

.service-icon-box {
    min-width: 50px;
    height: 50px;
    background-color: var(--second-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-text {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    pointer-events: none;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.service-card.active .service-text {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    max-width: 1000px;
    white-space: normal;
}

.service-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--body-font);
}

.service-text p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Services */
@media screen and (max-width: 968px) {
    .services-container {
        flex-direction: column;
        height: auto;
        min-height: 500px;
        gap: 0.75rem;
    }

    .service-card {
        flex: 0 0 100px;
        /* Fixed height for inactive cards */
        height: 100px;
        min-height: 100px;
    }

    .service-card.active {
        flex: 0 0 280px;
        /* Specific height for active card */
        height: 280px;
    }

    .service-content {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        gap: 1rem;
    }

    .service-icon-box {
        min-width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .service-text h3 {
        font-size: 1.25rem;
    }

    .service-text p {
        font-size: 0.85rem;
    }
}

/* ==================== TESTIMONIAL ==================== */
.testimonial {
    background-color: var(--first-color-light);
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: var(--title-font);
    font-size: 1.5rem;
    color: var(--first-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--title-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.testimonial-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    display: inline-block;
    border-radius: 2rem;
    font-weight: bold;
    color: var(--second-color-alt);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ==================== TEAM ==================== */
.team {
    background: linear-gradient(135deg, var(--container-color) 0%, var(--first-color-light) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.team-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    gap: 3rem;
}

.team-member {
    padding: 0;
    padding-bottom: 2rem;
    text-align: center;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s;
    border-left: 8px solid var(--second-color);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img-container {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    display: block;
    font-size: 1.5rem;
    color: var(--first-color);
    font-family: var(--title-font);
    margin-bottom: 0.5rem;
}

.member-role {
    display: block;
    font-size: 0.9rem;
    color: var(--second-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-specialization {
    font-size: var(--small-font-size);
    color: var(--text-color);
    line-height: 1.6;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--first-color);
    color: #FFF;
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
    align-items: flex-start;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-content:nth-child(2),
.footer-content:nth-child(3) {
    padding-left: 4rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 5rem;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: contain;
}

.footer-description {
    color: #FFF;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 300px;
    font-weight: 400;
}

.footer-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-family: var(--title-font);
    font-weight: var(--font-bold);
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link,
.footer-link-active,
.footer-location {
    color: #FFF;
    font-size: 1.15rem;
    transition: .3s;
    font-weight: 400;
}

.footer-link:hover {
    color: #00E5FF;
}

.footer-copy {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    font-size: 0.85rem;
    color: #FFF;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-secondary {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.footer-logo-t {
    height: 8rem;
    width: auto;
    filter: brightness(1.1);
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        row-gap: 3rem;
        text-align: center;
    }

    .footer-logo-text {
        justify-content: center;
    }

    .footer-description {
        margin: 0 auto;
    }

    .footer-title {
        margin-bottom: 1rem;
    }
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 768px) {
    .nav-list {
        position: fixed;
        background-color: white;
        width: 80%;
        height: 100%;
        top: 0;
        right: -100%;
        flex-direction: column;
        padding: 4rem 2rem;
        transition: .4s;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 2rem;
    }

    .nav-menu.show-menu .nav-list {
        right: 0;
    }

    .nav-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--title-color);
        transition: 0.3s;
    }

    .home-title {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .about-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== CASE STUDY (CASO DE ÉXITO) ==================== */
.case-study-content {
    background: linear-gradient(135deg, var(--container-color) 0%, var(--first-color-light) 100%);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border-left: 8px solid var(--second-color);
    position: relative;
    overflow: hidden;
}

.case-study-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--second-color);
    opacity: 0.03;
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.case-study-header {
    margin-bottom: 2rem;
    text-align: center;
}

.case-study-title {
    font-size: var(--h2-font-size);
    color: var(--first-color);
    margin-bottom: 1rem;
    font-family: var(--title-font);
}

.case-study-company {
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

.case-study-company-name {
    display: block;
    font-size: 2rem;
    color: var(--second-color);
    font-family: var(--title-font);
    margin-top: 0.5rem;
}

.case-study-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-card {
    background-color: #FFF;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.case-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.case-card-icon {
    font-size: 2rem;
    color: var(--second-color);
    margin-bottom: 1rem;
}

.case-card h4 {
    font-size: var(--normal-font-size);
    margin-bottom: 1rem;
    color: var(--title-color);
}

.case-card p {
    font-size: var(--small-font-size);
    line-height: 1.6;
    font-weight: 600;
    color: var(--first-color);
}

.case-list {
    list-style: none;
    font-size: var(--small-font-size);
    line-height: 1.6;
    padding: 0;
    font-weight: 600;
    color: var(--first-color);
}

.case-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.case-list li::before {
    content: "•";
    color: var(--first-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.results-list li {
    position: relative;
    padding-left: 1.8rem;
    font-weight: 600;
    color: var(--first-color);
}

.results-list li::before {
    content: none;
}

.results-list li span {
    position: absolute;
    left: 0;
    top: 0;
}

.case-study-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

/* ==================== PROGRAM CAROUSEL ==================== */
.program {
    background-color: var(--body-color);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    height: 480px;
}

.carousel-slide {
    min-width: 100%;
    padding: 1rem;
    opacity: 0.4;
    transition: opacity 0.6s;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-content {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    height: 100%;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--second-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.slide-icon {
    font-size: 3rem;
    color: var(--second-color);
}

.slide-header h3 {
    font-size: var(--h2-font-size);
    color: var(--first-color);
    font-family: var(--title-font);
}

.slide-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.slide-subtext {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--first-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.slide-list {
    margin-bottom: 1.5rem;
}

.slide-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.slide-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--second-color);
    font-weight: bold;
}

.slide-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
    background: var(--first-color-light);
    padding: 1.5rem;
    border-radius: 1rem;
}

.stat-val {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--first-color);
}

.stat-lab {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-color-light);
}

.program-table-wrapper {
    overflow-x: auto;
}

.program-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.program-table th,
.program-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.program-table th {
    color: var(--second-color);
    font-weight: 700;
}

.slide-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.slide-item-box {
    background: var(--first-color-light);
    padding: 1.5rem;
    border-radius: 1rem;
}

.slide-item-box h4 {
    color: var(--first-color);
    margin-bottom: 1rem;
}

.slide-mini-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.slide-mini-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--second-color);
}

.slide-footer-text {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--first-color);
    text-align: center;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--first-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--second-color);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
}

.dot.active {
    background: var(--second-color);
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    .carousel-wrapper {
        height: auto;
        min-height: 550px;
    }

    .slide-content {
        padding: 2rem;
    }

    .slide-grid {
        grid-template-columns: 1fr;
    }

    .slide-header h3 {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 768px) {
    .case-study-content {
        padding: 3.5rem;
    }

    .case-study-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==================== EXPERIENCE (CLIENTS) ==================== */
.experience-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
}

.experience-card {
    background-color: #FFF;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    min-height: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: .4s;
    overflow: hidden;
}

.experience-img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: .4s;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.experience-card:hover .experience-img {
    opacity: 1;
    transform: scale(1.05);
}

@media screen and (min-width: 768px) {
    .experience-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .experience-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .experience-img {
        max-height: 70px;
    }
}