    :root {
        --primary-magenta: #ff00ff;
        --dark-magenta: #d600d6;
        --dark-bg: #111111;
        --page-bg: #fdfcfd;
        /* Very light pink/white tint as seen in screenshot */
        --card-bg: #ffffff;
        --text-white: #ffffff;
        --text-grey: #94a3b8;
        --text-dark: #111111;
        --border-color: #f1f5f9;
        --pill-bg: #374151;
    }

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--page-bg);
        color: var(--text-dark);
        margin: 0;
        padding: 0;
    }

    /* Hero Section */
    .profile-hero {
        background-color: var(--dark-bg);
        padding: 110px 20px 110px;
        margin-top: 70px;
        position: relative;
        overflow: hidden;
        color: var(--text-white);
    }

    /* Background Glow */
    .profile-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 0% 50%, rgba(214, 0, 214, 0.12), transparent 45%);
        pointer-events: none;
    }

    .hero-container {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .profile-image-wrap {
        position: relative;
        flex-shrink: 0;
    }

    .profile-image {
        width: 440px;
        height: 480px;
        object-fit: cover;
        border-radius: 20px;
        border: 2px solid rgba(214, 0, 214, 0.5);
        box-shadow: 0 0 40px rgba(214, 0, 214, 0.2);
    }

    /* Dotted Pattern */
    .dots-pattern {
        position: absolute;
        background-image: radial-gradient(circle, #9333ea 2.5px, transparent 2.5px);
        opacity: 0.7;
    }

    .dots-top-right {
        top: 20px;
        right: -100px;
        width: 32px;
        height: 80px;
        background-size: 8px 10px;
    }

    .dots-bottom-right {
        bottom: -30px;
        right: 15%;
        width: 110px;
        height: 35px;
        background-size: 11px 9px;
    }

    .profile-info {
        flex: 1;
    }

    .profile-info h1 {
        font-size: 3.4rem;
        font-weight: 900;
        color: var(--dark-magenta);
        margin-bottom: 25px;
        letter-spacing: -1.5px;
    }

    .profile-info .designation {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: #ffffff;
    }

    .profile-info .location {
        font-size: 1.15rem;
        color: #94a3b8;
        margin-bottom: 45px;
        font-weight: 400;
    }

    .profile-info .bio {
        font-size: 1.15rem;
        line-height: 1.6;
        color: #bbbbbb;
        margin-bottom: 12px;
        max-width: 680px;
        font-weight: 400;
    }

    .see-more-link {
        color: var(--primary-magenta);
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        margin-bottom: 35px;
        display: inline-block;
        transition: opacity 0.2s;
    }

    .see-more-link:hover {
        opacity: 0.8;
        color: var(--primary-magenta);
        text-decoration: underline;
    }

    .profile-tags {
        display: flex;
        gap: 12px;
        margin-bottom: 50px;
    }

    .profile-tag {
        background: #334155;
        color: #cbd5e1;
        padding: 10px 22px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .btn-hero {
        padding: 12px 28px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
    }

    .btn-hero-magenta {
        background-color: var(--dark-magenta);
        color: white;
    }

    .btn-hero-magenta:hover {
        background-color: #b300b3;
    }

    .btn-hero-magenta .btn-icon-circle {
        background: white;
        color: var(--dark-magenta);
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .btn-hero-outline {
        border: 1px solid #ffffff;
        color: #ffffff;
        background: transparent;
    }

    .btn-hero-outline:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    /* Main Content Section */
    .profile-content-wrap {
        max-width: 1250px;
        margin: 60px auto 100px;
        padding: 0 40px;
    }

    .content-grid {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 40px;
    }

    .content-card {
        background: var(--card-bg);
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
        margin-bottom: 30px;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .content-card h2 {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 25px;
        color: #333333;
    }

    .card-text {
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .card-text p {
        margin-bottom: 25px;
    }

    /* Fields & Sectors */
    .sector-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sector-pill {
        background: #475569;
        color: #ffffff;
        padding: 10px 22px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    /* Sidebar Cards */
    .sidebar-card {
        background: var(--card-bg);
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
        margin-bottom: 30px;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .sidebar-card h3 {
        font-size: 1.25rem;
        font-weight: 800;
        margin-bottom: 25px;
        color: #333333;
    }

    /* Featured Episode item */
    .featured-episode {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .featured-episode img {
        width: 100px;
        height: 70px;
        object-fit: cover;
        border-radius: 8px;
    }

    .episode-details h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 4px;
        color: #111111;
        line-height: 1.2;
    }

    .episode-details p {
        font-size: 0.82rem;
        color: #64748b;
        margin-bottom: 8px;
    }

    .episode-details a {
        font-size: 0.85rem;
        color: #444;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Companies List */
    .company-item {
        background: linear-gradient(135deg, #f8f9fc, #f1f5f9);
        padding: 16px 20px;
        border-radius: 12px;
        margin-bottom: 10px;
        border-left: 3px solid var(--primary-magenta);
        transition: all 0.25s ease;
    }

    .company-item:hover {
        background: linear-gradient(135deg, #f3f0ff, #ede9fe);
        transform: translateX(4px);
    }

    .company-item .company-name {
        display: block;
        font-size: 0.95rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 3px;
        text-transform: capitalize;
        letter-spacing: 0.2px;
    }

    .company-item .company-type {
        display: block;
        font-size: 0.78rem;
        color: #8b5cf6;
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: 0.3px;
    }

    /* Quote Banner */
    .quote-banner {
        background: linear-gradient(135deg, #d600d6 0%, #ff00ff 100%);
        padding: 80px 40px;
        border-radius: 12px;
        text-align: center;
        color: white;
        margin-top: 50px;
        margin-bottom: 100px;
        position: relative;
    }

    .quote-banner h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .quote-banner p {
        font-size: 1.4rem;
        font-weight: 500;
        opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 1150px) {
        .hero-container {
            flex-direction: column;
            text-align: center;
            gap: 40px;
        }

        .profile-info .bio {
            margin-left: auto;
            margin-right: auto;
        }

        .profile-tags {
            justify-content: center;
        }

        .hero-actions {
            justify-content: center;
        }

        .content-grid {
            grid-template-columns: 1fr;
        }

        .dots-top-right,
        .dots-bottom-right {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .profile-hero {
            padding: 80px 20px;
        }

        .profile-image {
            width: 300px;
            height: 330px;
        }

        .profile-info h1 {
            font-size: 2.8rem;
        }

        .quote-banner h2 {
            font-size: 1.8rem;
        }

        .quote-banner p {
            font-size: 1.1rem;
        }

        .profile-content-wrap {
            padding: 0 20px;
        }
    }



        :root {
        --primary-magenta: #ff00ff;
        --dark-magenta: #d600d6;
        --dark-bg: #111111;
        --page-bg: #fdfcfd;
        /* Very light pink/white tint as seen in screenshot */
        --card-bg: #ffffff;
        --text-white: #ffffff;
        --text-grey: #94a3b8;
        --text-dark: #111111;
        --border-color: #f1f5f9;
        --pill-bg: #374151;
    }

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--page-bg);
        color: var(--text-dark);
        margin: 0;
        padding: 0;
    }

    /* Hero Section */
    .profile-hero {
        background-color: var(--dark-bg);
        padding: 110px 20px 110px;
        margin-top: 70px;
        position: relative;
        overflow: hidden;
        color: var(--text-white);
    }

    /* Background Glow */
    .profile-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 0% 50%, rgba(214, 0, 214, 0.12), transparent 45%);
        pointer-events: none;
    }

    .hero-container {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .profile-image-wrap {
        position: relative;
        flex-shrink: 0;
    }

    .profile-image {
        width: 440px;
        height: 480px;
        object-fit: cover;
        border-radius: 20px;
        border: 2px solid rgba(214, 0, 214, 0.5);
        box-shadow: 0 0 40px rgba(214, 0, 214, 0.2);
    }

    /* Dotted Pattern */
    .dots-pattern {
        position: absolute;
        background-image: radial-gradient(circle, #9333ea 2.5px, transparent 2.5px);
        opacity: 0.7;
    }

    .dots-top-right {
        top: 20px;
        right: -100px;
        width: 32px;
        height: 80px;
        background-size: 8px 10px;
    }

    .dots-bottom-right {
        bottom: -30px;
        right: 15%;
        width: 110px;
        height: 35px;
        background-size: 11px 9px;
    }

    .profile-info {
        flex: 1;
    }

    .profile-info h1 {
        font-size: 3.4rem;
        font-weight: 900;
        color: var(--dark-magenta);
        margin-bottom: 25px;
        letter-spacing: -1.5px;
    }

    .profile-info .designation {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: #ffffff;
    }

    .profile-info .location {
        font-size: 1.15rem;
        color: #94a3b8;
        margin-bottom: 45px;
        font-weight: 400;
    }

    .profile-info .bio {
        font-size: 1.15rem;
        line-height: 1.6;
        color: #bbbbbb;
        margin-bottom: 12px;
        max-width: 680px;
        font-weight: 400;
    }

    .see-more-link {
        color: var(--primary-magenta);
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        margin-bottom: 35px;
        display: inline-block;
        transition: opacity 0.2s;
    }

    .see-more-link:hover {
        opacity: 0.8;
        color: var(--primary-magenta);
        text-decoration: underline;
    }

    .profile-tags {
        display: flex;
        gap: 12px;
        margin-bottom: 50px;
    }

    .profile-tag {
        background: #334155;
        color: #cbd5e1;
        padding: 10px 22px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .btn-hero {
        padding: 12px 28px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
    }

    .btn-hero-magenta {
        background-color: var(--dark-magenta);
        color: white;
    }

    .btn-hero-magenta:hover {
        background-color: #b300b3;
    }

    .btn-hero-magenta .btn-icon-circle {
        background: white;
        color: var(--dark-magenta);
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .btn-hero-outline {
        border: 1px solid #ffffff;
        color: #ffffff;
        background: transparent;
    }

    .btn-hero-outline:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    /* Main Content Section */
    .profile-content-wrap {
        max-width: 1250px;
        margin: 60px auto 100px;
        padding: 0 40px;
    }

    .content-grid {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 40px;
    }

    .content-card {
        background: var(--card-bg);
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
        margin-bottom: 30px;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .content-card h2 {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 25px;
        color: #333333;
    }

    .card-text {
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .card-text p {
        margin-bottom: 25px;
    }

    /* Fields & Sectors */
    .sector-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sector-pill {
        background: #475569;
        color: #ffffff;
        padding: 10px 22px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    /* Sidebar Cards */
    .sidebar-card {
        background: var(--card-bg);
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
        margin-bottom: 30px;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .sidebar-card h3 {
        font-size: 1.25rem;
        font-weight: 800;
        margin-bottom: 25px;
        color: #333333;
    }

    /* Featured Episode item */
    .featured-episode {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .featured-episode img {
        width: 100px;
        height: 70px;
        object-fit: cover;
        border-radius: 8px;
    }

    .episode-details h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 4px;
        color: #111111;
        line-height: 1.2;
    }

    .episode-details p {
        font-size: 0.82rem;
        color: #64748b;
        margin-bottom: 8px;
    }

    .episode-details a {
        font-size: 0.85rem;
        color: #444;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Companies List */
    .company-item {
        background: linear-gradient(135deg, #f8f9fc, #f1f5f9);
        padding: 16px 20px;
        border-radius: 12px;
        margin-bottom: 10px;
        border-left: 3px solid var(--primary-magenta);
        transition: all 0.25s ease;
    }

    .company-item:hover {
        background: linear-gradient(135deg, #f3f0ff, #ede9fe);
        transform: translateX(4px);
    }

    .company-item .company-name {
        display: block;
        font-size: 0.95rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 3px;
        text-transform: capitalize;
        letter-spacing: 0.2px;
    }

    .company-item .company-type {
        display: block;
        font-size: 0.78rem;
        color: #8b5cf6;
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: 0.3px;
    }

    /* Quote Banner */
    .quote-banner {
        background: linear-gradient(135deg, #d600d6 0%, #ff00ff 100%);
        padding: 80px 40px;
        border-radius: 12px;
        text-align: center;
        color: white;
        margin-top: 50px;
        margin-bottom: 100px;
        position: relative;
    }

    .quote-banner h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .quote-banner p {
        font-size: 1.4rem;
        font-weight: 500;
        opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 1150px) {
        .hero-container {
            flex-direction: column;
            text-align: center;
            gap: 40px;
        }

        .profile-info .bio {
            margin-left: auto;
            margin-right: auto;
        }

        .profile-tags {
            justify-content: center;
        }

        .hero-actions {
            justify-content: center;
        }

        .content-grid {
            grid-template-columns: 1fr;
        }

        .dots-top-right,
        .dots-bottom-right {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .profile-hero {
            padding: 80px 20px;
        }

        .profile-image {
            width: 300px;
            height: 330px;
        }

        .profile-info h1 {
            font-size: 2.8rem;
        }

        .quote-banner h2 {
            font-size: 1.8rem;
        }

        .quote-banner p {
            font-size: 1.1rem;
        }

        .profile-content-wrap {
            padding: 0 20px;
        }
    }


    @media (max-width: 576px) {

    .bio,
    .card-text,
    .profile-info p {
        font-size: 14px;
        line-height: 1.5;
    }

    .card-text {
        overflow: visible !important;
        max-height: none !important;
        -webkit-line-clamp: unset !important;
    }

    /* If you have long words/urls breaking layout */
    .bio,
    .card-text {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* Headings scale down */
    .profile-info h1{
        font-size: 22px;
        line-height: 1.2;
    }

    .designation{
        font-size: 14px;
    }

    .location{
        font-size: 13px;
    }
    }

    @media (max-width: 576px) {

  .profile-tags,
  .sector-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .profile-tag,
  .sector-pill{
    max-width: 100%;
    white-space: normal;       /* important */
    word-break: break-word;
    overflow-wrap: anywhere;
    font-size: 12px;
    padding: 6px 10px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .content-grid{
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .main-column,
  .sidebar-column{
    width: 100%;
  }
}
