/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.profile-container {
    background: #fff;
    width: 900px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}


.left-section {
    flex: 1;
    background-color: #fff;
}

.image-box {
    position: relative;
    width: 100%;
}


.image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.name-banner {
    background-color: #5bb4e5;
    color: white;
    padding: 20px;
    text-align: center;
}

.biography {
    padding: 30px;
    color: #555;
    line-height: 1.6;
}

.biography h3 {
    color: #5bb4e5;
    margin-bottom: 10px;
    font-size: 16px;
}


.right-section {
    flex: 1.2;
    padding: 40px;
    border-left: 5px solid #5bb4e5;
}

.label {
    color: #5bb4e5;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
}

.doc-name {
    font-size: 28px;
    color: #333;
    margin-top: 5px;
}

.subtitle {
    font-size: 18px;
    color: #777;
    margin-bottom: 15px;
}

.details {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.speciality h3,
.contact-info h3 {
    font-size: 16px;
    color: #5bb4e5;
    margin-bottom: 15px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tags span {
    border: 1px solid #ccc;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
}

.meta-info {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 2;
}

.contact-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}



@media (max-width: 768px) {
    .profile-container {
        width: 100%;
        flex-direction: column;
    }

    .image-box img {
        width: 100%;
        height: 400px;
    }



    .right-section {
        padding: 25px;
        border-left: none;
        border-top: 5px solid #5bb4e5;
    }
}


@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .profile-container {
        box-shadow: none;
    }

    .name-banner {
        padding: 15px;
        font-size: 18px;
    }

    .biography {
        padding: 20px;
        font-size: 14px;
    }

    .right-section {
        padding: 20px;
    }

    .doc-name {
        font-size: 22px;
    }

    .subtitle {
        font-size: 16px;
    }

    .details {
        font-size: 13px;
    }

    .tags span {
        font-size: 12px;
        padding: 4px 10px;
    }
} */



/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {

    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Main Container */
.profile-container {
    display: flex;
    max-width: 1280px;
    width: 100%;
    /* border-radius: 16px;
    margin-bottom: 20px; */

    background: #fff;
    /* width: 900px; */
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;

}

/* Left Section */
.left-section {
    flex: 1;
    background-color: #fff;
}

/* Image Box */
.image-box {
    position: relative;
    width: 100%;
}

.image-box img {
    /* width: 100%; */
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Name Banner */
.name-banner {
    background-color: #5bb4e5;
    color: white;
    padding: 20px;
    text-align: center;
}

.name-banner h2 {
    font-size: 20px;
    font-weight: 600;
}

.name-banner p {
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Info */
.contact-info {
    margin-top: 30px;


}

.contact-info h3 {

    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;

    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.contact-info p {
    font-size: 14px;
    margin: 6px 0;
}

/* Right Section */
.right-section {
    flex: 1.2;
    padding: 40px;
    border-left: 5px solid #5bb4e5;
}

/* Profile Info */
.info-block .label {
    color: #5bb4e5;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
}

.doc-name {
   
    color: #111827;
    font-size: 28px;
    color: #333;
    margin-top: 5px;
}

.subtitle {

    font-size: 18px;
    color: #777;
    margin-bottom: 15px;
}

.details {
    line-height: 1.6;
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* Speciality */
.speciality {
    margin-top: 20px;
}


.speciality h3 {
    font-size: 16px;
    color: #5bb4e5;
    margin-bottom: 15px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tags span {
    /* background: #eef2ff; */
    background: #5bb4e5;
    color: #eef2ff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;


    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

/* Meta Info */
.meta-info {
    margin-top: 20px;
    font-size: 14px;
    /* color: #374151; */
}

.meta-info p {
    margin: 5px 0;
}

/* Biography */
.biography {
    padding: 20px;
    width: 533px;
}

.biography h3 {
   
    color: #5bb4e5;
    margin-bottom: 10px;
    font-size: 16px;
}

.biography p {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .profile-container {
    flex-direction: column;
  }

  .right-section {
    padding: 20px;
    border-left: none;
    border-top: 5px solid #5bb4e5;
  }

  .biography {
    width: 100%;
  }

  .image-box img {
    width: 100%;
    height: 100%;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  body {
    padding: 10px;
  }

  .profile-container {
    flex-direction: column;
  }

  .name-banner h2 {
    font-size: 18px;
  }

  .doc-name {
    font-size: 22px;
  }

  .subtitle {
    font-size: 16px;
  }

  .right-section {
    padding: 15px;
  }

  .tags {
    gap: 6px;
  }

  .tags span {
    font-size: 11px;
    padding: 5px 10px;
  }

  .image-box img {
    height: 100%;
  }

  .biography {
    padding: 10px;
    width: 100%;
  }
}