.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(9, 87, 99, 0.05);
    border-radius: 50px;
    color: #095763;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-item svg {
    fill: #095763;
}

.shark-tank-video video {
    width: 96%;
}

.leadership-impact .magazine-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.7);
    transition: all 0.3s ease;
}

.leadership-impact .magazine-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.leadership-impact .magazine-content {
    color: #4a5568;
    line-height: 1.6;
}

.leadership-impact blockquote {
    font-style: italic;
    color: #1a202c;
    border-left: 3px solid #095763;
    /* padding-left: 1rem !important; */
    padding: 10px 0px 10px 1rem !important;
    margin: 1.5rem 0 !important;
    background-color: #fff;
    text-align: start;
}

.leadership-impact .magazine-logo {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.leadership-impact .magazine-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

@media (max-width: 992px) {
    .about_founder_title span {
        font-size: 22px;
    }
}

.highlight-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(9, 87, 99, .12);
    transition: .4s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(9, 87, 99, .18);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.video-wrapper:hover img {
    transform: scale(1.08);
}

.video-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .28);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #000000b9;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 2;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

.video-wrapper:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.12);
}

.modal-content {
    border: none;
}

#youtubeVideo {
    width: 100%;
    height: 100vh;
}