.expert-profile-personal-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    padding: 40px 20px;
    color: #000;
}

.expert-profile-personal-info-left {
    flex: 1;
    width: 60%;
    padding-right: 40px;
}




.expert-profile-personal-info-greeting {
    margin: 0 0 10px 0;
}

.expert-profile-personal-info-name {
    margin: 0 0 20px 0;
}

.expert-profile-personal-info-description {
    margin: 0 0 30px 0;
    line-height: 1.6;
    color: #555;
}

.expert-profile-personal-info-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.expert-profile-personal-info-social-icons img {
    width: 20px;
    height: 20px;
}

.expert-profile-personal-info-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 40%;
    text-align: right;
}

.expert-profile-personal-info-right img {
    width: 500px;
    height: auto;
    border-radius: 5px;
}


.expert-profile-logged-in-btn a{
    width: 100%;
    height: auto;
    background-color: #3f4dcb;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.expert-profile-logged-in-btn a:hover{
    background-color: #000039;
    color: #fff;
}


/*--------------------------------------------------------------------------------------------------------------------------------*/

.career-expert-intro-video-wrapper {
    text-align: center;
    padding: 20px;
}



.career-expert-intro-video-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}


.career-expert-intro-video-container video {
    width: 100vw !important;
    height: auto;
    display: block;
}

.career-expert-intro-video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.career-expert-intro-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 60px;
    color: #000;
    text-align: center;
    pointer-events: none;
}

.career-expert-intro-video-link {
    display: inline-block;
    position: relative;
    text-decoration: none;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.career-expert-roles-wrapper {
    padding: 20px;
}

.career-expert-roles-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
}

.career-expert-roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.career-expert-role-box {
    padding: 20px;
    border-radius: 3px;
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 100px; /* keeps all boxes same height */
    display: flex;
    align-items: center;
}

.career-expert-role-box.dark {
    background-color: #333;
    color: #fff;
}

.career-expert-role-box.light {
    background-color: #ddd;
    color: #000;
}










/*----------------------------------------------------------------------TABLET SCREEN STARTS-------------------------------------------------------------------------------------------------------*/



@media screen and (min-width: 481px) and (max-width: 1024px){





.expert-profile-personal-info-wrapper {
    display: block;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    padding: 40px 20px;
    color: #000;
}

.expert-profile-personal-info-left {
 
    width: 100%;
    padding-right: 10px;
}

.expert-profile-personal-info-greeting {
    margin: 0 0 10px 0;
}

.expert-profile-personal-info-name {
    margin: 0 0 20px 0;
}

.expert-profile-personal-info-description {
    margin: 0 0 0 0;
    line-height: 1.6;
    color: #555;
}

.expert-profile-personal-info-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.expert-profile-personal-info-social-icons img {
    width: 20px;
    height: 20px;
}

.expert-profile-personal-info-right {
    flex: 1;
    width: 100%;
    text-align: right;
}

.expert-profile-personal-info-right img {
    width: 500px;
    height: auto;
    border-radius: 5px;
}


/*--------------------------------------------------------------------------------------------------------------------------------*/

.career-expert-intro-video-wrapper {
    text-align: center;
    padding: 20px;
}



.career-expert-intro-video-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.career-expert-intro-video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.career-expert-intro-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 60px;
    color: #000;
    text-align: center;
    pointer-events: none;
}

.career-expert-intro-video-link {
    display: inline-block;
    position: relative;
    text-decoration: none;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.career-expert-roles-wrapper {
    padding: 20px;
}

.career-expert-roles-heading {
  
    margin-bottom: 20px;
    color: #000;
}

.career-expert-roles-grid {
    display: block;
   
    gap: 15px;
}

.career-expert-role-box {
    padding: 15px;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.career-expert-role-box.dark {
    background-color: #333;
    color: #fff;
margin-bottom:10px;
}

.career-expert-role-box.light {
    background-color: #ddd;
    color: #000;
margin-bottom:10px;
}



}
/*----------------------------------------------------------------------TABLET SCREEN END-------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------MOBILE SCREEN STARTS-------------------------------------------------------------------------------------------------------*/

@media screen and (min-width: 320px) and (max-width: 480px){





.expert-profile-personal-info-wrapper {
    display: block;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    padding: 40px 20px;
    color: #000;
}

.expert-profile-personal-info-left {
 
    width: 100%;
    padding-right: 10px;
}

.expert-profile-personal-info-greeting {
    margin: 0 0 10px 0;
}

.expert-profile-personal-info-name {
    margin: 0 0 20px 0;
}

.expert-profile-personal-info-description {
    margin: 0 0 0 0;
    line-height: 1.6;
    color: #555;
}

.expert-profile-personal-info-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
        flex-wrap: wrap;
}

.expert-profile-personal-info-social-icons img {
    width: 20px;
    height: 20px;
}

.expert-profile-personal-info-right {
    flex: 1;
    width: 100%;
    text-align: right;
}

.expert-profile-personal-info-right img {
    width: 500px;
    height: auto;
    border-radius: 5px;
}


/*--------------------------------------------------------------------------------------------------------------------------------*/

.career-expert-intro-video-wrapper {
    text-align: center;
    padding: 20px;
}



.career-expert-intro-video-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.career-expert-intro-video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.career-expert-intro-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 60px;
    color: #000;
    text-align: center;
    pointer-events: none;
}

.career-expert-intro-video-link {
    display: inline-block;
    position: relative;
    text-decoration: none;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.career-expert-roles-wrapper {
    padding: 20px;
}

.career-expert-roles-heading {
  
    margin-bottom: 20px;
    color: #000;
}

.career-expert-roles-grid {
    display: block;
   
    gap: 15px;
}

.career-expert-role-box {
    padding: 15px;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.career-expert-role-box.dark {
    background-color: #333;
    color: #fff;
margin-bottom:10px;
}

.career-expert-role-box.light {
    background-color: #ddd;
    color: #000;
margin-bottom:10px;
}

}


/*----------------------------------------------------------------------MOBILE SCREEN END-------------------------------------------------------------------------------------------------------*/








