/*================================================
/*================================================
hero section
=================================================*/
.hero-section {
    background-color: #EFF8FF;
    background-image: url(../images/hero-bg-img.svg);
    background-position: center center;
    background-repeat: no-repeat;
}

/* hero left start */
.hero-left h1 {
    line-height: 1.2em;
    font-weight: 600;
}

.hero-rating {
    padding-top: 30px;
    border-top: 1px solid #0e384c1a;
    column-gap: 10px;
}

.hero-rating span {
    color: #FFA800;
}

/* hero right start */
.hero-image {
    max-width: 100%;
}

.hero-right-icon {
    background-color: #fff;
    color: var(--my-primary);
    /*transform: translate(50%, -50%);*/
    box-shadow: 0px 0px 40px 0px #0E384C1A;
    border-radius: 50%;
    display: flex;
    width: 90px;
    height: 90px;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
}

.hero-right-icon::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--my-secondary);
    border-radius: 100px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    height: 100%;
    z-index: -1;
}

.icon-1 {
    top: 50%;
    left: 10%;
}

.icon-2 {
    top: 20%;
    right: 0%;
}

.icon-3 {
    bottom: 5%;
    right: 5%;
}

.hero-right-icon:hover.hero-right-icon::before {
    transform: scale(1);
}

.hero-right-icon svg path {
    transition: all .4s;
}

.hero-right-icon:hover svg path {
    fill: #fff;
}

.star-svg-1 {
    position: absolute;
    max-width: 60px;
    top: 10%;
    animation: zoom 1s linear infinite;
    transition: all .4s;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

.hero-right-doctor {
    background-color: #fff;
    padding: 10px 10px 10px 10px;
    border-radius: 14px 14px 14px 14px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.12941176470588237);
    max-width: 100%;
    position: absolute;
    left: 10px;
    bottom: 0;
    transform: translateY(-100px);
    animation: moveLeftRight 3s infinite linear alternate;
}

@keyframes moveLeftRight {
    50% {
        left: 50px;
    }
}

.hero-right-doctor img {
    border-radius: 14px;
    max-width: 100%;
}

/*================================================
hero bottom ribbon
=================================================*/
.ribbon-inner-box {
    flex-grow: 1;
}

/*================================================
about us section
=================================================*/
/*about left*/
.about-left {
    background-image: url(../images/about-bg-img.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    position: relative;
}

.about-left img {
    overflow: hidden;
    border-radius: 40px;
    max-width: 100%;
}

.about-image-1 {
    position: relative;
    max-width: 100%;
}

.about-image-2 img {
    border: 8px solid #fff;
}

.about-image-2 {
    max-width: 100%;
    position: absolute;
    right: 10%;
    bottom: -50%;
    z-index: 1;
}

.rotate-img-box {
    position: absolute;
    max-width: 50%;
    top: 0;
    right: 0;
    z-index: 2;
    transform: translate(-50%, 50%);
    animation: rotate 30s infinite linear;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*about right*/

.about-right ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-right li {
    display: flex;
    align-items: flex-start;
    width: calc(50% - 10px);
    color: var(--my-secondary);
    font-weight: 500;
}

.about-right li i {
    color: var(--my-primary);
    padding-right: 10px;
}

/*================================================
Service Section
=================================================*/

.service-card {
    padding: 30px 30px 30px 30px;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.058823529411764705);
    border-style: none;
    border-radius: 30px 30px 30px 30px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-card::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    background-size: 101% 101%;
    left: 0;
    top: 100%;
    z-index: -1;
    background-color: var(--my-secondary);
}

.service-card:hover.service-card::before {
    top: 0%;
}

.service-card:hover.service-card h3, .service-card:hover.service-card p {
    color: #fff !important;
}

svg path {
    transition: all .4s;
}

.service-card:hover.service-card svg path {
    fill: #fff;
}

/*================================================
Clinic Section
=================================================*/
.clinic-section {
    padding: 150px 0;
    background-image: url(../images/clinic-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
}

.clinic-heading {
    max-width: 700px;
    margin: auto;
}

.clinic-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--my-secondary);
    z-index: -1;
    opacity: .7;
}

/*================================================
Choose Us Section
=================================================*/
.choose-left {
    gap: 60px;
}

.choose-right {
    gap: 60px;
}

.choose-left svg {
    margin-left: 15px;
}

.choose-right svg {
    margin-right: 15px;
}

/*================================================
dentist profile Section
=================================================*/
.dentist-profile-full {
    border-radius: 45px;
    overflow: hidden;
}

.dentist-right li {
    margin-bottom: 15px;
}


.social-link {
    column-gap: 15px;
}

.social-link i {
    color: #fff;
    transition: all .4s ease;
}

.social-link i:hover {
    color: var(--my-primary);
}
/*================================================
Testimonial Section
=================================================*/
.testimonial-rating-box {
    padding: 30px;
    border-radius: 30px;
    border: 6px solid #fff;
    position: absolute;
    max-width: 100%;
    width: 450px;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.testimonial-left img {
    border-radius: 45px;
}

.testimonial-rating-top {
    border-bottom: 1px solid #ffffff1f;
}

.author-profile {
    gap: 10px;
}

.carousel-btn {
    background-color: var(--my-primary);
    color: #fff;
    border-radius: 5px;
    padding: 10px;
}

.carousel-btn:hover {
    background-color: #000;
    color: #fff;
}

.testimonial-rating-stars i {
    color: #ffa800;
}

