@font-face {
    font-family: Manrope-Light;
    src: url('../fonts/Manrope-Light.ttf');
}

@font-face {
    font-family: Manrope-Regular;
    src: url('../fonts/Manrope-Regular.ttf');
}

@font-face {
    font-family: Manrope-Medium;
    src: url('../fonts/Manrope-Medium.ttf');
}

@font-face {
    font-family: Manrope-SemiBold;
    src: url('../fonts/Manrope-SemiBold.ttf');
}

@font-face {
    font-family: Manrope-Bold;
    src: url('../fonts/Manrope-Bold.ttf');
}

:root {
    --white-color: #ffffff;
    --primary-color: #0060A5;
    --lightblue-color: #D8EDFC;
    --black-color: #222222;
    --yellow-color: #F8B418;
    --title-color: #221f20;
    --paragraph-color: #333333;
    --newspara-color: #444444;
    --heading-color: #404040;
    --bg-color: #F5F9FF;
    --footer-bg: #003255;
}


body {
    background-color: var(--white-color);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Manrope-Regular', sans-serif;
    font-weight: normal;
    color: var(--black-color);
}

h1,
h2,
h3 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Manrope-Bold', sans-serif;
    font-weight: normal;
}

h4,
h5 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Manrope-Bold', sans-serif;
    font-weight: normal;
}

p {
    margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn {
    border-radius: 5px;
    height: 54px;
    text-align: center;
    border: 1px solid transparent;
    max-width: max-content;
    width: auto;
    padding: 10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope-Regular', sans-serif;
    font-weight: normal;
    gap: 10px;
}

.btn-main {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all .5s ease-out;
}

.btn-main:hover {
    color: var(--primary-color);
    background-color: var(--font-white);
    transition: all .5s ease-out;
}

.btn-main i{
    position: relative;
    color:  var(--white-color);
    top: 8px;
    transform: translateY(-50%) rotate(-40deg);
    transition: ease-in-out 0.3s;
}

.btn-main:hover i {
    color: var(--primary-color);
    transform: translateY(-50%) rotate(0deg);
}

.btn-secondary {
    color: var(--primary-color);
    background-color: var(--white-color);
    border-color: var(--primary-color);
    transition: all .5s ease-out;
}

.btn-secondary:hover {
    background-color: #fafafa;
    transition: all .5s ease-out;
}

.btn-border {
    color: var(--primary-color);
    background-color: var(--white-color);
    border-color: var(--primary-color);
    transition: all .5s ease-out;
}

.btn-border:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: all .5s ease-out;
}

.btn-secondary i{
    position: relative;
    color:  var(--primary-color);
    top: 8px;
    transform: translateY(-50%) rotate(-40deg);
    transition: ease-in-out 0.3s;
}

.btn-secondary:hover i {
    transform: translateY(-50%) rotate(0deg);
}

.header-btn {
    height: 46px;
    padding: 10px 20px;
}

/* header */
.navbar {
    z-index: 1030;
    /* Ensure it stays on top */
}

.offcanvas-start {
    width: 250px;
}

.offcanvas {
    background-color: var(--primary-color);
}

.offcanvas-header {
    padding: 16px 20px 0px 20px;
}

.offcanvas .btn-close {
    opacity: 1;
}

.offcanvas-body {
    padding: 10px 20px;
}

.offcanvas .nav-link {
    font-size: 15px;
    padding: 0px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.navbar {
    background-color: var(--white-color);
    margin: 0 auto;
    padding: 13px 2%;
}

.navbar.scrolled {
    box-shadow: 0 4px 1px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
}

.nav-link {
    font-family: 'Manrope-Medium', sans-serif;
    color: var(--black-color);
}

/* footer */
footer {
    background-color: var(--footer-bg);
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-info-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #074977;
}

.footer-info-wrapper p {
    font-size: 18px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.footer-links {
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 10;
}

.footer-links-heading {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Manrope-SemiBold', sans-serif;
    color: var(--white-color);
    font-size: 18px;
}

.footer-link-lists {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-link-item {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.footer-link-item:last-child {
    margin-bottom: 0px;
}

.footer-link {
    font-size: 16px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    transition: ease-in-out 0.3s;
}

.footer-link:hover,
.footer-link:focus,
.footer-link:active {
    color: var(--white-color);
    transition: ease-in-out 0.3s;
}

.footer-link i {
    min-width: 25px;
}

.mdl-layer {
    position: absolute;
    z-index: 1;
    right: -10px;
    top: -15px;
    display: inline-block;
    height: 200px;
    width: fit-content;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid #074977;
    gap: 20px;
}

.footer-bottom img {
    height: 48px;
    object-fit: contain;
}

.footer-bottom p {
    font-size: 16px;
    color: var(--white-color);
}

/* subscribe */
.subscribe {
    width: 100%;
    position: relative;
    display: inline-block;
}

.subscribe::before {
    content: '';
    position: absolute;
    background: #003255;
    height: 35%;
    width: 100%;
    background-position: bottom;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.subscribe-wrapper {
    background-color: var(--primary-color);
    padding: 0px 50px;
    border-radius: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 10;
    height: 420px;
    margin-top: 100px;
}

.subscribe-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background-image: url('../img/footerbg.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.footer-subscribe-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-subscribe-img img {
    position: absolute;
    top: -60px;
    z-index: 100;
}

.footer-subscribe-content {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0px;
    height: 420px;
    justify-content: center;
}

.footer-subscribe-content h3 {
    font-size: 24px;
    color: var(--white-color);
}

.footer-subscribe-content p {
    margin-top: 30px;
    margin-bottom: 30px;
    color: var(--white-color);
}

.subscribe-group {
    width: 85%;
    position: relative;
    display: inline-block;
}

.subscribe-field {
    width: 100%;
    background: var(--lightblue-color);
    border-radius: 5px;
    padding: 3px 200px 3px 20px;
    align-items: center;
    min-height: 56px;
    border: none;
}

.subscribe-field:focus {
    outline: none;
}

.subscribe-btn {
    min-width: 200px;
    min-height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 13px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    position: absolute;
    top: 2px;
    right: 2px;
    border-radius: 5px;
}

.subscribe-btn i {
    position: absolute;
    color: #fff;
    top: 25px;
    right: 20px;
    transform: translateY(-50%) rotate(-40deg);
    transition: ease-in-out 0.3s;
}


.subscribe-btn:hover i {
    transform: translateY(-50%) rotate(0deg);
}

/* hero */
.main-container {
    width: 100%;
    position: relative;
    display: inline-block;
}

.hero-container {
    width: 100%;
    position: relative;
    display: flex;
    min-height: 360px;
    background: linear-gradient(to right, #eaf4fb 75%, #0060A5 25%);
    overflow: hidden;
    align-items: end;
    justify-content: flex-end;
    padding-top: 50px;
}

.hero-content-wrapper {
    width: 100%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0px;
    gap: 30px;
}

.hero-small-heading {
    font-size: 42px;
    color: var(--black-color);
    font-family: 'Manrope-Bold', sans-serif;
}

.hero-heading {
    font-size: 36px;
    color: var(--black-color);
    font-family: 'Manrope-Bold', sans-serif;
}

.hero-image-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}

.hero-image-wrapper img {
    max-height: 320px;
    object-fit: contain;
    position: relative;
    z-index: 10;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 75%;
    transform: translate(-50%, -50%);
    background-image: url('../img/footermd.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 150px;
    display: inline-block;
    z-index: 1;
}

/* --------- section --------- */
section {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 50px 0px;
}

.pt-100{
    padding-top: 100px;
}

/* about */
.about-content-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
}

.about-heading {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--black-color);
    font-family: 'Manrope-SamiBold', sans-serif;
}

.about-description {
    font-size: 16px;
    color: var(--black-color);
}

/* location */
.divider {
    width: 100%;
    position: relative;
    display: inline-block;
}

.divider-line {
    border-top: 1px solid #EEEEEE;
    width: 100%;
    position: relative;
    display: inline-block;
}

.location-about-logo{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-about-logo img{
    height: 140px;
    object-fit: contain;
}

/* clinics */
.section-heading-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    z-index: 99;
}

.section-heading {
    font-size: 36px;
    font-family: 'Manrope-Bold', sans-serif;
    color: #222222;
    text-align: center;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.section-description {
    font-size: 16px;
    color: #444444;
    text-align: center;
}

.section-description span {
    color: #0060A5;
}

.clinic-services-btns {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.csbtn {
    height: 55px;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 18px;
    font-family: 'Manrope-SemiBold', sans-serif;
    text-transform: capitalize;
}

.csbtn.selected {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.clinics-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    gap: 24px;
}

.clinics-list {
    min-width: 360px;
    width: 360px;
    position: relative;
    display: inline-block;
}

.clinics-map {
    width: 100%;
    position: relative;
    display: inline-block;
}

.clinicfilters{
    width: 100%;
    position: relative;
    display: flex;
    gap: 24px;
}

.clinic-search-block {
    min-width: 360px;
    width: 360px;
    position: relative;
    display: flex;
    min-height: 60px;
    align-items: flex-end;
}

.csearch-field {
    width: 100%;
    position: relative;
    display: inline-block;
    min-height: 48px;
    background-color: var(--white-color);
    border: 1px solid #ced4da;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
    padding: 5px 15px 5px 35px;
}

.clinic-search-block i {
    position: absolute;
    left: 10px;
    top: 27px;
    color: #666;
}

input:focus,
input:active,
input:hover {
    outline: none;
}

.clinic-status-toggle {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 30px;
    min-height: 60px;
}

.clinic-status-label {
    width: 100%;
    position: relative;
    display: flex;
    align-items: end;
    color: var(--primary-color);
    justify-content: flex-end;
    margin-bottom: 3px;
    font-size: 14px;
}

.custom-switch {
    position: absolute;
    display: inline-block;
    width: 90px;
    height: 36px;
    top: 0px;
    right: 28px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white-color);
    border: 1px solid #d9d9d9;
    border-radius: 999px;
    padding: 0 10px;
    cursor: pointer;
    height: 100%;
    position: relative;
    font-size: 14px;
    color: var(--black-color);
    transition: background-color 0.3s;
    min-height: 36px;
}

.switch-handle {
    position: absolute;
    top: 4px;
    right: 3px;
    width: 26px;
    height: 26px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s;
    z-index: 1;
}

/* Text Positions */
.text-open,
.text-close {
    z-index: 2;
    position: absolute;
    top: 9px;
    font-size: 12px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

/* Position OPEN on right, CLOSE on left */
.text-close {
    right: 10px;
    opacity: 0;
    color: var(--black-color);
}

.text-open {
    left: 10px;
    opacity: 1;
}

/* When checked (OPEN) */
.custom-switch input:checked+.switch-label {
    background-color: var(--white-color);
    color: var(--black-color);
}

.custom-switch input:checked+.switch-label .switch-handle {
    transform: translateX(-55px);
    background-color: var(--primary-color);
}

.custom-switch input:checked+.switch-label .text-close {
    opacity: 1;
}

.custom-switch input:checked+.switch-label .text-open {
    opacity: 0;
}

.clinicswrapper {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
    background: #eaf4fb;
    margin-top: 20px;
    border-radius: 5px;
    max-height: 600px;
    min-height: 600px;
    overflow: auto;
    height: auto;
}

.clinicswrapper::-webkit-scrollbar {
  display: none;
}

.clinicswrapper {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.clinic-popup-card {
    position: fixed;
    top: 90px;
    left: 20px;
    max-width: 675px;
    background: var(--white-color);
    border-radius: 15px;
    border: solid 10px #f9f9f9;
    padding: 10px 40px;
    z-index: 1055;
    animation: fadeInUp 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: none;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.clinic-popup-card .fa-star {
    color: #f4c542;
}

.clinic-popup-card .fa-star-o {
    color: #ccc;
}

.clinicswrapper .accordion-item{
    padding: 20px 15px;
    border-radius: 15px;
    border: 1px solid #dbcfcf;
    background-color: var(--white-color);
    margin-bottom: 20px;
    position: relative;
}

.clinicswrapper .accordion-item .accordion-button{
    padding: 0px;
    font-size: 18px;
    color: var(--black-color);
    gap: 15px;
}

.clinicswrapper .accordion-item .accordion-button::after{
    width: 14px;
    height: 14px;
    background-size: 14px;
}

.clnmap{
    border-radius: 5px;
    overflow: hidden;
    border: solid 6px #fff4f4;
    padding: 9px;
    background: #fff;
    width: 100%;
    height: 600px;
    margin-top: 20px;
}

.clicicNameBlock{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
    position: relative;
    padding-top: 10px;
}

.clinicServices{
    min-width: 150px;
    flex: 0 0 auto;
}

.clinicName{
    font-size: 25px;
    color: var(--heading-color);
}

.reviewText{
    color: #2161ab;
    font-size: 15px;
}

.clinicImg{
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.fullheight{
    height: 100%;
}

.clinicContact{
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
    color: #7b7b7c;
}

.clinicHourBlock{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.clinicHourBlock h3{
    font-size: 20px;
}

.clinicHourBlock h4{
    font-size: 16px;
    display: flex;
    align-items: center;
    line-height: 16px;
}

.clinicHourBlock h4 span{
    font-size: 24px;
    margin-left: 5px;
    line-height: 24px;
}

.clinicHoursItem{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.clinicHoursItem span:first-child{
    min-width: 35px;
}

.hoursViewMoreBlock{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.htoggleBtn{
    background-color: transparent;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.map{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
}

.map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinic-location-btns{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 1.5rem;
}

/* clinic info */

.clinicInfoWrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: baseline;
    padding: 0px 30px;
    gap: 20px;
    background-color: var(--primary-color);
    border-radius: 15px;
    height: 100%;
}

.clinicInfoItem{
    flex: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    height: 100%;
}

.cicon{
    width: 100px;
    height: 100px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cicon img{
    width: 50px;
    height: 50px;
}

.clinicInfoItem p{
    font-size: 16px;
    text-align: center;
    color: var(--white-color);
    font-family: 'Manrope-Bold', sans-serif;
}

.clinicInfoItem.hours{
    border: 1px solid rgba(255, 255, 255, .25);
}

.clinicInfoItem.hours ul li{
    font-size: 16px;
    text-align: center;
    color: var(--white-color);
    font-family: 'Manrope-Bold', sans-serif;
}

.clinicInfoItem.phone .cilink{
    font-size: 16px;
    text-align: center;
    color: var(--white-color);
    font-family: 'Manrope-Bold', sans-serif;
    width: 100%;
    position: relative;
    display: inline-block;
}

/* team */
.team-card{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    background-color: var(--white-color);
}

.team-person-img{
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.team-person-img img{
    width: 150px;
}

.team-person-info{
    background-color: #F4FBFF;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #BDD6E7;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.team-person-info h3{
    font-size: 20px;
    font-family: 'Manrope-SemiBold', sans-serif;
    color: #0B588C;
    text-align: center;
}

.team-person-info p{
    color: #0B588C;
    text-align: center;
}

/* specialist care */
.specialist{
    background-color: var(--bg-color);
}

.specialistTabs{
    gap: 30px;
    justify-content: center;
}

.specialistTabs .nav-item{
    width: 31.1%;
}

.specialistTabs .nav-item .nav-link{
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    border-radius: 12px;
    color: var(--primary-color);
    font-family: 'Manrope-Medium', sans-serif;
}

.specialistTabs .nav-item .nav-link.active{
    background-color: var(--primary-color);
    color: var(--white-color);
}

.specialistTabContent{
    margin-top: 30px;
}

.specialistTabContent .tab-pane{
    border-radius: 15px;
    border: 1px solid #D0ECFF;
    box-shadow: 0px 0px 16px 0px #16517B0D;
    background-color: var(--white-color);
    padding: 60px;
    padding-bottom: 35px;
    width: 100%;
}

.specialistServiceImg{
    width: 100%;
    height: 320px;
    position: relative;
    display: inline-block;
}

.specialistServiceImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.specialistServiceInfo{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.specialistServiceInfo > div{
    margin-bottom: 30px;
}

.specialistServiceInfo > div h3{
    font-size: 24px;
    color: var(--black-color);
    font-family: 'Manrope-SemiBold', sans-serif;
    margin-bottom: 20px;
}

/* medical services */

.medical-service-card{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #BDD6E7;
    gap: 20px;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.10);
    transition: ease-in-out 0.3s;
}

.medical-service-card img{
    width: 60px;
    margin: 0 auto;
    transition: ease-in-out 0.3s;
}

.medical-service-card h3{
    font-size: 20px;
    color: var(--black-color);
    font-family: 'Manrope-SemiBold', sans-serif;
    text-align: center;
    transition: ease-in-out 0.3s;
}

.medical-service-card p{
    text-align: center;
    font-size: 16px;
    color: var(--newspara-color);
    transition: ease-in-out 0.3s;
}

.medical-service-card:hover{
    transition: ease-in-out 0.3s;
    background-color: var(--primary-color);
}

.medical-service-card:hover img{
    filter: brightness(0) invert(1);
}

.medical-service-card:hover h3{
    transition: ease-in-out 0.3s;
    color: var(--white-color);
}

.medical-service-card:hover p{
    transition: ease-in-out 0.3s;
    color: var(--white-color);
}

.visit-btn-block{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.visit-btn-block h4{
    font-size: 18px;
    color: #222222;
}

/* testimonial */
.testimonial{
    background-color: var(--primary-color);
}

.testiBgImg{
    position: absolute;
    top: 80px;
    display: inline-block;
    z-index: 1;
}

.testiBgImg img{
    height: 325px;
    object-fit: contain;
}

.testiBgImg.left{
    left: 0;
}

.testiBgImg.right{
    right: 0;
}

.testimonial-slider{
    position: relative;
    z-index: 99;
}

.testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 6.2em; /* Approx 4 lines depending on font */
}

.testimonial-text.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
}

.testimonial-card{
    position: relative;
    display: inline-block;
    border-radius: 10px;
    background-color: var(--white-color);
    border: 1px solid #D0ECFF;
    box-shadow: 0px 0px 16px 0px #16517B0D;
    padding: 30px;
    min-height: 235px;
}

.stars{
    color: #FFD330;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.toggle-link{
    color: #9d9d9d;
    cursor: pointer;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-top: 10px;
}

.reviewerInfo{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.reviewername{
    background-color: #f05729;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: var(--white-color);
    border: 1px solid #5a5a5a;
}

.reviewerInfo h4{
    font-size: 18px;
    color: var(--black-color);
}

/* articles */
.articles-card{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.articles-img{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.articles-img img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.articleDate{
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    padding: 10px;
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: -50px;
    right: 20px;
}

.articleDate h3{
    color: var(--white-color);
    font-size: 32px;
    text-align: center;
}

.articleDate p{
    color: var(--white-color);
    text-align: center;
    font-size: 13px;
}

.srticles-body{
    width: 100%;
    position: relative;
    display: inline-block;
}

.categoryname{
    background-color: #0060A51A;
    height: 32px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--primary-color);
    font-size: 12px;
    width: fit-content;
}

.articles-body a{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: ease-in-out 0.3s;
}

.article-heading{
    font-size: 24px;
    color: #222222;
    transition: ease-in-out 0.3s;
}

.articles-body a:hover .article-heading{
    color: var(--primary-color);
    transition: ease-in-out 0.3s;
}   

.article-description{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 6.2em;
}

.article-link{
    width: 40px;
    height: 40px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EEEEEE;
    padding: 3px;
    border-radius: 50%;
    transition: ease-in-out 0.3s;
}

.article-link i {
    color: #666666;
    font-size: 13px;
    transform: rotate(-45deg);
    transition: ease-in-out 0.3s;
}

.article-link:hover{
    border-color: var(--primary-color);
}

.article-link:hover i{
    transform: rotate(0deg);
    transition: ease-in-out 0.3s;
    color: var(--primary-color);
}

/* faq */
.faq-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--bg-color);
    border: 1px solid #D0ECFF;
    border-radius: 15px;
    padding: 45px;
}

.faq-heading-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* faq */
.faq .accordion-item{
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, .70);
    border-radius: 5px;
    border: 1px solid #D0ECFF;
}

.faq .accordion-item:last-child{
    margin-bottom: 0px;
}

.faq .accordion-button{
    border-radius: 5px;
    color: var(--black-color);
    font-size: 16px;
    font-family: 'Manrope-SemiBold', sans-serif;
    min-height: 60px;
    gap: 20px;
}

.faq .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
    border-radius: 5px 0px 5px 0px;
}

.faq .accordion-body{
    padding-top: 0px;
}

.faq .accordion-button::after{
    background-image: url('../img/circle-plus.svg');
}

.faq .accordion-button:not(.collapsed)::after{
    background-image: url('../img/circle-minus.svg');
}

.faq-wrapper .accordion-body a{
    color: var(--primary-color);
}

.about-img-wrapper img{
    border-radius: 30px;
}