.back-to-top {

    position: fixed;

    right: 30px;

    bottom: 30px;

    transition: 0.5s;

    z-index: 99;

}



/*** 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-xl-square {

    width: 66px;

    height: 66px;

}



.btn-square,

.btn-sm-square,

.btn-md-square,

.btn-lg-square,

.btn-xl-square {

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: normal;

}



.btn.btn-primary {

    color: var(--bs-white);

}



.btn.btn-primary:hover {

    background: var(--bs-secondary);

    border: 1px solid var(--bs-secondary);

}



.btn.btn-secondary {

    color: var(--bs-white);

}



.btn.btn-secondary:hover {

    background: var(--bs-primary);

    border: 1px solid var(--bs-primary);

}



.btn.btn-light {

    color: var(--bs-primary);

}



.btn.btn-light:hover {

    color: var(--bs-white);

    background: var(--bs-primary);

    border: 1px solid var(--bs-primary);

}



/*** Icon Animation Start ***/

@keyframes icon-animat {

    0% {

        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;

    }



    25% {

        border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;

    }



    50% {

        border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;

    }



    75% {

        border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;

    }



    100% {

        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;

    }

}



/*** Icon Animation End ***/





/*** Navbar Start ***/

.nav-bar {

    background: var(--bs-white);

}



.sticky-top {

    transition: 1s;

}



.navbar-light .navbar-nav .nav-link {

    position: relative;

    margin-right: 25px;

    padding: 35px 0;

    letter-spacing: 1px;

    color: var(--bs-dark);

    font-size: 17px;

    font-weight: 500;

    outline: none;

    transition: .5s;

}



.sticky-top .navbar-light .navbar-nav .nav-link {

    padding: 0;

    color: var(--bs-dark);

}



/* .navbar-light .navbar-nav .nav-link:hover { */

.underline-hover {

    display: inline-block;

    position: relative;

    cursor: pointer;

    color: #2c2c2c;

}



.underline-hover::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -4px;

    width: 0;

    height: 2px;

    background-color: #d77a10;

    /* underline color */

    transition: width 0.3s ease-in-out;

}



.underline-hover:hover::after {

    width: 100%;

}





/* } */



.navbar-light .navbar-nav .nav-link.active {

    color: #000;

    font-weight: 600;

}



.navbar-light .navbar-brand img {

    max-height: 60px;

    transition: .5s;

}



.sticky-top .navbar-light .navbar-brand img {

    max-height: 84px;

}



.navbar .dropdown-toggle::after {

    border: none;

    content: "\f107";

    font-family: "Font Awesome 5 Free";

    font-weight: 600;

    vertical-align: middle;

    /* margin-left: 8px; */

}



.dropdown .dropdown-menu a:hover {

    background: #398380c7;

    color: #000;

}



.navbar .nav-item:hover .dropdown-menu {

    transform: rotateX(0deg);

    visibility: visible;

    margin-top: 8px !important;

    background: linear-gradient(to left, #278BB1, #69B360);

    color: #fff !important;

    transition: .5s;

    opacity: 1;

}







@media (min-width: 992px) {

    .navbar .nav-item .dropdown-menu {

        display: block;

        visibility: hidden;

        top: 100%;

        left: -145px;

        transform: rotateX(-75deg);

        transform-origin: 0% 0%;

        border: 0;

        border-radius: 10px;

        /* margin-top: 8px !important; */

        transition: .5s;

        opacity: 0;

    }

}



@media (max-width: 991px) {

    .navbar.navbar-expand-lg .navbar-toggler {

        padding: 8px 15px;

        border: 1px solid var(--bs-primary);

        color: var(--bs-primary);

    }



    .sticky-top .navbar-light .navbar-nav .nav-link {

        padding: 12px 0;

    }

}



/*** Navbar End ***/



/*** Carousel Header Start ***/

.carousel .carousel-item img {

    object-fit: cover;

}



.carousel .carousel-item,

.carousel .carousel-item img {

    height: 700px;

}



.carousel-item .carousel-caption {

    position: absolute;

    width: 100%;

    height: 100%;

    left: 0;

    bottom: 0;

    background: rgba(0, 0, 0, .6);

    display: flex;

    align-items: center;

}



.carousel .carousel-indicators {

    left: 75%;

    top: 50%;

    margin-right: 25%;

    transform: translateY(-50%);

    flex-direction: column;

}



.carousel-indicators [data-bs-target] {

    display: flex;

    width: 15px;

    height: 15px;

    border: 6px solid var(--bs-white);

    border-radius: 15px;

    padding: 0;

    margin-top: 10px;

    margin-bottom: 10px;

    background-color: var(--bs-secondary);

    opacity: 1;

    transition: 0.5s;

}



.carousel-indicators [data-bs-target].active {

    background-color: var(--bs-primary);

}



@media (max-width: 992px) {

    .carousel-indicators [data-bs-target] {

        display: none;

    }

}



/*** Carousel Header End ***/



/*** Single Page Hero Header Start ***/

/* .bg-breadcrumb {

    position: relative;

    overflow: hidden;

    background-image: linear-gradient(#6157354f, #b0b88556), url('baner2.jpg');

    background-position: center top;

    background-repeat: no-repeat;

    background-size: cover;

    padding: 60px 0 60px 0;

    transition: 0.5s;

}



.bg-breadcrumb .breadcrumb {

    position: relative;

}



.bg-breadcrumb .breadcrumb .breadcrumb-item a {

    color: var(--bs-white);

} */

.bg-breadcrumb {

    position: relative;

    overflow: hidden;

    background-image: linear-gradient(#6157354d, #b0b8854d), url('../key-images/breadcrumb.webp');

    background-position: center top;

    background-repeat: no-repeat;

    background-size: cover;

    padding: 60px 0;

    transition: 0.5s;

}



.bg-breadcrumb .breadcrumb {

    position: relative;

    background-color: transparent;

    /* Optional: no white bg */

}



.bg-breadcrumb .breadcrumb .breadcrumb-item a {

    color: #000000;

    text-decoration: none;

}



.bg-breadcrumb .breadcrumb .breadcrumb-item+.breadcrumb-item::before {

    color: #fff;

    content: var(--bs-breadcrumb-divider, "/");

}



/*** Single Page Hero Header End ***/



/*** Features Start ***/

.feature {

    background: var(--bs-light);

}



.feature .feature-item {

    display: flex;

    border-radius: 10px;

}



.feature .feature-item .feature-icon span {

    width: 90px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--bs-secondary);

    background: var(--bs-primary);

    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;

    ;

    animation-name: icon-animat;

    animation-duration: 5s;

    animation-delay: 1s;

    animation-direction: alternate;

    animation-iteration-count: infinite;

    transition: 0.5s;

}



/*** Features End ***/



/*** About Start ***/

.about .about-item .about-item-inner {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 10px;

    background: var(--bs-light);

    transition: 0.5s;

}



.about .about-item .about-item-inner .about-icon {

    width: 90px;

    height: 90px;

    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--bs-secondary);

    background: var(--bs-primary);

    animation-name: icon-animat;

    animation-duration: 5s;

    animation-delay: 1s;

    animation-direction: alternate;

    animation-iteration-count: infinite;

    transition: 0.5s;

}



.about .about-img {

    position: relative;

    overflow: hidden;

    width: 100%;

    height: 100%;



}



.about .about-img .img-1 {

    height: 85%;

    margin-right: 50px;

}



.about .about-img .img-2 {

    position: absolute;

    width: 100%;

    bottom: 0;

    right: 0;

    padding-left: 50px;

    border-radius: 10px;

}



.about .about-img::after {

    content: "";

    position: absolute;

    width: 10px;

    height: 98%;

    top: 0;

    right: 0;

    border-radius: 10px;

    background: var(--bs-primary);

    z-index: -1;

}



.about .about-item .text-item {

    position: relative;

    padding-left: 25px;

}



.about .about-item .text-item::after {

    content: "";

    position: absolute;

    width: 5px;

    height: 100%;

    top: 0;

    left: 0;

    border-radius: 10px;

    background: var(--bs-secondary);

}



/*** About End ***/





/*** Fact Counter Start ***/

.counter {

    /* background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../img/fact-bg.jpg); */

    background-position: center center;

    background-repeat: no-repeat;

    background-size: cover;

}



.counter .counter-item .counter-item-icon {

    width: 90px;

    height: 90px;

    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--bs-secondary);

    background: var(--bs-primary);

    animation-name: icon-animat;

    animation-duration: 5s;

    animation-delay: 1s;

    animation-direction: alternate;

    animation-iteration-count: infinite;

    transition: 0.5s;

}



/*** Fact Counter End ***/



/*** Services Start ***/

.service .service-item {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    box-shadow: 0 0 45px rgba(0, 0, 0, .1);

    border-radius: 10px;

    background: var(--bs-white);

    transition: 0.5s;

}



.service .service-item:hover {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 60px;

    background: var(--bs-light);

}



.service .service-item::after {

    content: "";

    position: absolute;

    width: 100%;

    height: 100%;

    bottom: 0;

    left: 0;

    background: var(--bs-primary);

    border-radius: 10px;

    z-index: -1;

    transition: 0.5s;

    opacity: 0;

}



.service .service-item:hover::after {

    opacity: 1;

}



.service .service-item .service-icon {

    width: 90px;

    height: 90px;

    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--bs-secondary);

    background: var(--bs-primary);

    animation-name: icon-animat;

    animation-duration: 5s;

    animation-delay: 1s;

    animation-direction: alternate;

    animation-iteration-count: infinite;

    transition: 0.5s;

}



/*** Service End ***/



/*** Cars Categories Start ***/

.categories .categories-item {

    position: relative;

    border: 1px solid var(--bs-secondary);

    border-radius: 10px;

    transition: 0.5s;

}



.categories .categories-item:hover {

    border: 1px solid var(--bs-primary);

}



.categories .categories-item .categories-item-inner {

    position: relative;

    overflow: hidden;

    border-radius: 10px;

    transition: 0.5s;

}



.categories .categories-item .categories-item-inner:hover {

    box-shadow: 0 0 50px rgba(234, 0, 30, .3);

}



.categories .categories-item-inner .categories-img {

    background: var(--bs-light);

}



.categories .categories-item-inner .categories-content {

    border-top: 4px solid var(--bs-white);

    text-align: center;

    background: var(--bs-light);

}



.categories .categories-item-inner .categories-review {

    display: flex;

    align-items: center;

    justify-content: center;

}



.categories-carousel .owl-stage-outer {

    margin-top: 65px;

    margin-right: -1px;

}



.categories-carousel .owl-nav .owl-prev,

.categories-carousel .owl-nav .owl-next {

    position: absolute;

    top: -65px;

    padding: 10px 35px;

    color: var(--bs-white);

    background: var(--bs-primary);

    border-radius: 50px;

    transition: 0.5s;

}



.categories-carousel .owl-nav .owl-prev {

    left: 0 !important;

}



.categories-carousel .owl-nav .owl-next {

    right: 0;

}



.categories-carousel .owl-nav .owl-prev:hover,

.categories-carousel .owl-nav .owl-next:hover {

    background: var(--bs-secondary);

    color: var(--bs-white);

}



/*** Cars Categories End ***/





/*** Process Start ***/

.steps {

    /* background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/bg-1.jpg); */

    background-position: center center;

    background-repeat: no-repeat;

    background-size: cover;

}





.steps .steps-item {

    position: relative;

    background: var(--bs-secondary);

    border-radius: 10px;

}



.steps .steps-item h4,

.steps .steps-item p {

    color: var(--bs-white);

}



.steps .steps-item .setps-number {

    position: absolute;

    width: 64px;

    height: 64px;

    bottom: 0;

    right: 40px;

    font-weight: 900;

    border: 1px solid var(--bs-white);

    border-radius: 64px;

    transform: translateY(50%);

    color: var(--bs-white);

    background: var(--bs-secondary);

    display: flex;

    align-items: center;

    justify-content: center;

}



/*** Process End ***/





/*** Blog Start ***/

.blog .blog-item {

    border-radius: 10px;

    transition: 0.5s;

}



.blog .blog-item:hover {

    box-shadow: 0 0 45px rgba(0, 0, 0, .2);

}



.blog .blog-item .blog-img {

    position: relative;

    overflow: hidden;

    border-top-left-radius: 10px;

    border-top-right-radius: 10px;

}



.blog .blog-item .blog-img::after {

    content: "";

    position: absolute;

    width: 100%;

    height: 0;

    bottom: 0;

    left: 0;

    background: rgba(255, 255, 255, 0.3);

    transition: 0.5s;

}



.blog .blog-item:hover .blog-img::after {

    height: 100%;

}



.blog .blog-item .blog-img img {

    transition: 0.5s;

}



.blog .blog-item:hover .blog-img img {

    transform: scale(1.2);

}



.blog .blog-item .blog-content {

    position: relative;

    background: var(--bs-light);

}



.blog .blog-item .blog-content .blog-date {

    position: absolute;

    top: 0;

    left: 25px;

    transform: translateY(-50%);

    padding: 12px 25px;

    border-radius: 10px;

    color: var(--bs-white);

    background: var(--bs-primary);

}



.blog .blog-item .blog-content .blog-comment {

    display: flex;

    justify-content: space-between;

}



/*** Blog End ***/





/*** Banner Start ***/

.banner .banner-item {

    position: relative;

    width: 100%;

    height: 100%;

    border-radius: 10px;

    transition: 0.5s;

    z-index: 1;

}



.banner .banner-item::after {

    content: "";

    position: absolute;

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;

    border-radius: 10px;

    background: rgba(0, 0, 0, .6);

    z-index: 2;

}



.banner .banner-item .banner-content {

    position: absolute;

    width: 100%;

    height: 100%;

    top: 0;

    right: 0;

    margin-left: 0;

    margin-bottom: 0;

    padding: 25px;

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: end;

    z-index: 5;

}



@media (min-width: 992px) {

    .banner .banner-item .banner-content h2 {

        font-size: 45px;

        margin-bottom: 20px;

    }



    .banner .banner-item .banner-content h1 {

        font-size: 72px;

        margin-bottom: 20px;

    }



    .banner .banner-item .banner-content p {

        font-size: 40px;

        margin-bottom: 20px;

    }

}



/*** Banner End ***/



/*** Team Start ***/

.team .team-item {

    position: relative;

    text-align: center;

    border-radius: 10px;

    margin-top: 100px;

    background: var(--bs-light);

    transition: 0.5s;

    z-index: 1;

}



.team .team-item::after {

    content: "";

    position: absolute;

    width: 100%;

    height: 0;

    bottom: 0;

    left: 0;

    border-radius: 10px;

    background: var(--bs-secondary);

    z-index: 2;

    transition: 0.5s;

}



.team .team-item:hover::after {

    height: 100%;

}



.team .team-item .team-content {

    position: relative;

    z-index: 5;

}



.team .team-item .team-content h4,

.team .team-item .team-content p {

    transition: 0.5s;

}



.team .team-item:hover .team-content h4 {

    color: var(--bs-white);

}



.team .team-item:hover .team-content p {

    color: var(--bs-white);

}



.team .team-item .team-img {

    position: relative;

    overflow: hidden;

    top: -100px;

    margin-bottom: -100px;

    border-radius: 10px;

    z-index: 3;

}



.team .team-item .team-img img {

    transition: 0.5s;

}



.team .team-item:hover .team-img img {

    transform: scale(1.1);

}



.team .team-item .team-img::after {

    content: "";

    position: absolute;

    width: 100%;

    height: 0;

    top: 0;

    left: 0;

    border-radius: 10px;

    background: rgba(255, 255, 255, .3);

    z-index: 4;

    transition: 0.5s;

}



.team .team-item:hover .team-img::after {

    height: 100%;

}



/*** Team End ***/



/*** Testimonial Start ***/

.testimonial-carousel .owl-stage-outer {

    margin-right: -1px;

}



.testimonial .testimonial-item {

    position: relative;

    margin-top: 35px;

    border: 1px solid var(--bs-secondary);

    border-radius: 10px;

}



.testimonial .testimonial-item .testimonial-quote {

    position: absolute;

    width: 70px;

    height: 70px;

    top: 0;

    right: 25px;

    transform: translateY(-50%);

    border-radius: 70px;

    color: var(--bs-white);

    background: var(--bs-secondary);

    display: flex;

    align-items: center;

    justify-content: center;

}



.testimonial .testimonial-item .testimonial-inner {

    display: flex;

    align-items: center;

    background: var(--bs-light);

    border-top-left-radius: 10px;

    border-top-right-radius: 10px;

}



.testimonial .testimonial-item .testimonial-inner img {

    width: 100px;

    height: 100px;

    border-radius: 100px;

    border: 4px solid var(--bs-white);

}



.testimonial-carousel .owl-dots {

    display: flex;

    justify-content: center;

}



.testimonial-carousel .owl-dots .owl-dot {

    width: 30px;

    height: 30px;

    border-radius: 30px;

    margin: 20px 10px 0 10px;

    background: var(--bs-primary);

    transition: 0.5s;

}



.testimonial-carousel .owl-dots .owl-dot.active {

    width: 30px;

    height: 30px;

    border-radius: 30px;

    background: var(--bs-secondary);

    transition: 0.5s;

}



.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;

    text-align: center;

}



.testimonial-carousel .owl-dots .owl-dot.active span::after {

    background: var(--bs-primary);

}



.testimonial-carousel .owl-dots .owl-dot span::after {

    content: "";

    width: 15px;

    height: 15px;

    border-radius: 15px;

    position: absolute;

    top: 50%;

    left: 0;

    transform: translateY(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: var(--bs-white);

    transition: 0.5s;

}



/*** Testimonial End ***/



/*** Contact Start ***/

.contact .contact-add-item {

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: var(--bs-light);

}



.contact .contact-add-item .contact-icon {

    width: 90px;

    height: 90px;

    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--bs-secondary);

    background: var(--bs-primary);

    animation-name: icon-animat;

    animation-duration: 5s;

    animation-delay: 1s;

    animation-direction: alternate;

    animation-iteration-count: infinite;

    transition: 0.5s;

}



/*** Contact End ***/





/*** Footer Start ***/

.footer {

    /* background: #f8f4ec; */

    background: linear-gradient(to left, #1a6b95, #2683B2);

    color: white;

}



.footer .footer-item a {

    line-height: 35px;

    color: #e5e7eb;

    transition: 0.5s;

}



.footer .footer-item p {

    color: #e5e7eb;

    font-size: 16px;

}



.footer .footer-item a:hover {

    letter-spacing: 1px;

    color: var(--bs-primary);

}



.footer .footer-item .footer-btn a,

.footer .footer-item .footer-btn a i {

    transition: 0.5s;

}



.footer .footer-item .footer-btn a:hover {

    background: var(--bs-white);

}



.footer .footer-item .footer-btn a:hover i {

    color: var(--bs-primary) !important;

}



/*** Footer End ***/



/*** copyright Start ***/

.copyright {

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: #15567a;

}



/*** copyright end ***/







/* new-css */

.read-btn {

    /* border: 2px solid black; */

    background: transparent;

    padding: 6px 16px;

    color: white;

    font-size: 16px;

    font-weight: 500;

    /* background-color: #3e9a9b; */

    background: linear-gradient(to right, #278BB1, #69B360);



}



.read-btn a {

    text-decoration: none !important;

}



.read-btn:hover {

    background-color: black;

    color: white;

}



.appointment-btn {

    border: transparent;

    padding: 6px 16px;

    color: white;

    font-size: 18px;

    font-weight: 500;

    background: linear-gradient(to right, #278BB1, #69B360);

    border-radius: 0.5rem;

}



.appointment-btn a {

    text-decoration: none !important;

}



.appointment-btn svg {

    margin-bottom: 0.25rem;

}



.appointment-btn:hover {

    transition: all 0.3s ease;

    background-color: black;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

    color: white;

    transform: scale(1.05);

}



.appointment-btn:active {

    background-color: #0056b3;

}



/* new-css */



/* key-css */

.key-page-one-one .f-sz-key {

    font-size: 1.8rem;

    font-weight: 600;

    color: #333;

}



.key-page-one-one .key-1-key {

    font-size: 2rem;

    color: #1c1c1c;

    margin: 20px 0;

}



.key-page-one-one .text-justify {

    text-align: justify;

    color: #555;

    margin-bottom: 1rem;

}



.key-page-one-one .person-img-key {

    margin-bottom: 20px;

}



.key-page-one-one .pers-img-key,

.key-page-one-one .person-img-key img {

    width: 100%;

    border-radius: 10px;

    object-fit: cover;

    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);

    max-height: 400px;

}



.key-page-one-one .section-set-key {

    background: #f9f9f9;

    padding: 20px;

    border-left: 4px solid #469e8a;

    border-radius: 8px;

    margin-bottom: 20px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);

}



.key-page-one-one .li-design-key ul,

.key-page-one-one .key-side-key {

    list-style: none;

    padding-left: 0;

    margin: 0;

}



.key-page-one-one .key-side-key li {

    margin-bottom: 10px;

    padding: 8px 8px;

    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    border-radius: 8px;

    background: linear-gradient(to right, #278BB1, #69B360) !important;



}



.key-page-one-one .key-side-key li a {

    color: #ffffff;

    text-decoration: none;

    font-weight: 500;

    transition: all 0.3s ease;

}



.key-page-one-one .key-side-key li a:hover {

    color: #616161;

    text-decoration: underline;

}



.key-page-one-one .key1-key.active a {

    color: #469e8a;

    font-weight: 600;

}



.key-page-one-one .unset-key {

    list-style: none;

    padding-left: 0;

}



.key-page-one-one .unset-key li {

    display: flex;

    align-items: center;

    margin-bottom: 10px;

    color: #222;

}



.key-page-one-one .unset-key li i {

    color: #469e8a;

    margin-right: 10px;

}



.key-page-one-one .unset-key li a {

    color: #333;

    text-decoration: none;

}



.key-page-one-one .unset-key li a:hover {

    color: #469e8a;

    text-decoration: underline;

}



.key-page-one-one .fb-page {

    margin-top: 15px;

}



.key-page-one-two .hover-card {

    transition: transform 0.3s, box-shadow 0.3s;

    cursor: pointer;

}









/* key-css */

/* onnn */

.faq .ptb-20 {

    padding-top: 10px;

    padding-bottom: 30px;

}





.faq .brochures-prgs {

    cursor: pointer;

    border-top: 4px solid #469e8a;

    ;

    border-left: 3px solid #469e8a;

    ;

    padding: 11px;

    color: #373333;

    border-radius: 9px;

    background: #d3d3d336;

    font-size: 16px;

    margin-bottom: 15px;

    position: relative;

}



.faq .disp {

    display: none;

    padding: 20px;

}





.faq .rotate {

    transform: rotate(180deg);

}



.faq .brochures-prgs .fa {

    font-size: 18px;

    right: 0;

    position: absolute;

    padding: 10px;

    border-radius: 6px;

    margin-top: -7px;

    margin-right: 6px;

    background: #469e8a;

    color: #fff;

}



/* -funnels-Css--- */

/*mobile footer css starts*/



.navbar-footer a {

    float: left;

    display: none;

    width: 25%;

    color: #fff;

    text-align: center;

    padding: 25px 22px 38px 20px;

    text-decoration: none;

    font-size: 21px;

    /* margin-right: 22px;

    margin-left: 21px; */

}



.navbar-footer a:hover {

    background: #F1F1F1;

    color: black;

}



.w_app>i {

    color: #fff;

}



.w_app {

    background-color: #28A745;

}



.e_mail>i {

    color: #fff;

}



.e_mail {

    background-color: #DC3545;

}



.ems_call>i {

    color: #fff;

}



.ems_call {

    background-color: #007BFF;

}



.ems_enquiry>i {

    color: #fff;

}



.ems_enquiry {

    background-color: #FFC107;

}



.upside {

    display: none;

}



.mobile-hidden i {

    color: white;

}



@media screen and (min-width :315px) and (max-width :768px) {

    .upside {

        display: block;

    }



    .funnal-mobile {

        display: none !important;

    }



    .mobile-footer {

        display: block !important;

    }



    .social-mobile li a .fa {

        display: none;

    }



    .navbar-footer {

        overflow: visible;

        z-index: 9999999 !important;

        background-color: #ccc;

        position: fixed;

        bottom: -16px;

        width: 100%;

    }



    .navbar-footer a:hover {

        background: #f1f1f1;

        color: black;

    }



    .main {

        padding: 0px;

        margin-bottom: 54px;

    }



    .navbar-footer {

        display: block !important;

    }



}



.mobile-hidden a {

    font-size: 16px;

}



/* mobile footer css end*/

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





    .mobile-hidden {

        display: none !important;

    }



    .tab {

        margin: 4px 4px !important;

    }



    .brochures-prgs .fa-plus {

        margin-right: 30px !important;

    }

}



/* Funnel css start */

.btn-success {

    color: #fff !important;

    background-color: #5cb85c;

    border-color: #4cae4c;

    padding: 15px 30px;

}



.btn-success:hover {

    color: #fff;

    background-color: #449d44;

    border-color: #398439

}



.btn-danger {

    color: #fff !important;

    background-color: #d9534f;

    border-color: #d43f3a;

    padding: 15px 30px;

}



.btn-danger:hover {

    color: #fff;

    background-color: #c9302c;

    border-color: #ac2925

}



.btn-warning {

    color: #fff !important;

    background-color: #f0ad4e;

    border-color: #eea236;

    padding: 15px 30px;

}



.btn-warning:hover {

    color: #fff;

    background-color: #ec971f;

    border-color: #d58512

}



/* .btn-primary {

      color: #fff!important;

      background-color: #0084bd;

      border-color: #0d668d;

      padding: 15px 30px;

    }

    .btn-primary:hover {

      color: #fff;

      background-color: #0d668d;

      border-color: #204d74

    } */

.pb-20 {

    padding-top: 10px;

    padding-bottom: 30px;

}





/* -funnels-Css-Ends--- */

/* onnn */



.dyn-cod {

    background: #f8f4ec;

}



.dyn-cod .text-center .sub-head {

    color: #000 !important;

}



.i-col {

    color: #9bde7d;

    font-size: 1.25em;

    margin-right: 0.25em;



}



.i-col-dot {

    color: #9bde7d;

    font-size: .5em;

    margin-right: 0.25em;



}



.i-col-con {

    color: #9bde7d;

    font-size: 1em;

    margin-right: 0.25em;



}



.icon-container {

    background-color: transparent;

    /* display: inline-flex; */

}



.location-icon {

    height: 35px;

    width: 21px;

    stroke: #9BDE7D;

    /* Light green stroke */

    fill: none;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;

}



.top-header {

    background: linear-gradient(to left, #278BB1, #69B360);

    font-size: 0.9rem;

    padding: 6px 0;

}



.top-header a {

    color: #fff;

    text-decoration: none;

    margin-right: 1.5rem;

}



.top-header a:hover {

    color: #fff;

    text-decoration: underline;

}



/* new  */



.hover-box-formid {

    transition: all 0.3s ease-in-out;

    cursor: pointer;

    background: linear-gradient(to right, #278BB1, #69B360);

    color: #fff;

    text-align: center;

}



.hover-box-formid:hover {

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    transform: translateY(-5px);

}



.treatment-step-formid {

    background: linear-gradient(to right, #278BB1, #69B360);

    transition: all 0.3s ease;

    cursor: pointer;

    color: #fff;

}



.treatment-step-formid:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

}



.hover-item-formid {

    padding: 12px;

    border-radius: 6px;

    transition: all 0.3s ease;

    background-color: #078a83;

    margin: 8px;

    color: #fff;

}



.hover-item-formid:hover {

    background-color: #f8f9fa;

    color: #000000;

    transform: translateX(5px);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    cursor: pointer;

}



.doctor-card-formid {

    transition: all 0.3s ease;

    border: none;

    border-radius: 10px;

    overflow: hidden;

    background-color: #f8f9fa;

}



.doctor-card-formid:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    background-color: #fff;

}



.doctor-card-formid .card-body h5 {

    font-weight: 600;

}



.doctor-card-formid .speciality {

    color: #0c6b6b;

    font-weight: 500;

}



.service-card-formid {

    border: none;

    border-radius: 10px;

    background-color: #f8f9fa;

    transition: all 0.3s ease;

    padding: 20px;

    height: 100%;

}



.service-card-formid:hover {

    background-color: #fff;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

    transform: translateY(-5px);

}



.service-card-formid h5 {

    color: #027180;

    margin-bottom: 15px;

    font-weight: bold;

}



.service-card-formid ul {

    padding-left: 20px;

    margin-bottom: 0;

}



.service-card-formid li {

    margin-bottom: 8px;

    list-style-type: disc;

}



.service-card-neurosurgery {

    border: none;

    border-radius: 10px;

    background-color: #f8f9fa;

    transition: all 0.3s ease;

    padding: 20px;

    height: 100%;

}



.service-card-neurosurgery:hover {

    background-color: #fff;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

    transform: translateY(-5px);

}



.service-card-neurosurgery h5 {

    color: #027180;

    margin-bottom: 15px;

    font-weight: bold;

}



.service-card-neurosurgery ul {

    padding-left: 20px;

    margin-bottom: 0;

}



.service-card-neurosurgery li {

    margin-bottom: 8px;

    list-style-type: disc;

}



.process-card-neurosurgery {

    border: none;

    border-radius: 10px;

    background-color: #f8f9fa;

    transition: all 0.3s ease;

    padding: 20px;

    height: 100%;

}



.process-card-neurosurgery:hover {

    background-color: #fff;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

    transform: translateY(-5px);

}



.process-card-neurosurgery h5 {

    color: #027180;

    font-weight: bold;

    margin-bottom: 15px;

}



.process-step-neurosurgery {

    background: #ffffff;

    border-radius: 8px;

    padding: 12px 15px;

    margin-bottom: 12px;

    transition: all 0.3s ease;

    border-left: 4px solid #027180;

}



.process-step-neurosurgery:hover {

    background: #e9f2ff;

    transform: translateX(5px);

}



.feature-icon-neuro-surgery {

    font-size: 2rem;

    color: #027180;

    margin-bottom: 15px;

}



.hover-card-neuro-surgery {

    transition: all 0.3s ease;

    background-color: #fff;

}



.hover-card-neuro-surgery:hover {

    background-color: #f8f9fa;

    transform: translateY(-5px);

    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);

}



.hover-card-trauma {

    transition: transform 0.3s, box-shadow 0.3s;

}



.hover-card-trauma:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

}



.icon-box-trauma {

    font-size: 2rem;

    color: #027180;

}



.trauma-card-trauma-last {

    transition: all 0.3s ease-in-out;

    border: 1px solid #eee;

    border-radius: 10px;

    padding: 20px;

    background: #fff;

}



.trauma-card-trauma-last:hover {

    background-color: #f8f9fa;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);

    transform: translateY(-4px);

}



.trauma-icon-trauma-last {

    font-size: 2rem;

    color: #027180;

    margin-bottom: 10px;

}



.pulmo-card {

    transition: all 0.3s ease-in-out;

    border: 1px solid #eee;

    border-radius: 10px;

    padding: 20px;

    background: #fff;

    height: 100%;

}



.pulmo-card:hover {

    background-color: #f8f9fa;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);

    transform: translateY(-4px);

}



.pulmo-icon {

    font-size: 2rem;

    color: #027180;

    margin-bottom: 12px;

}



.cardio-card {

    transition: all 0.3s ease-in-out;

    border: 1px solid #eee;

    border-radius: 10px;

    padding: 20px;

    background: #fff;

    height: 100%;

}



.cardio-card:hover {

    background-color: #f8f9fa;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);

    transform: translateY(-4px);

}



.cardio-icon {

    font-size: 2rem;

    color: #027180;

    margin-bottom: 12px;

}



.hover-effect-last-t-p {

    transition: transform 0.3s, box-shadow 0.3s;

    cursor: pointer;

}



.hover-effect-last-t-p:hover {

    transform: translateY(-10px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}



.stat-card {

    transition: all 0.3s ease-in-out;

}



.stat-card:hover {

    transform: translateY(-8px) scale(1.05);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

}



.text-justify {

    text-align: justify !important;

}



.nav-item.mega-dropdown {

    position: relative;

}



.nav-item.mega-dropdown:hover .mega-menu {

    display: block;

}



/* .mega-menu {

  position: absolute;

  left: 50%;

  top: 100%;

  transform: translateX(-50%);

  background: #fff;

  padding: 25px;

  border-radius: 6px;

  box-shadow: 0 8px 24px rgba(0,0,0,0.15);

  display: none;

  min-width: 900px;

  z-index: 999;

} */

.mega-menu {

    position: absolute;

    top: 100%;

    background: #fff;

    padding: 25px;

    border-radius: 6px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

    display: none;

    min-width: 900px;

    max-width: 95%;

    /* responsive */

    z-index: 9999;

}



.navbar-nav .mega-dropdown:last-child .mega-menu {

    position: absolute;

    top: 100%;

    left: 10%;

    background: #fff;

    padding: 25px;

    border-radius: 6px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

    display: none;

    min-width: 900px;

    max-width: 95%;

    /* responsive */

    z-index: 9999;

}



.mega-menu .row {

    display: flex;

    flex-wrap: wrap;

    gap: 30px;

}



.mega-menu .col {

    flex: 1 1 20%;

    min-width: 180px;

}



.mega-menu h5 {

    font-weight: 500;

    margin-bottom: 10px;

    font-size: 16px;

    display: flex;

    align-items: center;

    gap: 6px;

}



.mega-menu a {

    display: block;

    margin: 6px 0;

    font-size: 14px;

    text-decoration: none;

    color: #464646;

    position: relative;

    transition: all 0.3s ease;

}



.mega-menu a:hover {

    padding-left: 8px;

}



.mega-menu a:hover::before {

    width: 100%;

}



/* Add an underline sliding effect */

.mega-menu a::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: -2px;

    width: 0%;

    height: 2px;

    /* background: #007bff; */

    /* Change color as per your theme */

    transition: width 0.3s ease;

}



/* Custom Blog Page CSS */

.blog-container-blogs-pages {

    margin-top: 40px;

}



.blog-title-blogs-pages {

    font-size: 1.9rem;

    font-weight: 700;

}



.blog-meta-blogs-pages {

    font-size: 0.9rem;

    color: #6c757d;

}



.blog-image-blogs-pages img {

    border-radius: 10px;

    margin-top: 15px;

}



.author-box-blogs-pages,

.related-box-blogs-pages {

    background: #fff;

    border: 1px solid #eaeaea;

    border-radius: 10px;

    padding: 20px;

    margin-bottom: 20px;

}



.author-box-blogs-pages h5 {

    font-size: 1.1rem;

    font-weight: 600;

}



.related-articles-blogs-pages img {

    border-radius: 6px;

    width: 100px;

    height: 70px;

    object-fit: cover;

}



.related-articles-blogs-pages .col-9 h6 {

    margin: 0;

    font-size: 0.95rem;

    font-weight: 600;

}



.related-articles-blogs-pages .col-9 small {

    color: #6c757d;

    font-size: 0.8rem;

}



.comment-card-blogs-pages {

    transition: all 0.3s ease;

}



.comment-card-blogs-pages:hover {

    transform: translateY(-3px);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}



.rounded-blogs-pages {

    border-radius: 12px;

}





.achievements-section-achievements-for-key-pages .gradient-page-heads {

    color: #2d8080;

    font-size: 48px;

    font-weight: 600;

}



.achievement-box-achievements-for-key-pages {

    background: #f8f9fa;

    display: flex;

    flex-direction: column;

}



.achievement-icon-achievements-for-key-pages {

    width: 32px;

    height: auto;

}



.achievement-box-achievements-for-key-pages h5 {

    color: #278BB5;

}



/* Chat bot */

.chat-widget {

    position: fixed;

    bottom: 20px;

    right: 20px;

    width: 320px;

    max-height: 450px;

    display: flex;

    flex-direction: column;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    border-radius: 10px;

    overflow: hidden;

    font-family: Arial, sans-serif;

}



.chat-widget-header {

    background: linear-gradient(to right, #278BB1, #69B360);

    color: white;

    padding: 10px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.chat-widget-body {

    background-color: #f1f1f1;

    flex: 1;

    padding: 10px;

    overflow-y: auto;

}



.chat-widget-footer {

    padding: 10px;

    background-color: white;

    border-top: 1px solid #ddd;

}



.chat-widget-minimized {

    position: fixed;

    bottom: 40px;

    right: 20px;

    width: 54px;

    height: 54px;

    border-radius: 50%;

    background: linear-gradient(to right, #278BB1, #69B360);



    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

}



.message-bubble {

    padding: 8px 12px;

    margin-bottom: 8px;

    border-radius: 15px;

    max-width: 75%;

    word-wrap: break-word;

}



.bubble-user {

    background-color: #1a73e8;

    color: white;

    align-self: flex-end;

}



.bubble-agent {

    background-color: white;

    color: #333;

    border: 1px solid #ddd;

    align-self: flex-start;

}



/* Chat bot */







/* Appointment Start */

.book-appointment-section-for-key {

    background-color: #f8f9fa;

    border-radius: 10px;

    padding: 60px 20px;

}

.book-appointment-section-for-key h2 {

    color: #2d8080;

    font-size: 36px;

    font-weight: 600;

}

.book-appointment-btn-appointment-section-for-key {

    background: linear-gradient(to right, #278BB1, #69B360);

    color: white;

    padding: 12px 30px;

    font-size: 1.1rem;

    font-weight: bold;

    border: none;

    transition: background-color 0.3s ease;

    border-radius: 5px;

}



.book-appointment-btn-appointment-section-for-key:hover {

    background-color: #3498db;

    text-decoration: none;

}



.btn-appintment-key-pages {



    color: #fff;

    background-color: #1f2e4e;

    border-color: #1f2e4e

}



.btn-appintment-key-pages:hover {

    color: #fff;

    background-color: #1a2742;

    border-color: #19253e

}



/* Appointment End */
.blog-container-blogs-pages p a {
    color: #66b164;
}
.blog-container-blogs-pages p a:hover {
    color: #288cb1;
}


.button-all {
	margin-top: 50px;
	margin-bottom: 30px;
}
.statik-key
{
  width: 100%;
    height: 25px;
    background-color: #2d8080;
  margin-bottom: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.statik-key h4
{
  font-size: 9px;
  color: #ffffff;
      padding-top: 10px;
}




.key-name {
	width: 100%;
    height: 20px;
    background-color: #ffffff;
   border: solid #469e8a 2px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    /* justify-content: center; */
    border-radius: 20px;
}

.key-name p a {
	color: rgb(0, 0, 0);
	font-size: 9px;
	margin-top: 15px;
}