@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400&family=Poppins:wght@200&family=Spline+Sans+Mono:ital,wght@1,700&display=swap');
/* 
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400&family=Poppins:wght@200;300;600;800&family=Spline+Sans+Mono:ital,wght@1,700&display=swap'); */


::-webkit-scrollbar {
    display: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

body {
    background: linear-gradient(135deg, #f7fffb 0%, #e6f7f0 100%);
    background-attachment: fixed;
    color: var(--black);
}

.dashboard {
    padding: 10rem 9% 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(59, 183, 143, 0.2);
    box-shadow: 0 10px 24px rgba(10, 70, 52, 0.08);
    padding: 2rem;
    color: var(--black);
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

table,
.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1.5rem;
    color: var(--black);
    background: #ffffff;
    border: 1px solid rgba(47, 191, 143, 0.18);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(10, 70, 52, 0.06);
}

table th,
table td,
.table th,
.table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(59, 183, 143, 0.18);
    font-size: 1.4rem;
}

table th,
.table th {
    text-align: left;
    font-size: 1.5rem;
    background: #f0faf6;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: #16a085;
    color: #fff;
    font-size: 1.1rem;
}

.badge.emergency {
    background: #e74c3c;
}

.badge.high {
    background: #f39c12;
}

.badge.medium {
    background: #2980b9;
}

.form-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.form-inline select,
.form-inline input[type=\"text\"] {
    flex: 1 1 18rem;
}

.hospital-results {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
    background: rgba(32, 32, 65, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hospital-results li {
    padding: 0.8rem 1rem;
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
}

.hospital-results li:hover {
    background: rgba(22, 160, 133, 0.35);
}

.chatbot {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 2000;
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    border: none;
    box-shadow: 0 12px 24px rgba(47, 191, 143, 0.35);
    cursor: pointer;
    font-size: 2rem;
}

.chatbot-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(20, 59, 47, 0.15);
    border: 1px solid rgba(47, 191, 143, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-panel.open {
    display: flex;
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: #e6f7f0;
    color: var(--black);
    font-weight: 600;
}

.chatbot-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
}

.chatbot-messages {
    padding: 1rem;
    max-height: 240px;
    overflow-y: auto;
    background: #ffffff;
}

.chatbot-message {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.chatbot-message.bot {
    background: #f0faf6;
    color: var(--black);
}

.chatbot-message.user {
    background: var(--green);
    color: #fff;
    margin-left: auto;
    text-align: right;
}

.chatbot-inputs {
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    background: #ffffff;
    border-top: 1px solid rgba(47, 191, 143, 0.15);
}

.chatbot-inputs select,
.chatbot-inputs input {
    width: 100%;
    font-size: 1.3rem;
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(47, 191, 143, 0.35);
    background: #f9fffd;
}

::selection {
    color: #16a085;
}

.glass {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(47, 191, 143, 0.18);
    box-shadow: 0 12px 24px rgba(20, 59, 47, 0.08);
    text-align: center;
    padding: 2.5rem;
    color: var(--black);
}

.icons-container .glass i {
    font-size: 4.5rem;
    color: var(--green);
    padding-bottom: .7rem;
}

.icons-container .glass h3 {
    font-size: 4.5rem;
    color: var(--black);
    text-shadow: var(--text-shadow);
    padding-bottom: .5rem 0;
}

.icons-container .glass p {
    font-size: 1.7rem;
    color: var(--light-color);
    /* text-shadow: var(--text-shadow);
    padding-bottom: .5rem 0; */
}

.glass-box {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(47, 191, 143, 0.18);
    box-shadow: 0 12px 24px rgba(20, 59, 47, 0.08);
    text-align: center;
    padding: 2.5rem;
    color: var(--black);
}

.services .box-container .glass-box i {
    color: var(--green);
    font-size: 5rem;
    padding-bottom: 5rem;
}

.services .box-container .glass-box h3 {
    color: var(--black);
    padding: 1rem 0;
    font-size: 2.5rem;
}

.services .box-container .glass-box p {
    color: var(--light-color);
    /* padding: 1rem 0; */
    font-size: 1.4rem;
    line-height: 2;
}

.glass-row {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(47, 191, 143, 0.18);
    box-shadow: 0 12px 24px rgba(20, 59, 47, 0.08);
    text-align: center;
    padding: 2.5rem;
    margin: auto;
    width: 100%;
    max-width: 760px;
}

.book .glass-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.book .glass-row form {
    flex: 1 1 45rem;
    /* background: #fff;
    border: var(--border); */
    text-align: center;
    padding: 2rem;
    border-radius: .5rem;
}

form select {
    padding: 1rem;
    background: #f9fffd;
    border-radius: .8rem;
    flex: 1 1 45rem;
    border: 0.2rem solid rgba(47, 191, 143, 0.4);
    color: var(--black);
}

form select option {
    padding: 1rem;
    background: #ffffff;
    border-radius: .5rem;
    color: var(--black);
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"] {
    background: #f9fffd;
    color: var(--black);
}

input[type="submit"] {
    background: var(--green);
    color: #ffffff;
    border: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(47, 191, 143, 0.9);
    box-shadow: 0 0 0 3px rgba(47, 191, 143, 0.15);
}

input:disabled,
select:disabled {
    background: #eef7f3;
    color: #8aa39b;
    cursor: not-allowed;
}

.book .glass-row form h3 {
    color: var(--black);
    padding-bottom: 1rem;
    font-size: 3rem;

}

.form-tag {
    display: inline-block;
    margin-bottom: 1.2rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: #e6f7f0;
    color: var(--black);
    font-size: 1.3rem;
    font-weight: 600;
}

.book .glass-row form .box {
    width: 100%;
    margin: .7rem 0;
    border-radius: .8rem;
    border: 0.2rem solid rgba(47, 191, 143, 0.4);
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    padding: 1rem;
    background: #f9fffd;

}

:root {
    --green: #2fbf8f;
    --black: #143b2f;
    --light-color: #5b7d73;
    --box-shadow: 0.6rem 0.6rem 0 rgba(47, 191, 143, 0.12);
    --text-shadow: 0.4rem 0.4rem 0 rgba(20, 59, 47, 0.08);
    --border: 0.2rem solid rgba(47, 191, 143, 0.5);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: 'Montserrat', sans-serif; */
    /* font-family: 'Poppins', sans-serif; */
    /* font-family: 'Spline Sans Mono', monospace; */
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    outline: none;
    border: none;
    transition: all .2s ease-out;
    text-decoration: none;
}

html {
    font-size: 66%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

section {
    padding: 4rem 9% 2rem;

}

/* section:nth-child(even){
    background: #f5f5f5;
} */

.btn-home {
    display: inline-block;
    margin-top: 1rem;
    padding: .9rem 1.8rem;
    border-radius: .8rem;
    background: var(--green);
    box-shadow: 0 10px 18px rgba(47, 191, 143, 0.2);
    color: #fff;
    cursor: pointer;
    font-size: 2.9rem;
}

.btn-home:hover {
    background: #25a97e;
    color: #fff;

}

.btn-home span {
    display: inline-block;
    padding: .6rem .9rem;
    border-radius: .6rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    margin-left: .8rem;
}

.btn-home:hover span {
    color: #fff;
    background: rgba(255, 255, 255, 0.3);
    margin-left: 1rem;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 1.6rem;
    border-radius: .8rem;
    background: var(--green);
    box-shadow: 0 10px 18px rgba(47, 191, 143, 0.2);
    color: #fff;
    cursor: pointer;
    font-size: 1.85rem;
}

.btn:hover {
    background: #25a97e;
    color: #fff;

}

.btn span {
    display: inline-block;
    padding: .5rem .8rem;
    border-radius: .6rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    margin-left: .6rem;
}

.btn:hover span {
    color: #fff;
    background: rgba(255, 255, 255, 0.3);
    margin-left: 1rem;
}

.home {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 12rem;
}

.home .image {
    flex: 1 1 45rem;
}

.home .image img {
    width: 100%;
}

.home .content {
    flex: 1 1 45rem;
}

.home .content h3 {
    font-size: 7rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1.2;
    text-shadow: var(--text-shadow);
}

.home .content p {
    font-size: 1.9rem;
    color: var(--black);
    line-height: 1.8;
    padding: 1rem 0;
}

.header {
    padding: 2rem 9%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 .5rem 1.5rem rgba(20, 59, 47, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);

}

.header .logo {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 600;
}

.logo {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 600;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand span {
    color: var(--black);
    font-weight: 600;
}

.logo i {

    color: var(--green);
}

.header .logo i {
    /* font-size: 2.5rem; */
    color: var(--green);
}

.header .navbar a {
    font-size: 1.8rem;
    color: var(--black);
    margin-left: 2rem;
    font-weight: 700;

}

.header .navbar a:hover {
    color: var(--green);
}

#menu-btn {
    font-size: 2.5rem;
    border-radius: .5rem;
    background: #e6f7f0;
    color: var(--green);
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: none;
}

.icons-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    padding-top: 5rem;
    padding-bottom: 5rem;

}

.icons-container .icons {
    border: var(--border);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    text-align: center;
    padding: 2.5rem;
}

.icons-container .icons i {
    font-size: 4.5rem;
    color: var(--green);
    padding-bottom: .7rem;
}

.icons-container .icons h3 {
    font-size: 4.5rem;
    color: var(--black);
    text-shadow: var(--text-shadow);
    padding-bottom: .5rem 0;
}

.icons-container .icons p {
    font-size: 1.7rem;
    color: var(--light-color);
    /* text-shadow: var(--text-shadow);
    padding-bottom: .5rem 0; */
}

.heading {
    text-align: center;
    padding-bottom: 2rem;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    color: var(--black);
    font-size: 5.4rem;
    letter-spacing: .4rem;
}

.heading span {
    text-transform: uppercase;
    color: var(--green);
}

.services .box-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
}

.services .box-container .box {
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: var(--border);
    padding: 2.5rem;
}

.services .box-container .box i {
    color: var(--green);
    font-size: 5rem;
    padding-bottom: 5rem;
}

.services .box-container .box h3 {
    color: var(--black);
    padding: 1rem 0;
    font-size: 2.5rem;
}

.services .box-container .box p {
    color: var(--light-color);
    /* padding: 1rem 0; */
    font-size: 1.4rem;
    line-height: 2;
}

.about .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;

}

.about .row .image {
    flex: 1 1 45rem;
}

.about .row .image img {
    width: 100%;
}

.about .row .content {
    flex: 1 1 45rem;
}

.about .row .content h3 {
    color: var(--black);
    text-shadow: var(--text-shadow);
    font-size: 4rem;
    line-height: 1.8;

}

.about .row .content p {
    color: var(--light-color);
    padding: 1rem 0;
    font-size: 1.5rem;
    line-height: 1.8;

}

.row2 {
    width: 100%;
    max-width: 760px;
    margin: auto;
}


.book .row2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.book .row2 form {
    flex: 1 1 45rem;
    background: #ffffff;
    border: 1px solid rgba(47, 191, 143, 0.18);
    text-align: center;
    padding: 2rem;
    border-radius: .8rem;
}

.book .row2 form h3 {
    color: var(--black);
    padding-bottom: 1rem;
    font-size: 3rem;

}

.book .row2 form .box {
    width: 100%;
    margin: .7rem 0;
    border-radius: .8rem;
    border: 0.2rem solid rgba(47, 191, 143, 0.4);
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    padding: 1rem;
    background: #f9fffd;

}

@media (max-width:991px) {
    html {
        font-size: 55%;

    }

    .header {
        padding: 2rem;
    }

    section {
        padding: 2rem;
    }

}

.footer .box-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));

}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;


}

.footer .box-container .box a {
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
    display: block;

}

.footer .box-container .box a i {
    padding-right: .5rem;
    color: var(--green);


}

.footer .box-container .box a:hover i {
    padding-right: 2rem;


}

.footer .credit {
    padding: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 2rem;
    color: var(--light-color);
    border-top: .1rem solid rgba(0, 0, 0, .1);
    /* bottom: 0; */
    /* position: fixed; */
}

.footer .credit span {
    color: var(--green);
    font-weight: 800;
}

@media (max-width:768px) {
    #menu-btn {
        display: initial;
        background: #ffffff00;

    }

    .home .image {
        display: none;
    }

    .header .navbar {
        position: absolute;
        top: 115%;
        right: 2rem;
        border-radius: .5rem;
        box-shadow: 0 12px 24px rgba(20, 59, 47, 0.12);
        width: 25rem;
        border: 1px solid rgba(47, 191, 143, 0.35);
        background: #ffffff;
        transform: scale(0);
        opacity: 0;
        transform-origin: top right;
        transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    }

    .header .navbar.active {
        transform: scale(1);
        opacity: 1;

        transition: .2s ease-out;
    }

    .header .navbar a {
        font-size: 2rem;
        display: block;
        margin: 2.5rem;
        color: var(--black);
        font-weight: 800;

    }

    .glass-row {
        width: 98%;
        margin: auto;
    }

    .dashboard {
        padding: 9rem 2rem 3rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .services .box-container {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    }

    .heading {
        font-size: 4rem;
        letter-spacing: .2rem;
    }

    .chatbot-panel {
        width: min(92vw, 360px);
    }
}

@media (max-width:450px) {
    html {
        font-size: 50%;

    }

    .header {
        padding: 2rem;
    }

    .heading {
        font-size: 3.4rem;
        letter-spacing: .15rem;
    }

    .btn,
    .btn-home {
        font-size: 1.6rem;
    }

    .chatbot {
        right: 1.5rem;
        bottom: 1.5rem;
    }

    .chatbot-panel {
        right: 0;
    }

}

.doctors .box-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
}

.doctors .box-container .glass-box img {
    height: 20rem;
    border: var(--border);
    border-radius: .5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
}

.doctors .box-container .glass-box h3 {
    color: var(--black);
    font-size: 2.5rem;
}

.doctors .box-container .glass-box span {
    color: var(--green);
    font-size: 1.5rem;
}

.doctors .box-container .glass-box .share {
    padding-top: 2rem;
}

.doctors .box-container .glass-box .share a {
    height: 5rem;
    width: 5rem;
    line-height: 4.5rem;
    font-size: 2rem;
    color: var(--green);
    border-radius: .5rem;
    border: var(--border);
    margin: .3rem;
}

.doctors .box-container .glass-box .share a:hover {
    background: var(--green);
    color: #fff;
    box-shadow: var(--box-shadow);
}

.blogs .box-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
}

.blogs .box-container .glass-box .image {
    height: 20rem;
    overflow: hidden;
    border-radius: .5rem;
}

.blogs .box-container .glass-box .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blogs .box-container .glass-box:hover .image img {
    transform: scale(1.2);
}

.blogs .box-container .glass-box .content {
    padding-top: 1rem;

}

.blogs .box-container .glass-box .content h3 {
    color: var(--black);
    font-size: 3rem;

}

.blogs .box-container .glass-box .content p {
    color: var(--light-color);
    font-size: 1.5rem;
    line-height: 1.8;
    padding: 1rem 0;

}

.blogs .box-container .glass-box .content .icon {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.blogs .box-container .glass-box .content .icon a {
    font-size: 1.4rem;
    color: var(--light-color);

}

.blogs .box-container .glass-box .content .icon a:hover {

    color: var(--green);

}

.blogs .box-container .glass-box .content .icon a i {
    padding-right: .5rem;
    color: var(--green);

}

.about .content a:hover i {
    padding-right: .5rem;
    color: var(--black);
    margin-left: .5rem;

}

.glass-hide {

    background: linear-gradient(135deg, rgb(211, 190, 190), rgba(255, 255, 255, 0.178));

    backdrop-filter: blur(40px);

    -webkit-backdrop-filter: blur(40px);

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

    /* border-radius: 20px; */

    /* border: 1px solid rgba(255, 255, 255, 0.18); */

    box-shadow: 0 -20px 28px 0 rgba(253, 244, 244, 0.534);

    text-align: center;
    padding: 2.5rem;

    height: 500px;
    /* width: 98%; */
    margin: auto;



}

.glass-hide .btn {
    margin: auto;
    /* margin-top: 50%; */
    font-size: 3.4rem;
    margin-top: 15rem;
}

table {
    width: 100%;
    justify-content: space-between;
    border: var(--border);
    padding: 20px;
    border-radius: .5rem;
}

table td {
    font-size: 1.5rem;
    color: var(--black);
}

table td a {
    font-size: 1.5rem;
    color: #16a085;
}

table th {
    font-size: 1.2rem;
    color: var(--black);
}

.glass-row-book {

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));

    /* backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px); */

    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    text-align: center;
    padding: 1.5rem;

    margin: auto;
    width: 99%;

}
