/********** Template CSS **********/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-dark,
.btn.btn-outline-dark:hover {
    color: var(--bs-white);
    font-weight: 500;
    background-color: #63c488;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.btn.btn-primary:hover {
      background: #57acea;
    border-color: #57acea;
    border-radius: 20px;
}

.btn.btn-dark:hover {
    background: #57acea;
    border-color: #57acea;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 10px 0;
    color: var(--bs-secondery);
    font-size: 17px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .navbar-nav .dropdown-item:hover,
.navbar .navbar-nav .dropdown-item.active {
    background: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-light {
    font-weight: 500;
    color: var(--bs-secondery);
}

.navbar .btn-light:hover {
    color: var(--bs-white);
    background:#63c484;
    border-radius:20px;
}


/*** Hero ***/
.hero-header {
    background: url(../img/hero.jpeg) top right no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #57acea;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#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: var(--bs-white);
    background: #000000;
    opacity: 1;
}

.page-header {
    background: url(../img/hero.jpeg) center right no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-secondery)
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--bs-primary);
}


/*** Appointment ***/
@media (min-width: 992px) {
    .container.appointment {
        max-width: 100% !important;
    }

    .container.appointment .appointment-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.appointment .appointment-form {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.appointment .appointment-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.appointment .appointment-form  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.appointment .appointment-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.appointment .appointment-form  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.appointment .appointment-text {
    background: linear-gradient(rgb(87 172 234), rgb(99 196 136)), url(../img/service-4.jpg) center center no-repeat;;
    background-size: cover;
}

.container.appointment .appointment-form {
    background: linear-gradient(rgb(99 196 136), rgb(87 172 234)), url(../img/service-1.jpg) center center no-repeat;
    background-size: cover;
}

.container.appointment .appointment-text .h-100,
.container.appointment .appointment-form .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item .service-text {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.service-item .service-img {
    transition: .5s;
}

.service-item:hover .service-img {
    transform: scale(1.2) rotate(7deg);
}



/*** Team ***/
.team {
    position: relative;
}

.team::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 110px;
    left: 0;
    bottom: 3rem;
    background: var(--bs-light);
    z-index: -1;
}

.team .team-item {
    position: relative;
    overflow: hidden;
}

.team .team-item img {
    position: relative;
    transform: scale(1.1);
    transition: .5s;
}

.team .team-item:hover img {
    margin-top: -30px;
    padding-bottom: 30px;
}

.team .team-text {
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team .team-text-overflow {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-text-overflow {
    bottom: 0;
    opacity: 1;
}



/*** Testimonial ***/
.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    animation: pulse-img 5s ease-out infinite;
}

@keyframes pulse-img {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 0;
    }
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    background: #57acea;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark);
}


/*** Footer ***/
.footer {
    color: rgba(256, 256, 256, .6);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(256, 256, 256, .6);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgb(0 0 0 / 60%);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(0,0,0);
    border: 1px solid rgba(256, 256, 256, .6);
}

.footer .btn.btn-square:hover {
    color: var(--bs-white);
        border-color: #57acea;
    background: #57acea;
}

.footer .form-control {
    color: var(--bs-light);
    border-color: rgba(256, 256, 256, .6) solid 2px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}



.bg-light {
    background-color: #57acea !important;
    border-radius: 5px;
}
/* .text-primary {
    color: #ffffff !important;
} */
.bg-primary {
    background-color: #63c884 !important;
    border-radius: 5px;
}
.leading {
    color: #000 !important ;
}
i.bi.bi-envelope.fs-1.text-primary.me-3 {
    color: #fff !important;
}
i.bi.bi-phone-vibrate.fs-1.text-primary.me-3 {
    color: #fff !important;
}
.important {
    /* color: #57acea; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;

}
.bg-dark
 {
    background-color: #fff !important;
}

.text-dark {
    color: #000000 !important;
}
.committed{
    color: #57acea;
}
/* row.g-0 {
    display: none;
}
i.fab.fa-instagram.fa-2x.text-primary{
    display: none;

} */
a.d-flex.align-items-center.justify-content-center.position-absolute.top-50.start-50.translate-middle.bg-white {
    display: none !important;
}
/* FACILITY Department */
.section-title {
      font-weight: bold;
      margin-bottom: 1rem;
      color: #0d6efd;
    }
    .card-dept {
      transition: transform 0.3s ease;
    }
    .card-dept:hover {
      transform: scale(1.05);
    }
/* FACILITY Department  END */

.col-lg-4.text-center.bg-light.py-3{
    display: flex;
    justify-content: center;
}

 /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 98px;
            right: 31px;
            z-index: 999;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
        }


       





        /* Form Design */
        .contact-form {
            background: #ffffff;
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .contact-form .form-control {
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            padding: 1rem 0.75rem;
            transition: 0.3s ease;
            font-size: 15px;
        }

        .contact-form .form-control:focus {
            border-color: #63c488;
            box-shadow: 0 0 0 0.2rem rgba(99, 196, 136, 0.2);
        }

        .contact-form .form-floating label {
            font-size: 14px;
            color: #6c757d;
        }

        .contact-form textarea.form-control {
            height: 120px !important;
            resize: none;
        }

        /* BUTTON COLORS */
        .contact-form .btn-primary {
            background-color: #63c488;
            border-color: #63c488;
            border-radius: 30px;
            font-weight: 600;
            padding: 12px 36px;
            transition: all 0.3s ease;
        }

        .contact-form .btn-primary:hover,
        .contact-form .btn-primary:focus {
            background-color: #57acea;
            border-color: #57acea;
            box-shadow: none;
        }

        /* Map */
        .map-box {
            min-height: 450px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }
   






.appointment-box {
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 40px 20px;
}

.custom-input {
    height: 55px;
    border-radius: 12px;
    border: none;
    padding: 12px 15px;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.custom-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #63c488;
}

.appointment-btn {
    background-color: #63c488;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    background-color: #57acea;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Section background */
        /* .container-fluid {
            background: linear-gradient(135deg, #f8fffb, #eefaf5);
        }
 */



        /* SERVICES CARD */
        /* Form card */
        form {
            background: #ffffff;
            padding: 35px;
            border-radius: 18px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        /* Inputs & selects */
        .form-control,
        .form-select {
            border-radius: 12px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        /* Input hover */
        .form-control:hover,
        .form-select:hover {
            border-color: #63c488;
        }

        /* Input focus */
        .form-control:focus,
        .form-select:focus {
            border-color: #63c488;
            box-shadow: 0 0 0 0.2rem rgba(99, 196, 136, 0.25);
        }

        /* Button */
        .btn-primary {
            background-color: #63c488;
            border-color: #63c488;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            padding: 12px 40px;
            transition: all 0.4s ease;
        }

        /* Button hover */
        .btn-primary:hover {
            background-color: #57acea;
            border-color: #57acea;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(87, 172, 234, 0.4);
        }

        /* Heading */
        h1 {
            font-weight: 700;
        }

        /* Mobile spacing */
        @media (max-width: 576px) {
            form {
                padding: 25px 20px;
            }
        }


/* CONTACT US CARDS */
.contact-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px 25px;
            height: 100%;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-align: center;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        /* 🔥 ICON COLOR UPDATED */
        .icon-box {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: #57acea;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            margin: 0 auto 20px;
        }

        .contact-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #222;
        }

        .contact-text {
            font-size: 15px;
            color: #555;
            margin-bottom: 0;
            font-weight: 500;
        }

        /* FULL EMAIL SHOW */
        .email-full {
            word-break: break-all;
            overflow-wrap: anywhere;
        }

        .contact-btn {
            margin-top: 15px;
            background-color: #57acea;
            border-color: #57acea;
        }

        .contact-btn:hover {
            background-color: #429bd6;
            border-color: #429bd6;
        }
        /*  */

        .contact-card:hover {
    background-color: #63c488;
        }

        p.contact-text:hover {
    color: #fff;
}
a.contact-text.email-full.d-block:hover {
    color: #fff;
}







/* SERVICES CARD DEPARTMENT */
 .section {
      max-width: 1200px;
      margin: auto;
      margin-bottom: 60px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 22px;
    }

    .card {
      background: #ffffff;
      border-radius: 14px;
      padding: 28px 20px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: 0.3s ease;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(13, 110, 253, 0.25);
    }

    .icon {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      background: #eaf7f0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-bottom: 16px;
      font-size: 28px;
      color: #63c488;
    }

    .title {
      font-size: 16px;
      font-weight: 600;
      color: #333;
    }

    @media (max-width: 600px) {
      h2 {
        font-size: 22px;
      }
    }