@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Poppins:wght@400;600;700&display=swap");

:root {
    --heading-font-family: "Montserrat", sans-serif;
    --paragraph-font-family: "Poppins", sans-serif;
    --body-font-size: 14px;
    /* top-navbar-section */
    --top-nav-font-family: "Poppins Regular", sans-serif;
    --top-nav-font-color: #575756;
    --top-nav-font-size: 13px;
    --top-nav-background-color: #ededed;
    /* appointment-section */
    --brand-font-size: 26px;
    --brand-text-color: #964091;
    --brand-icon-color: #964091;
    --mobile-icon-color: #616160;
    --brand-font-family: "poppins-semibold", sans-serif;
    --brand-Logo-width: 48px;
    --mobile-icon-width: 32px;
    --mobile-text-font-size: 14px;
    --mobile-text-font-family: "poppins-bold", sans-serif;
    --mobile-number-font-size: 22px;
    /* appointment section */
    --appointment-background: #ffffff;
    --appointment-brand-font-color: #f08db0;
    --border-left-right-color: #964091;
    --appointment-container-imgLine-color: #964091;
    --social-media-icon-color: #964091;
    --appointment-container-bg-color: #9640923d;
    --appointment-doctor-name-font-color: #964091;
    --appointment-img-bg-color: #bb7cb3;
    --appointment-doctor-profession-font-color: #bb7cb3;
    --appointment-description-font-color: #646363;

    /* biography & education */
    --biogrraphy_educationContainer-bg: #bb7cb3;
    --education_biography_title: #ffffff;
    --education_biography_description: #ffffff;

    /* experience section */
    --experience-section-bg-color: #e3ebed;
    --experience-title-font-color: #646363;
    --experience-description-font-color: #646363;

    /* achievement section */
    --achievement-section-bg-color: #e3e3e3;
    --achievement-title-font-color: #646363;
    --achievement-descripttion-font-color: #646363;

    /* chamber-section */
    --chamber-title-font-color: #646363;
    --chamber-hospital-name-font-color: #4a4a49;
    --chamber-time-font-color: #646363;
}

/* Global setup */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

.icon_background {
    background-color: var(--brand-icon-color);
}

/* font familly */
.proppins-font-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.proppins-font-semiBold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.proppins-font-Bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.montserrat-font-semiBold {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.montserrat-font-Bold {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.montserrat-font-ExtraBold {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

/* top-navbar-section */
.navbar-item {
    font-size: var(--top-nav-font-size);
    font-family: var(--top-nav-font-family);
}

.top-nav {
    background-color: var(--top-nav-background-color);
}

/* APPOINTMET-SECTION */

.appointment-navbar {
    margin-top: 57px;
    background-color: var(--appointment-background);
}

.navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Appointment-Logo {
    width: var(--brand-Logo-width);
    color: var(--brand-icon-color);
}

.navbar-brand h1 {
    font-size: var(--brand-font-size);
    font-family: var(--brand-font-family);
    color: var(--brand-text-color);
}

.appointment-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-icon {
    width: var(--mobile-icon-width);
    /* border: 2px solid red; */
    margin-bottom: 10px;
    margin-left: 10px;
    color: var(--mobile-icon-color);
}

.mobile-text-container {
    line-height: 30px;
}

.mobile-text {
    font-size: var(--mobile-text-font-size);
    font-family: var(--mobile-text-font-family);
    font-weight: 600;
}

.mobile-text a {
    color: var(--mobile-icon-color);
    text-decoration: none;
}

.mobile-text a:hover {
    color: var(--brand-text-color);
}

.mobile-num {
    font-size: var(--mobile-number-font-size);
    font-family: var(--mobile-text-font-family);
    font-weight: 700;
}

/* appointment section */
.appointment-container-banner {
    background: var(--appointment-container-bg-color);
}

.appointment-sub-container {
    height: 600px;
}

.appointment-img-container {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.round-image {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 430px;
    width: 430px;
    border-radius: 50%;
    background: var(--appointment-img-bg-color);
}

.appointment-img {
    z-index: 21;
    max-height: 100%;
    max-width: 100%;
    border-radius: 50%;
}

.plus-icon i {
    font-size: 7px;
    color: var(--appointment-description-plus-color);
}

.appointment-container-title1 {
    padding-top: 145px;
    letter-spacing: 1.5px;
    color: var(--appointment-doctor-name-font-color);
    text-transform: capitalize;
}

.appointment-container-title2 {
    padding-top: 8px;
    color: var(--appointment-doctor-profession-font-color);
    /* margin-left: 70px; */
}

.appointment-description {
    color: var(--appointment-description-font-color);
    width: 95% !important;
    text-align: justify;
}

.line-1 {
    position: absolute;
    bottom: -10px;
    left: 0;
    margin-left: 40px;
    height: 150px;
    width: 30px;
    background-color: var(--appointment-container-imgLine-color);
    border-radius: 25px 25px 0 0;
    transform: rotate(38deg);
    transform-origin: bottom;
}

.line-2 {
    position: absolute;
    bottom: -10px;
    margin-left: 120px;
    height: 200px;
    width: 30px;
    background-color: var(--appointment-container-imgLine-color);
    border-radius: 25px 25px 0 0;
    transform: rotate(38deg);
    transform-origin: bottom;
}

.line-3 {
    position: absolute;
    top: -10px;
    right: 0;
    margin-right: 30px;
    height: 150px;
    width: 30px;
    background-color: var(--appointment-container-imgLine-color);
    border-radius: 0 0 25px 25px;
    transform: rotate(38deg);
    transform-origin: top;
}

.line-4 {
    position: absolute;
    top: 25px;
    right: 0;
    margin-right: 135px;
    height: 200px;
    width: 30px;
    background-color: var(--appointment-container-imgLine-color);
    border-radius: 25px 25px 0 0;
    transform: rotate(38deg);
    transform-origin: top;
}

.wrapper {
    display: inline-flex;
}

.wrapper .icon {
    margin: 0 20px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon span {
    display: block;
    height: 40px;
    width: 40px;
    background: var(--social-media-icon-color);
    color: rgb(248, 242, 242) !important;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover span {
    color: rgb(15, 0, 0);
}

.wrapper .icon span i {
    line-height: 40px;
    font-size: 20px;
}

.wrapper .icon:hover span {
    color: rgb(248, 242, 242);
}

.wrapper .icon .icon_text a {
    color: var(--bs-body-color);
    text-decoration: none;
}

/* education & biography container */
.education-container {
    height: auto;
    background: var(--biogrraphy_educationContainer-bg);
}

.biography-section {
    width: 80%;
    text-align: justify;
}

.border-left-right {
    display: inline-block;
    padding: 0 5px 0 5px;
    border-left: 3px solid var(--border-left-right-color);
    border-right: 3px solid var(--border-left-right-color);
}

.education_biography_title {
    color: var(--education_biography_title);
}

.education_biography_description {
    color: var(--education_biography_description);
}

.education-container .description1 {
    width: 75% !important;
}

.experience-container {
    /* height: auto; */
    background: var(--experience-section-bg-color);
}

.experience-font-title {
    color: var(--experience-title-font-color);
}

.experience {
    width: 53%;
}

.description {
    color: var(--experience-description-font-color);
}

/* .experience-section .experinece-img img {
  height: 100% !important;
  width: 100%;
} */
/* achieviement section */
.achivement-container {
    background: var(--achievement-section-bg-color);
}

.achivement-container ul {
    margin-left: -15px;
}

.achivement-container ul li {
    color: var(--appointment-description-font-color);
    margin-top: 6px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    /* text-align: justify; */
}

.achievement-title {
    color: var(--achievement-title-font-color);
}

.achievement-description {
    color: var(--appointment-description-font-color);
}

.achievement-image {
    max-height: 400px;
    margin-left: 50px;
}

.chamber-details-title {
    color: var(--chamber-title-font-color);
}

.time {
    color: var(--chamber-time-font-color);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

/* responsive design tab*/
@media screen and (min-width: 767px) and (max-width: 1124px) {
    .appointment-sub-container {
        height: 600px;
    }

    .appointment-img-container {
        position: relative;
        overflow: hidden;
    }

    .round-image {
        position: absolute;
        z-index: 20;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 330px;
        width: 330px;
        border-radius: 50%;
        background: var(--appointment-img-bg-color);
    }

    .appointment-img {
        z-index: 21;
        max-height: 100%;
        max-width: 100%;
        border-radius: 50%;
    }

    .appointment-container-title1 {
        padding-top: 100px;
        letter-spacing: 1.5px;
        color: var(--appointment-doctor-name-font-color);
    }

    .appointment-container-title2 {
        padding-top: 8px;
        color: var(--appointment-doctor-profession-font-color);
        /* margin-left: 70px; */
    }

    .appointment-description {
        color: var(--appointment-description-font-color);
        width: 95% !important;
        text-align: justify;
    }

    .line-1 {
        position: absolute;
        bottom: -10px;
        left: 0;
        margin-left: 20px;
        height: 130px;
        width: 30px;
        background-color: var(--appointment-container-imgLine-color);
        border-radius: 25px 25px 0 0;
        transform: rotate(23deg);
        transform-origin: bottom;
    }

    .line-2 {
        position: absolute;
        bottom: -10px;
        margin-left: 100px;
        height: 200px;
        width: 30px;
        background-color: var(--appointment-container-imgLine-color);
        border-radius: 25px 25px 0 0;
        transform: rotate(23deg);
        transform-origin: bottom;
    }

    .line-3 {
        position: absolute;
        top: -10px;
        right: 0;
        margin-right: -10px;
        height: 150px;
        width: 30px;
        background-color: var(--appointment-container-imgLine-color);
        border-radius: 0 0 25px 25px;
        transform: rotate(23deg);
        transform-origin: top;
    }

    .line-4 {
        position: absolute;
        top: 25px;
        right: 0;
        margin-right: 80px;
        height: 200px;
        width: 30px;
        background-color: var(--appointment-container-imgLine-color);
        border-radius: 25px 25px 0 0;
        transform: rotate(23deg);
        transform-origin: top;
    }

    .wrapper .icon {
        margin: 0 7px;
        gap: 5px;
    }

    .wrapper .icon span {
        height: 30px;
        width: 30px;
    }

    .wrapper .icon span i {
        line-height: 30px;
        font-size: 15px;
    }

    .achievement-image {
        max-height: 510px;
        margin-left: -19px;
    }

    .time {
        width: 100% !important;
    }
}

/* mobile responsive */
@media screen and (min-width: 768px) {
    .montserrat-font-Bold {
        font-weight: 500;
    }
}

@media screen and (max-width: 767px) {

    /* APPOINTMET-S
  ECTION  MEDIA QUERY*/
    .appointment-navbar {
        margin-top: 57px;
    }

    .navbar-brand {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Appointment-Logo {
        width: 40px;
        color: var(--brand-icon-color);
    }

    .navbar-brand h1 {
        font-size: 16px;
        font-family: var(--brand-font-family);
        color: var(--brand-text-color);
    }

    .appointment-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-icon {
        width: 20px;
        margin: auto 0;
        color: var(--mobile-icon-color);
    }

    .mobile-text-container {
        line-height: 16px;
    }

    .mobile-text {
        font-size: 9px;
        font-family: var(--mobile-text-font-family);
    }

    .mobile-num {
        font-size: 14px;
        font-family: var(--mobile-text-font-family);
    }

    .appointment-sub-container {
        height: auto;
    }

    .appointment-img-container {
        height: 500px;
    }

    .round-image {
        height: 300px;
        width: 300px;
        text-align: center;
    }

    .appointment-container-title1 {
        padding-top: 50px;
        color: var(--appointment-doctor-name-font-color);
    }

    .appointment-container-title2 {
        padding-top: 8px;
        color: var(--appointment-doctor-profession-font-color);
    }

    .appointment-description {
        color: var(--appointment-description-font-color);
        width: 95% !important;
        text-align: justify;
    }

    .line-1 {
        left: 0;
        margin-left: 35px;
        height: 100px;
        width: 30px;
        background-color: var(--appointment-container-imgLine-color);
        transform: rotate(23deg);
        transform-origin: bottom;
    }

    .line-2 {
        margin-left: 105px;
        height: 200px;
        width: 30px;
        transform: rotate(23deg);
        transform-origin: bottom;
    }

    .line-3 {
        top: -10px;
        right: 0;
        height: 120px;
        width: 30px;
        transform: rotate(23deg);
        transform-origin: top;
    }

    .line-4 {
        top: 25px;
        right: 0;
        margin-right: 100px;
        height: 200px;
        width: 30px;
        transform: rotate(23deg);
        transform-origin: top;
    }

    .wrapper .icon {
        margin: 0 7px;
        gap: 7px;
    }

    .wrapper .icon span {
        height: 33px;
        width: 33px;
    }

    .wrapper .icon span i {
        line-height: 33px;
        font-size: 17px;
    }

    .education-container .description1 {
        width: 100% !important;
    }

    .achievement-image-div {
        display: flex;
        justify-content: center;
    }

    .achievement-image {
        margin-left: 0;
        height: 380px !important;
    }

    .time {
        width: 100% !important;
    }

    .montserrat-font-Bold {
        font-weight: 500;
    }
}
