/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 54px;
    height: 100%;
    top: 0;
    left: -28px;
    background: var(--bs-primary);
    transform: skew(40deg);
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/* button type 2 */
button {
    font-family: inherit;
    font-size: 20px;
    background: royalblue;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
}

button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

button:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

button:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

button:hover span {
    transform: translateX(5em);
}

button:active {
    transform: scale(0.95);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}

/* fancy button  */

.fancy {
    background-color: transparent;
    border: 2px solid royalblue;
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    float: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
}

.fancy::before {
    content: " ";
    width: 1.5625rem;
    height: 2px;
    background: royalblue;
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: #e8e8e8;
}

.fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
    color: white;
    background: royalblue;
}

.fancy:hover::before {
    width: 0.9375rem;
    background: white;
}

.fancy:hover .text {
    color: white;
    padding-left: 1.5em;
}

.fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}


/* Home page About section*/

.card {
    position: relative;
  flex-direction: column;
    justify-content: end;
    padding: 12px;
    gap: 12px;
    border-radius: 8px;
    cursor: pointer;
}

/* .card::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -5px;
    margin: auto;
    border-radius: 10px;
    background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100%);
    z-index: -10;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

.card::after {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100%);
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: blur(20px);
}



.card p:last-child {
    color: #e81cff;
    font-weight: 600;
}

.card:hover::after {
    filter: blur(30px);
}

.card:hover::before {
    transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
}



/* Service Start    */


/* Service End  */

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative;
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }

}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;

}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(39, 197, 184, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 0px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

/*** Single Page Hero Header End ***/

/* About page doctor Avilable  time */
.avilablecard {
    width: 350px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    gap: 10px;
    background-color: #fffffe;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.avilablecard::before {
    content: "";
    width: 350px;
    height: 100px;
    position: absolute;
    top: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: 3px solid #fefefe;
    background: linear-gradient(40deg, rgb(39, 150, 169) 0%, rgb(10, 87, 99) 50%, rgb(94, 155, 172) 100%);
    transition: all 0.5s ease;
}

.avilablecard * {
    z-index: 1;
}

.image {
    width: 90px;
    height: 90px;
    background-color: #1468BF;
    border-radius: 50%;
    border: 4px solid #fefefe;
    margin-top: 30px;
    transition: all 0.5s ease;
}

.avilablecard-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.5s ease;
}

.avilablecard-info span {
    font-weight: 600;
    font-size: 24px;
    color: #161A42;
    margin-top: 15px;
    line-height: 5px;
}

.avilablecard-info p {
    color: rgba(0, 0, 0, 0.5);
}

.button {
    text-decoration: none;
    background-color: #1468BF;
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
    border: 1px solid white;
    transition: all 0.5s ease;
}

.avilablecard:hover::before {
    width: 350px;
    height: 300px;
    border-bottom: none;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transform: scale(0.95);
}

.avilablecard:hover .avilablecard-info {
    transform: translate(0%, -25%);
}

.avilablecard:hover .image {
    transform: scale(2) translate(-60%, -40%);
}

.button:hover {
    background-color: #FF6844;
    transform: scale(1.1);
}


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);

}

.service .service-item .service-img {
    height: 200px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
    height: 20rem;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 200px;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;

}

/* .service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(4, 52, 61, 0.3);
} */

/* .service .service-item .service-img:hover img {
    transform: scale(1.3);
} */

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(4, 52, 61, 0.3);
    transition: 0.5s;
    z-index: 3;
}

/* .service .service-item:hover .service-content::before {
    background: rgba(4, 52, 61, 0.3);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}

.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
} */


.buttonService {
    padding: 15px 30px;
    font-size: 18px;
    outline: none;
    border: none;
    border-radius: 10px;
    transition: 0.5s;
    cursor: pointer;
    color: rgb(149, 150, 147);
    box-shadow: 0 0 10px #363636, inset 0 0 10px #363636;
}

.buttonService:hover {
    animation: a 0.5s 1 linear;
}

@keyframes a {
    0% {
        transform: scale(0.7, 1.3);
    }

    25% {
        transform: scale(1.3, 0.7);
    }

    50% {
        transform: scale(0.7, 1.3);
    }

    75% {
        transform: scale(1.3, 0.7);
    }

    100% {
        transform: scale(1, 1);
    }
}


/*** Service End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.about .about-img .about-img-inner {
    position: absolute;
    left: 0;
    bottom: 0;
    border: 10px solid;
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;

}

.about .about-img .about-experience {
    position: absolute;
    top: 125px;
    left: -125px;
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}

/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}

/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(143, 227, 238, 0.9)), url(../img/carousel-2.jpg);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;


}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/*** Team End ***/

/* Academy Start  */
/* Base Styles */
.cursor-pointer {
    cursor: pointer;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.transition-all {
    transition-property: all;
}

.duration-500 {
    transition-duration: 0.5s;
}

/* Hover Styles */
.hover\:translate-y-2:hover {
    transform: translateY(2px);
}

.hover\:before\:top-0:hover::before {
    top: 0;
}

.hover\:before\:duration-500:hover::before {
    transition-duration: 0.5s;
}

.hover\:before\:-top-1:hover::before {
    top: -1px;
}

/* Container Styles */
.w-100 {
    width: 18rem;
}

.h-100 {
    height: 6rem;
}

.bg-neutral-50 {
    background-color: #f4f5f7;
    /* Example color, replace with your own */
}

.rounded-lg {
    border-radius: 0.375rem;
    /* 6px */
}

.shadow-xl {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    /* Example shadow, adjust as needed */
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.justify-evenly {
    justify-content: space-evenly;
}

.gap-2 {
    gap: 2rem;
    /* Example gap, adjust as needed */
}

.gap-6 {
    gap: 3rem;
}

.p-2 {
    padding: 0.5rem;
    /* Example padding, adjust as needed */
}

/* Before Pseudo-Element Styles */
.before\:absolute::before {
    content: '';
    position: absolute;
}

.before\:w-full::before {
    width: 100%;
}

.hover\:before\:top-0::before {
    top: 0;
}

.before\:duration-500::before {
    transition-duration: 0.5s;
}

.before\:-top-1::before {
    top: -1px;
}

.before\:h-1::before {
    height: 1px;
}

.before\:bg-purple-200::before {
    background-color: #8b5cf6;
    /* Example color, replace with your own */
}

/* SVG Styles */
.stroke-purple-200 {
    stroke: #8b5cf6;
    /* Example color, replace with your own */
}

.shrink-0 {
    flex-shrink: 0;
}

/* card Content Styles */
.font-bold {
    font-weight: bold;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 6;
}




.container-fluid#blur.active {
    filter: blur(4px) brightness(.7);
    pointer-events: none;
    user-select: none;
}


/* popup form start  */

#popup {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(9, 9, 23, 0.1) 0px 45px 25px;
    
    opacity: 0;
      z-index: 1;
      transition: 0.5s;
}

#popup.active {
    visibility: visible;
    opacity: 1;
    z-index: 999;


}


.form-container {
    width: 100%;
    border: 2px solid transparent;
    padding: 32px 24px;
    font-size: 14px;
    font-family: inherit;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    border-radius: 16px;
    background-size: 200% 100%;
    animation: gradient 5s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.form-container button:active {
    scale: 0.95;
}

.form-container .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-container .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #717171;
    font-weight: 600;
    font-size: 22px;
}

.form-container .form-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    color: #161414;
    font-family: inherit;
    background-color: transparent;
    border: 1px solid #414141;
}
.form-control{
    color: #000000;
}
.form-container .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    resize: none;
    color: #0c0b0b;
    height: 96px;
    border: 1px solid #414141;
    background-color: transparent;
    font-family: inherit;
}

.form-container .form-group input::placeholder {
    opacity: 0.5;
}

.form-container .form-group input:focus {
    outline: none;
    border-color: #111011;
}

.form-container .form-group textarea:focus {
    outline: none;
    border-color: #0b0b0b;
}

.form-container .form-submit-btn {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-self: flex-start;
    font-family: inherit;
    color: #717171;
    font-weight: 600;
    width: 100%;
    background: #8fbae8;
    border: 1px solid #414141;
    padding: 12px 16px;
    font-size: inherit;
    gap: 8px;
    margin-top: 8px;
    cursor: pointer;
    border-radius: 6px;
}

.form-container .form-submit-btn:hover {
    background-color: #fff;
    border-color: #8fbae8;
}

.close-btn {
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    
}


/* gender */


.form :where(.gender-option, .gender) {
    display: flex;
    align-items: center;
    column-gap: 40px;
    flex-wrap: wrap;
}



.gender input {
    accent-color: #8fbae8;
}

.form :where(.gender input, .gender label) {
    cursor: pointer;
}


.form :where(select, .select-box) {
   
    appearance: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.87);
  

    }

   

    /* Acadeny End  */










    /*** testimonial Start ***/
    .testimonial {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(28, 157, 180, 0.5)), url(../img/carousel-1.jpg);

        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

    .testimonial .testimonial-item .testimonial-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 15px;
        background: transparent;
    }

    .testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 5px solid var(--bs-white);
    }

    .testimonial .testimonial-carousel.owl-carousel {
        position: relative;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        position: absolute;
        top: 50%;
        left: -20px;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        background: var(--bs-light);
        color: var(--bs-primary);
        transition: 0.5s;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        background: var(--bs-light);
        color: var(--bs-primary);
        transition: 0.5s;
    }


    .testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
    .testimonial .testimonial-carousel .owl-nav .owl-next:hover {
        box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
        color: var(--bs-white) !important;
    }


    @media (max-width: 900px) {
        .testimonial .testimonial-carousel .owl-nav .owl-prev {
            margin-top: -190px;
            margin-left: 40px;
        }

        .testimonial .testimonial-carousel .owl-nav .owl-next {
            margin-top: -190px;
            margin-right: 40px;
        }

    }

    .testimonial-carousel .owl-dots {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .testimonial-carousel .owl-dots .owl-dot {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        margin-right: 15px;
        border: 1px solid var(--bs-white);
        background: transparent;
        transition: 0.5s;
    }

    .testimonial-carousel .owl-dots .owl-dot.active {
        width: 20px;
        height: 20px;
        background: var(--bs-secondary) !important;
    }

    .testimonial-carousel .owl-dots .owl-dot span {
        position: relative;
        margin-top: 50%;
        margin-left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-carousel .owl-dots .owl-dot span::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 1px;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: var(--bs-white);
    }

    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        transition: 0.5s;
    }

    @media (min-width: 900px) {
        .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
            font-size: 20px;
        }
    }


    /* Testimonial Section Title Start */
    .testimonial .section-title {
        max-width: 900px;
        text-align: center;
        margin: 0 auto;
    }

    .testimonial .section-title .sub-style {
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        color: var(--bs-primary);
    }

    .testimonial .section-title .sub-style::before {
        content: "";
        width: 100px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        margin-top: 8px;
        margin-left: -100px;
        border: 1px solid var(--bs-white) !important;
    }

    .testimonial .section-title .sub-style::after {
        content: "";
        width: 50px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        margin-bottom: 5px;
        margin-left: -50px;
        border: 1px solid var(--bs-white) !important;
    }

    .testimonial .section-title .sub-title {
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        color: var(--bs-primary);
    }

    .testimonial .section-title .sub-title::before {
        content: "";
        width: 100px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-top: 8px;
        margin-right: -100px;
        border: 1px solid var(--bs-white) !important;
    }

    .testimonial .section-title .sub-title::after {
        content: "";
        width: 50px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-bottom: 8px;
        margin-right: -50px;
        border: 1px solid var(--bs-white) !important;
    }

    /*** Testimonial End ***/


    /*** Blog Start ***/
    .blog .blog-item .blog-img {
        position: relative;
        overflow: hidden;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }

    .blog .blog-item .blog-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        transition: 0.5s;
    }

    .blog .blog-item .blog-img img {
        transition: 0.5s;
    }

    .blog .blog-item .blog-img:hover img {
        transform: scale(1.3);
    }

    .blog .blog-item:hover .blog-img::after {
        background: rgba(21, 185, 217, .5);
    }

    .blog .blog-item .blog-centent {
        background: var(--bs-light);
        border: 1px solid var(--bs-primary);
        border-top: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    /*** Blog End ***/


    /*** Contact Start ***/
    .contact {
        background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(240, 242, 242, 0.9)), url(../img/carousel-2.jpg);

        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }


    .contact .contact-form .btn.btn-light {
        box-shadow: inset 0 0 0 0 var(--bs-primary);
    }

    .contact .contact-form .btn.btn-light:hover {
        box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
        color: var(--bs-dark) !important;
    }

    .contact .contact-form .form-floating input,
    .contact .contact-form .form-floating textarea,
    .contact .contact-form .form-floating label {
        color: var(--dark);
    }



    /* Testimonial Section Title Start */
    .contact .section-title {
        max-width: 900px;
        text-align: center;
        margin: 0 auto;
    }

    .contact .section-title .sub-style {
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        color: var(--bs-primary);
    }

    .contact .section-title .sub-style::before {
        content: "";
        width: 100px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        margin-top: 8px;
        margin-left: -100px;
        border: 1px solid var(--bs-primary) !important;
    }

    .contact .section-title .sub-style::after {
        content: "";
        width: 50px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        margin-bottom: 5px;
        margin-left: -50px;
        border: 1px solid var(--bs-primary) !important;
    }

    .contact .section-title .sub-title {
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        color: var(--bs-primary);
    }

    .contact .section-title .sub-title::before {
        content: "";
        width: 100px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-top: 8px;
        margin-right: -100px;
        border: 1px solid var(--bs-primary) !important;
    }

    .contact .section-title .sub-title::after {
        content: "";
        width: 50px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-bottom: 8px;
        margin-right: -50px;
        border: 1px solid var(--bs-primary) !important;
    }

    /*** Contact End ***/


    /*** Footer Start ***/
    .footer {
        background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/carousel-2.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .footer .footer-item a {
        line-height: 35px;
        color: var(--bs-body);
        transition: 0.5s;
    }

    .footer .footer-item p {
        line-height: 35px;
    }

    .footer .footer-item a:hover {
        letter-spacing: 2px;
        color: var(--bs-primary);
    }

    /*** Footer End ***/

    /*** copyright Start ***/
    .copyright {
        background: var(--bs-dark) !important;
    }

    /*** copyright end ***/





/*** Gallery Start ***/
.img-gallery img:hover{
    border-radius:20px ;
    box-shadow: 0 32px 75px rgba(68,77,136,0.2) ;
    
}

.full-img{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0%;
    left: 0%;
 
   z-index: 9999;

}
.full-img img{

}




/*** Gallery End ***/



/* Service card */


.cardx {
    width: 50%;
    
    padding: 20px;
    color: white;
    background: linear-gradient(#f6f1f1, #faf9f9) padding-box,
                linear-gradient(145deg, transparent 35%,#e81cff, #40c9ff) border-box;
    border: 2px solid transparent;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transform-origin: right bottom;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }



  /* Avilable time  */


 
 body * {
    box-sizing: border-box;
 }
 
 .headertime {
    background-color: #367e85;
    color: white;
    font-size: 1.5em;
    padding: 1rem;
    text-align: center;
    text-transform: uppercase;
 }
 
 .timeimg{
    border-radius: 50%;
    height: 60px;
    width: 60px;
 }
 
 .table-users {
    border: 1px solid #367e85;
    border-radius: 10px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    max-width: calc(100% - 2em);
    margin: 1em auto;
    overflow: hidden;
    width: 100%;
 }
 
 table {
    width: 100%;
 }
 
 td,
 th {
    color: #2f7f84;
    padding: 10px;
    text-align: center;
 }
 
 td {
    text-align: center;
    vertical-align: middle;
 }
 
 td:last-child {
    font-size: 0.95em;
    line-height: 1.4;
    text-align: center;
 }
 
 th {
    background-color: #8dd6dc;
    font-weight: 300;
 }
 
 tr:nth-child(2n) {
    background-color: white;
 }
 
 tr:nth-child(2n+1) {
    background-color: #a8dfe4;
 }
 
 @media screen and (max-width: 700px) {
    table,
    tr,
    td {
       display: block;
    }
 
    td:first-child {
       position: absolute;
       top: 50%;
       transform: translateY(-50%);
       width: 100px;
    }
 
    td:not(:first-child) {
       clear: both;
       margin-left: 100px;
       padding: 4px 20px 4px 90px;
       position: relative;
       text-align: left;
    }
 
    td:not(:first-child):before {
       color: #63c6cd;
       content: '';
       display: block;
       left: 0;
       position: absolute;
    }
 
    td:nth-child(2):before {
       content: 'Name:';
    }
 
    td:nth-child(3):before {
       content: 'Email:';
    }
 
    td:nth-child(4):before {
       content: 'Phone:';
    }
 
    td:nth-child(5):before {
       content: 'Comments:';
    }
 
    tr {
       padding: 10px 0;
       position: relative;
    }
 
    tr:first-child {
       display: none;
    }
 }
 
 @media screen and (max-width: 500px) {
    .headertime {
       background-color: transparent;
       color: #8dd6dc;
       font-size: 2em;
       font-weight: 700;
       padding: 0;
       text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    }
 
    .timeimg {
       border: 3px solid;
       border-color: #a8dfe4;
       height: 100px;
       margin: 0.5rem 0;
       width: 100px;
    }
 
    td:first-child {
       background-color: #94cfd4;
       border-bottom: 1px solid #63c6cd;
       border-radius: 10px 10px 0 0;
       position: relative;
       top: 0;
       transform: translateY(0);
       width: 100%;
    }
 
    td:not(:first-child) {
       margin: 0;
       padding: 5px 1em;
       width: 100%;
    }
 
    td:not(:first-child):before {
       font-size: 0.8em;
       padding-top: 0.3em;
       position: relative;
    }
 
    td:last-child {
       padding-bottom: 1rem !important;
    }
 
    tr {
       background-color: white !important;
       border: 1px solid #a8dfe4;
       border-radius: 10px;
       box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
       margin: 0.5rem 0;
       padding: 0;
    }
 
    .table-users {
       border: none;
       box-shadow: none;
       overflow: visible;
    }
 }



 /* Avilabletime button  */

 .btnac {
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #40B3A2;
    min-width: 200px;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    padding: 16px 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
  }
  
  .btnac:hover {
    opacity: .95;
    color: #111011;
  }
  
  .btnac .animation {
    border-radius: 100%;
    animation: ripple 0.6s linear infinite;
  }
  
  @keyframes ripple {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
    }
  
    100% {
      box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
    }
  }
 