/* Individual Profiles Section */
.individual-profiles-section {
    background-color: #f8f9fa;
    padding-bottom: 80px;
}

.profiles-subsection-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #095763;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.profiles-subsection-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e5b73b;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Profile Card */
/* Director Portrait Card - Corporate UI */
.director-portrait-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 550px;
    transition: all 0.4s ease;
}

.director-portrait-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.director-portrait-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.director-portrait-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.director-portrait-card:hover .director-portrait-image img {
    transform: scale(1.05);
}

.director-portrait-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 87, 99, 0.95) 0%, rgba(9, 87, 99, 0.6) 30%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.director-portrait-card:hover .director-portrait-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(9, 87, 99, 0.98) 0%, rgba(9, 87, 99, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
}

.director-portrait-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.director-portrait-card:hover .director-portrait-content {
    transform: translateY(0);
}

.director-portrait-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.director-portrait-title {
    font-size: 1.1rem;
    color: #e5b73b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
}

.director-portrait-action {
    opacity: 0.8;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.director-portrait-card:hover .director-portrait-action {
    opacity: 1;
    transform: translateY(0);
}

.btn-director-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-director-glass:hover {
    background: #e5b73b;
    color: #095763;
    border-color: #e5b73b;
}

@media (max-width: 768px) {
    .director-portrait-card {
        min-height: 450px;
    }

    .director-portrait-name {
        font-size: 1.8rem;
    }

    .director-portrait-action {
        opacity: 1;
        transform: translateY(0);
    }
}


/* CXO Modern Card */
.cxo-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.cxo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cxo-image-box {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.cxo-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.cxo-card:hover .cxo-image-box img {
    transform: scale(1.1);
}

.cxo-social {
    position: absolute;
    bottom: -50px;
    right: 20px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: bottom 0.4s ease;
}

.cxo-social a {
    color: #095763;
    font-size: 1.2rem;
}

.cxo-card:hover .cxo-social {
    bottom: 20px;
}

.cxo-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.cxo-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #095763;
    margin-bottom: 5px;
}

.cxo-post {
    font-size: 0.9rem;
    color: #e5b73b;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cxo-divider {
    width: 40px;
    height: 2px;
    background: #e5e5e5;
    margin: 15px auto;
    transition: width 0.3s ease;
}

.cxo-card:hover .cxo-divider {
    width: 80px;
    background: #095763;
}

.cxo-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cxo-link i {
    font-size: 1.2rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.cxo-card:hover .cxo-link {
    color: #095763;
}

.cxo-card:hover .cxo-link i {
    transform: translateX(5px);
}


/* Responsive */
@media (max-width: 768px) {
    .profiles-subsection-title {
        font-size: 1.5rem;
    }

    .profile-image-container {
        height: 350px;
    }
}

/* Expansion Breakthroughs Swiper */
.expansionSwiper {
    padding: 30px 10px 50px;
    overflow: hidden;
}

.expansionSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.breakthrough-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}


.breakthrough-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(9, 87, 99, 0.12);
}

.breakthrough-card:hover::before {
    opacity: 1;
}

.breakthrough-icon {
    font-size: 2.5rem;
    color: #095763;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(9, 87, 99, 0.05);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.breakthrough-card:hover .breakthrough-icon {
    background: #095763;
    color: #ffffff;
    transform: rotateY(360deg);
}

.breakthrough-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #095763;
    margin-bottom: 12px;
}

.swiper-pagination-bullet {
    background: #095763;
    opacity: 0.3;
}

.quote-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.quote-box {
    position: relative;
    text-align: left;
    padding: 40px 60px;
}

.quote-box-left {
    width: 70%;
    position: relative;
    text-align: right;
    padding: 40px 60px;
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .quote-box {
        width: 100%;
        padding: 40px 40px;
    }

    .quote-section {
        justify-content: center;
    }

    .quote-box-left {
        width: 100%;
        padding: 40px 40px;
    }
}

.quote-icon {
    font-size: 6rem;
    line-height: 0;
    color: #095763;
    opacity: 0.3;
    position: absolute;
    top: 45px;
}

blockquote {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    z-index: 2;
    position: relative;
}

/* Swiper Custom Styles */
.cxoSwiper {
    padding: 20px 60px 80px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #095763;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #095763;
    color: #fff;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #095763;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #095763 !important;
    width: 20px !important;
    border-radius: 6px !important;
}

@media screen and (max-width: 768px) {
    .cxoSwiper {
        padding: 20px 10px 60px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Journey Timeline Styles */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #e5e7eb80 0%, #809295 50%, #095763 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-item-left {
    justify-content: flex-end;
    padding-right: 51%;
}

.timeline-item-right {
    justify-content: flex-start;
    padding-left: 51%;
}

.timeline-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.timeline-item-left .timeline-content {
    flex-direction: row;
    justify-content: flex-end;
}

.timeline-item-right .timeline-content {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.timeline-date-badge {
    background: linear-gradient(135deg, #095763, #0a3d47);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    margin: 0 20px;
    box-shadow: 0 4px 15px rgba(9, 87, 99, 0.3);
    z-index: 3;
}

.timeline-box {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    max-width: 400px;
}

.timeline-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(9, 87, 99, 0.2);
}

.timeline-box-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #095763;
    margin-bottom: 12px;
}

.timeline-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    font-style: italic;
}

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

.timeline-list li {
    padding: 8px 0 0px 20px;
    position: relative;
    color: #6b7280;
    font-size: 0.95rem;
}

.timeline-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #095763;
    font-weight: bold;
    font-size: 1.2rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #095763;
    border: 4px solid #ffffff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(9, 87, 99, 0.2);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-center-line {
        left: 30px;
    }

    .timeline-item-left,
    .timeline-item-right {
        justify-content: flex-start;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-item-left .timeline-content,
    .timeline-item-right .timeline-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-date-badge {
        margin: 0 0 15px 0;
    }

    .timeline-box {
        max-width: 100%;
    }

    .timeline-dot {
        left: 30px;
    }
}

/* Media & Appearances Section */
.media-appearances-section {
    background: #f8fafc;
}

.media-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #6b7280;
    display: inline-block;
}

/* Press Mentions - Media Cards */
.media-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.media-card:hover {
    transform: translateY(-5px);
}

.media-card-image {
    overflow: hidden;
    height: 200px;
}

.media-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card:hover .media-card-image img {
    transform: scale(1.05);
}

.media-card-content {
    padding: 20px;
}

.media-badge {
    display: inline-block;
    background: #09576324;
    color: #095763;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.media-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #095763;
    margin-bottom: 8px;
}

/* Interviews & Podcasts */
.interview-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.interview-card:hover {
    transform: translateY(-5px);
}

.interview-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #e5b73b;
    transition: all 0.3s ease;
    cursor: pointer;
}

.interview-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.2);
}

.interview-content {
    padding: 20px;
}

.interview-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #095763;
    margin-bottom: 10px;
}

.interview-link {
    color: #095763;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.interview-link:hover {
    color: #e5b73b;
}

.interview-link i {
    transition: transform 0.3s ease;
}

.interview-link:hover i {
    transform: translateX(5px);
}

/* Shark Tank Feature */
.shark-tank-video {
    border-radius: 16px;
    overflow: hidden;
}

.shark-tank-content {
    padding: 20px;
}

/* Speaking Engagements */
.speaking-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.speaking-card:hover {
    transform: translateY(-5px);
}

.speaking-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(9, 87, 99, 0.1), rgba(212, 212, 211, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.speaking-icon i {
    font-size: 1.8rem;
    color: #095763;
    transition: all 0.3s ease;
}

.speaking-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #095763;
    margin-bottom: 10px;
}

.speaking-image {
    border-radius: 8px;
    overflow: hidden;
}

.speaking-image img {
    transition: transform 0.3s ease;
}

.speaking-card:hover .speaking-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .media-category-title {
        font-size: 1.3rem;
    }

    .shark-tank-content {
        margin-top: 30px;
    }

    .media-card-image,
    .interview-image {
        height: 180px;
    }
}

/* Gallery Section */
.gallery-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: inline-block;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-category-title {
        font-size: 1.2rem;
    }

    .gallery-image {
        height: 220px;
    }
}

/* Styled Timeline Title */
.timeline-styled-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: #6b7280;
}

.timeline-separator-styled {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    max-width: 200px;
}

.timeline-separator-styled::before,
.timeline-separator-styled::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.separator-dot {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    border: 1px solid #e5e7eb;
    color: #e5b73b;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline-styled-title {
        font-size: 1.8rem;
    }
}

.profile-ui-card {
    position: relative;
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
    background: #f8f9fb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* IMAGE */
.profile-ui-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BOTTOM STRIP */
.profile-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #095763bf;
    padding: 12px 15px;
    text-align: center;
    border-bottom: 5px solid #095763;
}

.profile-info h5 {
    color: #fff;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.profile-info span {
    font-size: 13px;
    color: #dcdcdc;
}

/* HOVER OVERLAY */
.profile-hover {
    position: absolute;
    inset: 0;
    background: rgba(9, 87, 99, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s ease;
}

.profile-ui-card:hover .profile-hover {
    opacity: 1;
}

/* INFO CARD (SECOND CARD STYLE) */
.profile-ui-card--info {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
}

.profile-info-center h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.profile-info-center p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.gallery-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
}

.gallery-item {
    overflow: hidden;
}

.swiper-pagination-bullet {
    background: #999;
    opacity: 1;
}