/*Cardio , Derma , ent ,gynaco & doc HTML CSS*/
.home-button {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: #007074d5;
    cursor: pointer;
}
.home-button:hover {
    background-color: #02969bd5;
}
#progressBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 8px;
    background-color: #3fbcc0;
    z-index: 9999;

  }
  /*End*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}
.logo {
    cursor: pointer;
}
.slide-content{
    margin: 0 40px;
    overflow: hidden;
    background-color: #001c1e;
    border-radius: 25px;
}
.slide-container{
    max-width: 1120px;
    width: 100%;
    background-color: #001c1e;
    padding: 40px 0;
    border-radius: 20px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f8f8f8;
}

.logo {
    height: 40px;
}

.header-buttons button {
    margin-left: 10px;
    padding: 5px 10px;
}

.calendar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f3f3f3;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.nav-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.month {
    font-size: 20px;
    font-weight: bold;
}

.dates {
    display: flex;
    flex-wrap: wrap; /* allow wrapping to next line */
    font-size: 0.8em; /* reduce font size */
    gap: 10px;
}
@media (min-width: 700px) {
    .dates {
      flex-wrap: nowrap; /* don't wrap to next line */
    }
  }
.date1, .date2, .date3, .date4, .date5, .date6, .date7, .date8, .date9, .date10, .date11, .date12 {
    background-color: #fff;
    padding: 10px;
    cursor: pointer;
    border: 1px solid #ccc;
}

.date:hover {
    background-color: #007bff;
    color: #fff;
}

.schedule {
    padding: 20px;
}

.consultation {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.consultation h3 {
    margin: 0;
}

.consultation p {
    margin: 5px 0;
}

.consult-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
}

.consult-button:hover {
    background-color: #0056b3;
}

footer {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background-color: #f8f8f8;
}
.card{
    border-radius: 25px;
    background-color: #FFf;
}
.image-content,.card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}
.image-content{
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}
.overlay{
    border-radius: 25px 25px 0 25px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #3fbcc0a4;
}
.overlay::before,.overlay::after{
    content: '';
    right: 0;
    bottom: -40px;
    position: absolute;
    height: 40px;
    width: 40px;
    background-color: #3fbcc0a4;
}
.overlay::after{
    border-radius: 0 25px 0 0;
    background-color: #fff;
}
.card-image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}
.card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4070F4;
    
}
.name{
    font-size: 18px;
    font-weight: 500;
    columns: #333;
}
.description{
    font-size: 14px;
    color: #707070;
    text-align: center;
}
.button{
    border: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    background-color: #007074d5;
    border-radius: 8px;
    margin: 14px;
cursor: pointer;
transition: all 0.3s ease;
}
.button:hover{
    background: #02969bd5;
}

.swiper-navBtn{
    color: white;
}
.swiper-navBtn:hover{
    color: #007074d5;
}
.swiper-pagination-bullet{
    opacity: 0;
}
.btns{
    width: 200px;
}
