/* //public html */
:root {
    --body: "Inter", sans-serif;
    --heading: "Montserrat", sans-serif;
    --container: 1920px;
    --container-padding: 0 80px;
    --deep-teal: #043959;
    --white: #fff;
    --nav-size: 18px;
    --blue-400: #28a3d0;
    --green-400: #7dc95f;
    --steel-blue: #305d78;
    --ink-blue: #033b5a;
    --light-green: #87dd65;
    --blue-gray: #5c727e;
    --danger-red: #ff6868;
    --gradient-primary: linear-gradient(100.74deg,
            var(--blue-400) 2.77%,
            var(--green-400) 100%);
    --gradient-primary-reverse: linear-gradient(100.74deg,
            var(--green-400) 2.77%,
            var(--blue-400) 100%);
    --body-fs: 16px;
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --header-height: 60px;
}

/**=======================Env Badge======================================**/

.environment-badge {
    color: #fff;
    margin: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
}

.env-local {
    background: #28a3d0;
}

.env-staging {
    background: #ff6868;
}

.env-production {
    background: #87dd65;
}



/**=============================================================**/

/* APP MODE ONLY */
/* APP MODE ONLY */
body.is-app {
    padding-top: var(--header-height);
}

#active-user-avatar {
    object-fit: cover;
    box-shadow: 0px 0px 4px 0px #05C00E;
    border: 1px solid #FFFFFF;
    border-radius: 50% !important;
}

.file-name {
    display: inline-block;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    cursor: pointer;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-family: var(--heading);
}

a {
    text-decoration: none;
}

p {
    margin: 0 0 15px;
    padding: 0;
}

p:last-child {
    margin-bottom: 0;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header.header-section {
    padding-top: env(safe-area-inset-top);


}

body .container {
    max-width: var(--container);
    padding: var(--container-padding);
}

.light-gradient {
    background: linear-gradient(122.42deg,
            rgba(40, 163, 208, 0.1) 2.39%,
            rgba(125, 201, 95, 0.1) 100%);
}

.fs-15 {
    font-size: 14px;
}

.fs-16 {
    font-size: 14px;
}

.fs-17 {
    font-size: 15px;
}

.fs-24 {
    font-size: 20px;
}

.fs-18 {
    font-size: 16px;
}

.fs-20 {
    font-size: 20px;
}

.fs-40 {
    font-size: 30px;
}

.section-content p {
    color: var(--blue-gray);
}

.preview-modal {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.preview-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.preview-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.preview-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.preview-download {
    color: #fff;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.dropdown-menu {
    width: 225px;
}

.forward-bold {
    color: red !important;
}

.disabled-row {
    opacity: 0.5;
    pointer-events: none;
}

.form-control:focus {
    box-shadow: none;
}

.mt-32 {
    margin: 32px 0 0 0;
}

.modal-backdrop {
    width: 100%;
    height: 100%;
}

/**==================hide the PWA install prompt===========================================**/
#install-prompt {
    display: none !important;
}

/* iOS PWA Custom Banner Styling */
.ios-pwa-banner {
    display: none;
    /* JS will handle showing this */
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    color: white;
    padding: 10px;
    border-radius: 15px;
    margin: 15px 0;
    box-shadow: 0 10px 20px rgba(3, 59, 90, 0.2);
    animation: slideDown 0.5s ease-out;
}

.ios-notification-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    animation: ring 2s infinite ease-in-out;
}

.text-box {
    display: flex;
    flex-direction: column;
}

.text-box strong {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.text-box span {
    font-size: 12px;
    opacity: 0.8;
}

.btn-enable {
    background: white;
    color: #033B5A;
    border: none;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;

}

.btn-enable:active {
    transform: scale(0.95);
    opacity: 0.9;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}


@media all and (display-mode: standalone) {
    #install-prompt {
        display: none !important;
    }
}

/**==================Header copy from html folder===========================================**/
.header-section .navbar {
    padding: 15px 0;
}

.header-section .navbar .navbar-nav li.nav-item {
    margin: 0 2px;
}

.header-section .navbar .navbar-nav li.nav-item a {
    padding: 5px 15px;
    text-decoration: none;
    transition: all 0.8s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--deep-teal);
    font-size: var(--nav-size);
}

.header-section .navbar .navbar-nav li.nav-item a:hover {
    color: var(--white);
}

.header-section .navbar .navbar-nav li.nav-item a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    clip-path: circle(0 at center);
    transition: clip-path 0.8s;
    z-index: -1;
    border-radius: 100px;
}

.header-section .navbar .navbar-nav li.nav-item a:hover:before {
    clip-path: circle(100% at center);
}

.header-section button.navbar-toggler {
    padding: 0;
    border: none;
    box-shadow: inherit;
}

/**=============================================================**/
/* Button CSS */
.btn-header {
    border: 1px solid var(--green-400);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 100px;
    text-decoration: none;
    background: transparent;
    color: var(--deep-teal);
    transition: all 0.8s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 18px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-header:hover {
    color: var(--white);
    border-color: transparent;
}

.btn-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    clip-path: circle(0 at center);
    transition: clip-path 0.8s;
    z-index: -1;
    border-radius: 100px;
}

.button-location:hover:before {
    clip-path: circle(100% at center);
}

.submit-btn,
.swal2-confirm,
.swal2-cancel {
    width: 100%;
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--ink-blue);
    padding: 11px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover,
.swal2-confirm:hover,
.swal2-cancel:hover {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    color: var(--white);
}

.swal2-confirm,
.swal2-cancel {
    width: auto;
}

label.input-label {
    position: absolute;
    background: var(--white);
    font-size: 12px;
    color: #4f748b;
    line-height: normal;
    padding: 0 5px;
    left: 16px;
    top: -7px;
    z-index: 99;
}

.swal2-confirm {
    background: var(--gradient-primary);
    color: var(--white);
    width: 200px;
}

.swal2-cancel {
    width: 200px;
}

.swal2-html-container {
    color: var(--blue-gray);
    font-size: 16px;
    font-weight: 300;
}

.login-form-group .form-group input,
.login-form-group .form-group select,
.login-form-group .form-group textarea {
    height: 48px;
    color: var(--deep-teal);
    border-radius: 100px;
    width: 100%;
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box;
    outline: none;
    padding: 0 20px;
    font-size: 14px;
}

.login-form-group .form-group textarea {
    height: 100%;
    padding: 10px;
    border-radius: 16px;
}

/**==================Model style  section copy from html folder===========================================**/

.login-modal .modal-dialog {
    max-width: 485px;
}

.login-modal .modal-content {
    border: none;
    padding: 32px;
    border-radius: 24px;
    padding-bottom: 65px;
}

.login-sec {
    position: relative;
}

.login-sec:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/overlay.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ServiceRequest .modal-dialog {
    max-width: 650px;
}

.dz-progress {
    display: none !important;
}

/**==================Model style  section copy from html folder= ends here==========================================**/

.login-modal-content {
    max-width: 484px;
    padding: 30px;
    margin: auto;
    box-shadow: 0px 8px 100px 0px #0000001a;
    border-radius: 24px;
    width: 100%;

    /**==================Model style   copy from html folder===========================================**/

    z-index: 999;
    background: #fff;
    /**==================Model style   copy from html folder=ends here==========================================**/
}

/* Input icon ki position fix rakhein */
.input-icon {
    position: absolute;
    right: 15px;
    top: 25px;
    transform: translateY(-13px);
    z-index: 10;
}

/* .input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
} */
/**==================forgot -password and service request radio buttons   copy from html folder===========================================**/

.forgot-password a {
    color: var(--ink-blue);
    font-size: 16px;
}

/* ======== 04/02/2026 CSS ============= */
.question-box {
    background: #f7fbf9;
    border-radius: 16px;
}

.question-box .question-text {
    font-size: 18px;
    /* font-size: 12px; */
    font-weight: 500;
    color: var(--deep-teal);
}

.question-box .custom-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.question-box .custom-radio input {
    display: none;
}

.question-box .radio-ui {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box;
    position: relative;
}

.question-box .custom-radio input:checked+.radio-ui::after {
    content: "";
    width: 13px;
    height: 13px;
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.question-box .radio-label {
    font-size: 14px;
    color: #4f748b;
}

div:where(.swal2-icon).swal2-warning {
    border-color: var(--danger-red) !important;
    color: #fff !important;
    background: var(--danger-red);
}

/**==================forgot -password  and service request radio buttons copy from html folder=ends here==========================================**/

.btn-close {
    height: 30px;
    width: 30px;
    position: absolute;
    right: 15px;
    top: 5px;
    font-size: 10px;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--white) fff, var(--white) fff) padding-box,
        linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box;
    border-radius: 100px;
    padding: 0;
}

.btn-close span {
    font-size: 14px;
    opacity: 0.6;
    text-shadow: inherit;
}

.btn-close:hover {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    color: var(--white);
}

.btn-close:hover span {
    opacity: 1;
}

.btn-close:hover img {
    filter: brightness(0) invert(1);
}

/* Login Button CSS */
.button-login {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

.button-login:before {
    background: var(--gradient-primary-reverse);
}

.button-login:hover:before {
    clip-path: circle(100% at center);
}

.button-regular {
    border-image: linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.4) 2.77%,
            rgba(125, 201, 95, 0.4) 100%) 1;
    padding: 10px 25px;
    border-radius: 100px;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.4) 2.77%,
            rgba(125, 201, 95, 0.4) 100%) border-box;
    border: 1px solid transparent;
    color: var(--steel-blue);
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button-regular:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    clip-path: circle(0 at center);
    transition: clip-path 0.8s;
    z-index: -1;
    border-radius: 100px;
}

.button-regular:hover:before {
    clip-path: circle(100% at center);
}

.button-regular:hover .gradient-text {
    background: linear-gradient(100.74deg,
            var(--white) fff 100%,
            var(--white) fff 100%);
    -webkit-background-clip: text;
}

.schedule-card .chat-text {
    border-bottom: 1px solid;
    border-image: linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.3) 2.77%,
            rgba(125, 201, 95, 0.3) 100%) 1;

    padding: 0 0 16px;
    margin: 0 0 16px;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background:
        url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23033B5A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 18px center,
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box !important;
}

/**==================Hero and section gap copy from html folder===============================**/
/* Hero CSS */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 0;
    height: 850px;
}

.hero-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/overlay.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.expert-care {
    margin: 0 0 30px;
}

.expert-care span {
    background: linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.35) 2.77%,
            rgba(125, 201, 95, 0.35) 100%);
    color: var(--white);
    border-radius: 100px;
    padding: 5px 20px;
    font-size: 18px;
    display: inline-block;
}

.hero-provider-content {
    max-width: 960px;
    width: 100%;
    margin: 0 auto 40px;
}

.hero-provider-content h1 {
    font-weight: 600;
    color: var(--white);
    font-size: 56px;
    margin-bottom: 10px;
}

.hero-provider-content h1 span {
    color: var(--light-green);
}

.hero-provider-content p {
    font-size: 18px;
    color: var(--white);
    font-weight: 300;
}

.hero-stat-block {
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.hero-stat-number {
    position: relative;
}

.hero-stat-number:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='2' height='94' viewBox='0 0 2 94' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.75' y1='0' x2='0.75' y2='94' stroke='url(%23paint0)' stroke-opacity='0.25' stroke-width='1.5'/%3E%3Cdefs%3E%3ClinearGradient id='paint0' x1='-0.5' y1='0' x2='-0.5' y2='94' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white' stop-opacity='0'/%3E%3Cstop offset='0.5' stop-color='white'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 2px 94px;
    height: 100%;
    width: 2px;
    position: absolute;
    top: 0;
    right: 0;
}

.stat-column:last-child .hero-stat-number:after {
    display: none;
}

.hero-stat-number h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 10px;
}

.hero-stat-number p {
    color: var(--white);
    font-weight: 300;
    font-size: 18px;
}

/*SECTION GAP CSS*/
.section-column-gap {
    gap: 120px;
    padding: 120px 0;
}

/*ABOUT CSS */
.about-figure {
    height: 100%;
}

.about-figure figure {
    transform: scaleX(-1);
    height: 100%;
}

.about-figure figure img {
    border-radius: 24px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-certified {
    background: var(--white);
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    width: 300px;
    align-items: center;
}

.about-stat-number {
    font-size: 56px;
    font-weight: 600;
    line-height: normal;
}

.about-specialists {
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    color: var(--ink-blue);
}

.section-label span {
    border-image: linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.4) 2.77%,
            rgba(125, 201, 95, 0.4) 100%) 1;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 100px;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.4) 2.77%,
            rgba(125, 201, 95, 0.4) 100%) border-box;
    border: 1px solid transparent;
    color: var(--steel-blue);
    font-weight: 500;
    text-transform: capitalize;
}

.section-top-heading h2 {
    font-size: 48px;
    font-weight: 600;
    color: var(--ink-blue);
}

.section-top-heading h2 span {
    background: linear-gradient(100.74deg, #51b59a 2.77%, #71c37d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub-caption {
    font-size: 20px;
    color: var(--ink-blue);
    font-weight: 500;
}

.section-arrow-list ul li {
    margin: 0 0 10px;
    position: relative;
    padding-left: 38px;
    background-image: url("data:image/svg+xml,%3Csvg%20width='26'%20height='24'%20viewBox='0%200%2026%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M10.7722%2023.3463C16.7215%2023.3463%2021.5444%2018.5234%2021.5444%2012.5741C21.5444%206.62482%2016.7215%201.80196%2010.7722%201.80196C4.82287%201.80196%200%206.62482%200%2012.5741C0%2018.5234%204.82287%2023.3463%2010.7722%2023.3463Z'%20fill='url(%23paint0_linear_823_8350)'%20fill-opacity='0.2'/%3E%3Cpath%20d='M10.8801%2019.9207L10.7595%2019.7153C8.91797%2016.5777%204.02432%209.91916%203.97489%209.85228L3.9043%209.75638L5.57154%208.10869L10.8491%2011.7939C14.172%207.48192%2017.272%204.52028%2019.2942%202.79079C21.5062%200.898908%2022.9461%200.0279463%2022.9607%200.0196001L22.9934%200H25.8215L25.5514%200.240585C18.6037%206.42891%2011.0731%2019.5816%2010.998%2019.7137L10.8801%2019.9207Z'%20fill='url(%23paint1_linear_823_8350)'/%3E%3Cdefs%3E%3ClinearGradient%20id='paint0_linear_823_8350'%20x1='-6.10666e-08'%20y1='5.5488'%20x2='24.0546'%20y2='10.1112'%20gradientUnits='userSpaceOnUse'%3E%3Cstop%20stop-color='%2328A3D0'/%3E%3Cstop%20offset='1'%20stop-color='%237DC95F'/%3E%3C/linearGradient%3E%3ClinearGradient%20id='paint1_linear_823_8350'%20x1='3.9043'%20y1='3.46447'%20x2='28.1977'%20y2='8.534'%20gradientUnits='userSpaceOnUse'%3E%3Cstop%20stop-color='%2328A3D0'/%3E%3Cstop%20offset='1'%20stop-color='%237DC95F'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: top left;
}

.gradient-text {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/**==================Choose section copy from html folder===========================================**/
/*CHOSE SECTION*/

.chose-card {
    border-image: linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.4) 2.77%,
            rgba(125, 201, 95, 0.4) 100%) 1;
    display: inline-block;
    padding: 40px;
    border-radius: 24px;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.4) 2.77%,
            rgba(125, 201, 95, 0.4) 100%) border-box;
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    transition: all 0.5s;
}

.chose-card figure {
    margin-bottom: 25px;
}

.chose-card h3 {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--body);
    margin: 0 0 10px;
    color: var(--ink-blue);
}

.chose-card:hover {
    transform: translateY(-60px);
    box-shadow: 0px 20px 100px 0px #aaebd4b2;
    background: var(--gradient-primary);
}

.chose-card:hover img {
    filter: brightness(0) invert(1);
}

.chose-card:hover h3,
.chose-card:hover p {
    color: var(--white);
}

.chose-card:hover:before {
    clip-path: circle(100% at center);
}

/**==================Our services section copy from html folder===========================================**/
/*OUR SERVICES*/

.service-container {
    background:
        linear-gradient(0deg, #f0f8f4, #f0f8f4),
        linear-gradient(288.7deg,
            rgba(116, 197, 107, 0.1) 0.48%,
            rgba(116, 197, 107, 0) 102.12%);
    padding: 80px 72px;
    border-radius: 24px;
}

.service-figure {
    height: 100%;
}

.service-figure figure {
    height: 100%;
}

.service-figure figure img {
    border-radius: 24px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-box-column {
    display: flex;
}

.service-icon {
    width: 56px;
    flex: 0 0 56px;
    height: 56px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 0 15px 0 0;
}

.service-icon-number {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 24px;
    font-weight: 600;
}

.service-column-number::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 56px;
    width: 0;
    height: 82%;
    border-left: 3px solid #4ec2823d;
}

/**==================Reviews section copy from html folder===========================================**/
/* REVIEW CSS */

.reviews-section-slide .swiper-slide {
    padding: 15px 10px;
}

.review-box {
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0px 0px 40px 0px #e1f2efb2;
}

.review-content p {
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
}

.client-details {
    display: flex;
    align-items: center;
}

.client-details figure img {
    width: 56px;
    height: 56px;
    border-radius: 100px;
    object-fit: cover;
}

.client-name {
    font-weight: 600;
    color: #20332d;
}

.client-position {
    font-size: 16px;
    font-weight: 300;
}

.review-box:hover {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
}

.review-box:hover .review-content p,
.review-box:hover .client-name,
.review-box:hover .client-position {
    color: var(--white);
}

.review-box:hover .qoute-icon img {
    filter: brightness(0) invert(1);
}

.swiper-wrapper {
    transition-timing-function: linear;
}

.reviews-section-slide .swiper-slide {
    display: flex;
    height: auto;
}

.reviews-section-slide .review-box {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.reviews-section-slide .client-details {
    margin-top: auto;
}

/**==================FAQs section copy from html folder===========================================**/

/* FAQs CSS */

.accordion.faq-accordion .accordion-item {
    border: none;
    padding: 20px;
    background: var(--white);
    box-shadow: 0px 0px 50px 0px #e1f2efcc;
    border-radius: 16px;
    margin: 0 0 20px;
    cursor: pointer;
}

.accordion.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header.accordion-button {
    padding: 0;
    background-color: transparent;
    border: none;
    font-size: 18px;
    box-shadow: none;
    font-weight: 500;
    color: var(--ink-blue);
}

.accordion.faq-accordion .accordion-item.active {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
}

.accordion-item.active .accordion-header.accordion-button,
.accordion-item.active .section-content p {
    color: var(--white);
}

/* ============== DASHBOARD CSS ============= */
.sidebar-open-btn {
    display: none;
    font-size: 24px;
    color: var(--deep-teal);
    background: transparent;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    padding: 0px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    background: linear-gradient(var(--white), var(--white)) padding-box padding-box, linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box border-box;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.heading-three {
    font-size: 24px;
    font-weight: 500;
    color: var(--ink-blue);
}

.heading-four {
    font-size: 20px;
    font-weight: 500;
    color: var(--ink-blue);
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background:
        linear-gradient(0deg, #f0f8f4, #f0f8f4),
        linear-gradient(356.32deg, #74c56b33 0%, #74c56b00 101.67%);
    transition: 0.5s;
    z-index: 999;
    width: 320px;
    z-index: 1045;
    padding-top: var(--safe-top);
}

.sidebar-links {
    overflow: auto;
}

.sidebar .sidebar-header {
    padding: 9px 24px;
}

.sidebar .sidebar-header .navbar-brand img {
    width: 100%;
    height: 70px;
    object-fit: contain;
}

.search-bar {
    height: 48px;
    border-radius: 100px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    background:
        linear-gradient(var(--white), var(--white)) padding-box padding-box,
        linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box border-box;
    padding: 0 20px;
    max-width: 370px;
    display: flex;
    align-items: center;
}

.search-bar input {
    font-size: 18px;
    width: 100%;
    outline: none;
    border: 0;
    background: transparent;
}

.dropdown-toggle::after {
    display: none;
}

/* Notitication improved design 17 april 2026 */
.notification-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--deep-teal);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-item .mark-read {
    display: block;
    background: #F0F8F4;
    padding: 4px 10px;
    border-radius: 16px;
    width: max-content;
    font-size: 14px;
    color: var(--deep-teal);
    margin-top: 5px;
}

.notification-item .view-link {
    font-size: 14px;
}



.new-notification-tag {
    padding: 6px 12px;
    background: #ff6868;
    border-radius: 16px;
    color: #fffbea !important;
}

.dropdown-toggle.notification img {
    width: 80%;
}

.notification-alert {
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    background: #FF7D68;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    position: absolute;
    top: -3px;
    right: -12%;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    box-sizing: border-box;
    white-space: nowrap;
}

.dropdown-toggle img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.dashboard-content {
    margin-left: auto;
    width: calc(100% - 320px);
}

.dropdown-toggle.notification {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    background:
        linear-gradient(var(--white), var(--white)) padding-box padding-box,
        linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box border-box;
}

.dashboard-content .navbar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(100.74deg, #28a3d040 2.77%, #7dc95f40 100%);
}

.sidebar .sidebar-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(100.74deg, #28a3d040 2.77%, #7dc95f40 100%);
}

.sidebar .btn-header {
    justify-content: start;
    gap: 10px;
    background: transparent;
    color: var(--ink-blue);
    border-color: #ebeeea;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sidebar .btn-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 100px;
    z-index: -1;
    clip-path: circle(0 at center);
    transition: clip-path 0.6s ease;
}

.sidebar .btn-header:hover {
    color: var(--white);
}

.sidebar .btn-header:hover::before {
    clip-path: circle(150% at center);
}

.chat-numbers {
    background: var(--danger-red);
    color: var(--white);
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 9;
}

.dashboard-content .username {
    font-size: 18px;
    font-weight: 600;
    color: #20332d;
}

.dashboard-content .userdesination {
    font-size: 18px;
    color: #04395980;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.dashboard-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--ink-blue);
}

.period-tabs,
.schedule-wrap .fc-button-group {
    display: inline-flex;
    padding: 4px;
    border-radius: 50px;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(100.74deg, #28a3d04d 2.77%, #7dc95f4d 100%) border-box;
    overflow: hidden;
    gap: 5px;
}

.schedule-wrap .fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
    z-index: revert-layer;
}

.schedule-wrap .fc-header-toolbar .fc-toolbar-chunk .fc-dateRangePicker-button {
    background: transparent;
    border: none;
}

.schedule-wrap .fc-header-toolbar .fc-toolbar-chunk .fc-dateRangePicker-button:hover {
    background: transparent;
}

.schedule-wrap .fc-header-toolbar .fc-toolbar-chunk .fc-today-button {
    background: transparent;
    color: var(--deep-teal);
    font-weight: 600;
    border: none;
}

.tab-btn,
.schedule-wrap .fc-button-group .fc-button-primary {
    border: none;
    background: transparent;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    color: #6c8aa4;
    transition: all 0.3s ease;
    box-shadow: none;
}

span.today-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(to right, #add8e6, #90ee90);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    margin-left: 12px;
}

.schedule-wrap .fc-today-button {
    border-radius: 50px !important;
}

.schedule-wrap .fc-toolbar-chunk h2 {
    font-size: 24px;
    color: var(--ink-blue);
}

.tab-btn:hover {
    color: #1b4d6b;
}

.tab-btn.active,
.schedule-wrap .fc-button-group .fc-button-active {
    background: linear-gradient(90deg, #2fa4dd, #63c36b);
    color: var(--white);
    border-radius: 50px !important;
    box-shadow: none !important;
}

.schedule-wrap .fc-button-group .fc-button-primary:hover {
    background: linear-gradient(90deg, #2fa4dd, #63c36b);
    color: var(--white);
    border-radius: 50px !important;
    box-shadow: none !important;
}

.fc-daygrid-dot-event.fc-event-mirror,
.fc-daygrid-dot-event:hover {
    background: transparent;
    color: var(--deep-teal) !important;
}

.schedule-wrap .fc-button-group .fc-prev-button:hover,
.schedule-wrap .fc-button-group .fc-next-button:hover {
    background: transparent !important;
    color: var(--deep-teal) !important;
}

.request-card {
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;

}

.request-card-container .row>div:nth-child(1) .request-card {
    background:
        linear-gradient(282.8deg, #74c56b00 -0.78%, #74c56b1a 103.47%),
        linear-gradient(100.74deg, #28a3d0 2.77%, #31b2e2 100%);
}

.request-card-container .row>div:nth-child(2) .request-card {
    background: linear-gradient(100.74deg, #34d2c5 2.77%, #2ddbcd 97.66%);
}

.request-card-container .row>div:nth-child(3) .request-card {
    background: linear-gradient(100.74deg, #71c450 2.77%, #84d963 97.66%);
}

.request-card-container .row>div:nth-child(4) .request-card {
    background: linear-gradient(100.74deg, #7960d7 2.77%, #7b63d4 100%);
}

.request-box {
    height: 64px;
    width: 64px;
    border-radius: 16px;
    background: #ffffff29;
    display: flex;
    justify-content: center;
    align-items: center;
}

.request-box img {
    width: 50%;
}

.request-card span {
    font-size: 16px;
    font-weight: 500;
}

.request-card p {
    font-size: 36px;
    font-weight: 500;
    line-height: 38px;
}

.card-wrapper .table-responsive {
    white-space: nowrap;
    height: calc(100vh - 110px);
    overflow: auto;
    border: 1px solid #d9e7e2;
    border-radius: 16px;
    background: var(--white);
}

.card-wrapper .table-responsive thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.card-wrapper .table thead tr th {
    background: #f0f8f4;
    padding: 20px;
    font-weight: 600;
    color: var(--deep-teal);
}

.card-wrapper .table tbody tr td {
    padding: 20px;
    color: var(--deep-teal);
}

.card-wrapper .table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.card-wrapper .table tbody {
    height: 100%;
}

.card-body-empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-wrapper .empty-td {
    height: calc(100vh - 420px);
    padding: 0 !important;
}

.card-wrapper .empty-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.card-wrapper .empty-content img {
    width: 80px;
}

.card-wrapper .empty-content h4 {
    font-size: 20px;
    color: #20332d;
    font-weight: 500;
}

.card-wrapper .empty-content p {
    font-size: 14px;
    color: var(--blue-gray);
    margin: 0;
}

.active-request-header {
    display: flex;
    align-items: center;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    gap: 12px;
    margin: 24px 0px 0px;
}

.active-request-header .btn-header {
    font-size: 16px;
    flex: 0 0 auto;
}

.add-group-btn {
    width: 100%;
    border: 1px solid transparent;
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.group-status-tag {
    border-radius: 16px;
    padding: 3px 9px;
    color: white !important;
    min-width: 70px;
    text-align: center;
    font-size: 13px;
}

.request-tag {
    padding: 6px 12px;
    background: var(--danger-red);
    border-radius: 16px;
    color: var(--white);
}

.request-tag-filled {
    padding: 6px 12px;
    display: inline-block;
    /* background: #ff6868; */
    border-radius: 16px;
    /* color: #fffbea !important; */
    /* color: var(--white); */
    line-height: normal
}

.unassigned_tag {
    color: var(--danger-red);
}

.custom-line {
    width: 100%;
    height: 1px;
    background-color: #d8e9e4;
}

/* .underline-contact {border-bottom: 1px solid var(--deep-teal);display: inline-block;width: fit-content;} */
.underline-contact {
    border-bottom: 1px solid var(--deep-teal);
    color: var(--deep-teal);
    display: inline-block;
    width: fit-content;
    text-decoration: none;
    transition: opacity 0.2s;
}

.underline-contact:hover {
    opacity: 0.7;
}

.view-link {
    text-decoration: underline;
    color: var(--ink-blue);
}

.search-container .filter-select {
    width: 225px;
    height: 48px;
    color: #a7b9c5;
    border-radius: 100px;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box;
    outline: none;
    padding: 0 20px;
    font-size: 14px;
}

.search-container .filter-select select {
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    background: transparent;
}

.dropdown-btn {
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4f748b;
}

.dropdown-btn:hover {
    background: linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.1) 2.77%,
            rgba(125, 201, 95, 0.1) 100%);
}

.dashboard-content .breadcrumb .breadcrumb-item a {
    color: #4f748b;
}

.dashboard-content .breadcrumb .breadcrumb-item.active a {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* .personal-info-box {
    background: #f0f8f4;
    border-radius: 16px;
    height: 180px;
} */

/* .custom-dropdown.is-invalid{
    border:1px solid #dc3545;
} */

.date-capsule {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background: #fff;
}

.date-range-input {
    border: none;
    outline: none;
    width: 160px;
    font-size: 14px;
}

.personal-info-box {
    background: #f0f8f4;
    border-radius: 16px;
    height: 180px;
}

.personal-info-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.personal-info-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.personal-info-label {
    width: 25%;
    padding: 0 15px;
}

.personal-info-data {
    width: 75%;
    padding: 0 15px;
}

.personal-info-data span {
    font-size: 16px;
    color: var(--deep-teal);
    font-weight: 600;
}

.edit-icon {
    position: absolute;
    right: 30px;
    top: 30px;
}

.notification-dropdown {
    width: 500px;
    max-width: 95vw;
    height: 415px;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 9999;
}

.active-request-dropdown {
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    background: linear-gradient(var(--white), var(--white)) padding-box padding-box, linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box border-box;
    border-radius: 50px;
    padding: 6px 20px;
    height: 42px;
    display: none;
    align-items: center;
}

.notification-dropdown::-webkit-scrollbar {
    display: none;
}

.notification-dropdown h5 {
    font-size: 16px;
}

.notification-item .badge-new {
    background: #ff68681a;
    color: #e65e5e;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 4px;
    flex: 1;
}

.notification-item strong {
    color: #043959;
    font-weight: 500;
    font-size: 16px;
}

.notification-item .time {
    font-size: 14px;
    color: #04395980;
    flex-shrink: 0;
}

.notification-item p {
    font-size: 14px;
    color: #4f748b;
}

.chat-notification-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f8f4;
    overflow: hidden;
    flex: 0 0 36px;
}

.chat-notification-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-item {
    border-bottom: 1px solid #d8e9e4;
    padding: 0 0 15px;
    margin: 15px 0 0 0;
}

.sidebar-logout {
    border-top: 1px solid #d8e9e4;
}

.date-range-wrapper {
    position: relative;
}

.date-range-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

input[type="date"] {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.icon {
    margin-left: 6px;
}

.calendar-popup {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 999;
}

.calendar-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--deep-teal);
    margin: 0 0 16px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 5px;
}

.calendar-weekdays span {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 0;
    color: var(--deep-teal);
}

.calendar-days span {
    padding: 7px 0;
    cursor: pointer;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #4f748b !important;
}

.calendar-days span.muted {
    opacity: 0.35;
    pointer-events: none;
}

.calendar-header button {
    border: 0;
    background: none;
    font-size: 22px;
    color: var(--ink-blue);
}

.calendar-days .selected,
.calendar-days span:hover {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    color: white !important;
    border-radius: 50%;
}

.calendar-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    max-width: 400px;
    box-shadow: 0 4px 50px 0 #0000001f;
}

.date-header-box {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    padding: 16px;
    z-index: 1;
}

.date-header-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(100.74deg, #28a3d04d 2.77%, #7dc95f4d 100%);
    -webkit-mask:
        linear-gradient(var(--white) 0 0) content-box,
        linear-gradient(var(--white) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

div#monthYear {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-teal);
}

/* Make preview container relative */
#photoDropzone .dz-preview {
    position: relative;
    display: inline-block;
    margin: 10px;
}

/* Hide default "Remove file" text style */
#photoDropzone .dz-remove {
    font-size: 0 !important;
    text-decoration: none !important;
    position: absolute;
    top: 4px;
    right: 10px;
    z-index: 20;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #043959 !important;
}

/* Show cross icon */
#photoDropzone .dz-remove::before {
    content: "×";
    font-size: 18px;
    line-height: 1;
    color: var(--white);
}

.img-hide-btn {
    position: absolute;
    right: 10px;
}

.image-modal {
    border-radius: 20px;
    height: 120px;
}

.image-modal .preuploadImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.image-modal {
    border-radius: 20px;
}

.download-box {
    background:
        linear-gradient(0deg, #f0f8f4, #f0f8f4),
        linear-gradient(282.8deg, #74c56b00 -0.78%, #74c56b1a 103.47%);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
}


.clickable-row:hover {
    background-color: rgba(238, 12, 12, 0.02) !important;
}


.detail-link {
    color: #033b5a;
    /* Aapka primary color */
    text-decoration: none;
    display: block;
    transition: 0.2s;
}

.detail-link:hover {
    color: #305d78;
    /* Hover color */
    text-decoration: underline;
}

.paperclip-box {
    height: 45px;
    width: 45px;
    flex: 0 0 45px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    overflow: hidden;
}

.paperclip-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-box span {
    font-weight: 500;
    color: var(--deep-teal);
}

.download-box p {
    font-size: 14px;
    color: #5f6e6a;
    margin-top: 5px;
}

.download-box .btn-header {
    font-size: 16px;
    height: 44px;
}

.file-download {
    border-top: 1px solid #d8e9e4;
}

.chat-wrapper {
    display: flex;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #d8e9e4;
    height: calc(100vh - 191px);
    margin-bottom: 10px;
}

.chat-sidebar {
    width: 320px;
    background: #f0f8f4;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #d8e9e4;
}

.chat-sidebar h5 {
    color: var(--ink-blue);
    font-size: 24px;
    padding: 24px 16px;
    border-bottom: 1px solid #d8e9e4;
}

.date-wrapper-block {
    width: auto !important
}

.search-box {
    width: 100%;
    padding: 10px 14px;
    border-radius: 20px;
    border: 1px solid #cfe6df;
}

.chat-list {
    margin-top: 15px;
    overflow-y: auto;
    flex: 1;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 20px;
}

.chat-item.active {
    background: linear-gradient(90deg, #25a6c9, #7fd36b);
}

.chat-item.active .chat-text span,
.chat-item.active .chat-text p {
    color: var(--white);
}

.avatar-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 4px 0px #05C00E;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
}

.rounded-circle {
    border-radius: 50% !important;
    height: 30px;
    width: 30px;
    box-shadow: 0px 0px 4px 0px #05C00E;
    border: 1px solid #FFFFFF;
}

.avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.online-dot {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: background-color 0.3s ease;
}

.online-dot.online {
    background: #28a745;
}

.online-dot.offline {
    background: #adb5bd;
}

.online-indicator-header {
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    position: absolute;
    bottom: 2px;
    right: 2px;
    border: 2px solid #fff;
}

.chat-text {
    flex: 1;
}

.chat-text span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-blue);
}

.chat-text p {
    font-size: 14px;
    color: #4f748b;
}

.chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}
#active-chat-container{height:100%;}
.chat-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e5eef0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #FFF;
}

.chat-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.chat-header .status {
    font-size: 14px;
    color: #4f748b;
}

.chat-header .status-online::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #28a745;
    display: inline-block;
    margin-right: 5px;
}

.chat-header span {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink-blue);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    max-width: 75%;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-all;
}

.message img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0px 0px 4px 0px #05C00E;
    border: 1px solid #FFFFFF;
    border-radius: 50% !important;
}



.message.left .msg-content {
    align-items: flex-start;
}

.message.right .msg-content {
    align-items: flex-end;
}

.message p {
    margin: 0;
    padding: 12px 14px;
    font-size: 16px;
}

.msg-time {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    padding: 0 4px;
}

.message.right .msg-time {
    color: #04395980;
}

.message.left {
    flex-direction: row;
}

.message.left p {
    background: #ffffff;
    border: 1px solid #e9f5f0;
    border-radius: 18px 18px 18px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.message.right {
    flex-direction: row-reverse;
    margin-left: auto;
}

.message.right p {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    color: var(--white);
    border-radius: 18px 18px 0 18px;
    box-shadow: 0 4px 10px rgba(40, 163, 208, 0.15);
}

.chat-input {
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid #cfe6df;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto 20px 20px;
    background-color: #FFF;
}


.chat-input input {
    border: none;
	padding:0 13px;
    outline: none;
    height: 100%;
    width: 100%;
    color: var(--deep-teal);
}

.chat-input .send-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-input .send-btn img {
    width: 80%;
}

.chat-input .upload-btn {
    border: none;
    background: linear-gradient(100.74deg, #28a3d00d 2.77%, #7dc95f0d 100%);
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chat-notification {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.chat-notification p {
    font-size: 14px;
    color: #04395980;
    margin: 0 0 5px;
}

.chat-notification .unread-badge {
    background: var(--danger-red);
    color: var(--white);
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}
.chat-notification  .last-chat {
    font-size: 14px;
    color: #04395980;
}
.chat-item.active .chat-notification  .last-chat {color: var(--white);}
.chat-item-border {
    height: 1px;
    border-bottom: 1px solid #ccc;
}
.chat-sidebar .chat-item {
    margin: 0 0 5px 0;
    border-bottom:1px solid #ccc;
}
body.is-app .capture-model {
    z-index: 99999999 !important;
}

.back-btn {

    display: none;

    border-width: initial;

    border-style: none;

    border-color: initial;

    border-image: initial;

    background: none;

    padding: 0px;

}


/* .schedule-wrap .table-responsive {
    white-space: nowrap;
    height: calc(100vh - 350px);
    overflow: auto;
    border: 1px solid #d9e7e2;
    border-radius: 16px;
    background: var(--white);
} */

.schedule-wrap .table tbody tr td {
    /* .schedule-wrap .table thead tr th { */
    padding: 8px;
    height: 85px;
}


.flatpickr-clear-btn {
    margin-top: 10px;
    width: 100%;
    padding: 6px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    cursor: pointer;
    border-radius: 6px;
}

.schedule-wrap table thead a {
    background: #f4fbf8;
    color: var(--ink-blue);
    font-weight: 600;
    padding: 20px !important;
    width: 100%;
}

.schedule-wrap .table-responsive td.name {
    text-align: left;
    white-space: nowrap;
    color: #4f748b;
}

.schedule-wrap .table-responsive td.name img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    display: block;
    width: 100%;
    height: 100%;
}

.tag.prim {
    background: linear-gradient(100.74deg, #71c450 2.77%, #84d963 100%);
    color: var(--white);
}

.tag.sec {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #31b2e2 100%);
    color: var(--white);
}

.tag.draft {
    background: #6b7a80;
    color: var(--white);
}

.file-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1px solid #f0f8f4;
    border-radius: 14px;
    color: var(--white);
    box-shadow: 0px 1px 2px 0px #0a0d120d;
}

.file-left {
    display: flex;
    gap: 14px;
}

.file-info h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--deep-teal);
    word-break: break-all;
}

.file-info span {
    font-size: 14px;
    color: #5f6e6a;
}

.file-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img,
.more {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -12px;
    border: 1px solid #fff;
}

.avatars img:first-child {
    margin-left: 0;
}

.notify-right {
    position: absolute;
    right: 50px;
}

.more {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f0f9f1;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-btn {
    background: none;
    border: none;
    color: var(--white);
    /* font-size: 20px; */
}

/**==================Resource CSS==========================================**/
.doc-card {
    border: 1px solid #f0f8f4;
    border-radius: 12px;
    padding: 16px;
}

.doc-preview {
    background: #f2f9f3;
    border-radius: 8px;
    /* padding: 24px; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    overflow: hidden;
}

.doc-preview.file-image {
    padding: 0;
    position: relative;
}

.doc-preview.file-image img,
.doc-preview.file-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doc-preview.file-image .video-control img {
    width: 13px;
    height: 13px;
    object-fit: cover;
}

.print-btn,
.eye-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #033b5a;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.print-btn:hover {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    color: var(--white);
}

.eye-btn:hover {
    background: #f0f9f1;
}

.grid-list .tab-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-list .tab-btn.active img {
    filter: brightness(0) invert(1);
}

.document-model .search-bar {
    max-width: 100%;
}

.document-model .modal-dialog {
    max-width: 650px;
}

.dropzone-model .modal-dialog {
    max-width: 670px;
}

.service-request-img-container .image-modal {
    border-radius: 8px;
    overflow: hidden;
    background: #f7fbf9;
}

.service-request-img-container .image-modal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropzone {
    border: 2px dashed #8ccf7f;
    border-radius: 18px;
    background: #eef4f2;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dropzone .dz-message {
    margin: 0;
    width: 100%;
    text-align: center;
}

.dropzone .dz-preview .dz-image {
    width: 100%;
}

.dropzone .dz-preview .dz-image img {
    width: 100%;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.upload-title {
    font-size: 20px;
    font-weight: 600;
    color: #123d5d;
    margin-bottom: 8px;
}

.upload-subtitle {
    font-size: smaller;
    color: #4f6472;
}


.service-request-img-container {
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box;
    border-radius: 8px;
    padding: 16px;
}

.select-heading {
    font-size: 20px;
    color: var(--deep-teal);
    font-weight: 500;
}

.select-all {
    font-size: 18px;
    color: var(--deep-teal);
    font-weight: 500;
}

.video-control {
    position: absolute;
    width: 40px;
    height: 40px;
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background: linear-gradient(100.74deg, #28a3d080 2.77%, #7dc95f80 100%);
    border: none;
}

img.video-thumbnail {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

img.video-thumbnail:hover {
    opacity: 0.85;
}

.file-icon {
    width: 56px;
    height: 56px;
}

.file-icon img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.custom-checkbox,
.login-form-group .custom-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1.2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(100.74deg, #28a3d04d 2.77%, #7dc95f4d 100%);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
}

.custom-checkbox:checked,
.login-form-group .custom-checkbox:checked {
    background-image:
        linear-gradient(#28a3d0, #7dc95f),
        linear-gradient(100.74deg, #28a3d099 2.77%, #7dc95f99 100%);
    border: none;
}

.custom-checkbox:checked::after,
.login-form-group .custom-checkbox:checked::after {
    content: "\2713";
    /* better checkmark than ✔ */

    color: #ffffff;
    font-size: 16px;
    /* increase size */

    font-weight: bold;
    line-height: 1;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.document-model .chat-item:hover {
    background: linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.1) 2.77%,
            rgba(125, 201, 95, 0.1) 100%);
}

.modal-backdrop {
    --bs-backdrop-bg: #04395966;
}

.upload-content {
    border: 1px dashed #7dc95f;
    border-radius: 14px;
    background: linear-gradient(146.69deg,
            rgba(40, 163, 208, 0.08) 1.77%,
            rgba(125, 201, 95, 0.08) 98.69%);
    padding: 12px 24px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.document-profile img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 1px 16px;
}

.upload-content h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--deep-teal);
}

.cursor-pointer {
    cursor: pointer;
}

.upload-content p {
    font-size: 14px;
    color: var(--deep-teal);
}

.document-model .modal-content {
    padding: 40px 32px;
    border-radius: 24px;
}

.swal2-popup {
    padding: 40px 32px;
    border-radius: 24px;
}

.notify-wrap {
    max-width: 100%;
    background: #fffbea;
    border: 1px solid #d5d552;
    border-radius: 50px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0;
}

.notify-wrap .submit-btn {
    height: 44px;
}

.notify-wrap .submit-btn i {
    font-size: 14px;
}

.notify-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notify-icon {
    width: 36px;
    height: 36px;
    background: #d6cf3a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.notify-text {
    font-size: 14px;
    color: #2e2e2e;
}

.notify-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #777;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.require-link {
    font-size: 18px;
    color: var(--ink-blue);
    border-bottom: 1px solid var(--ink-blue);
}

.license-card {
    background:
        linear-gradient(0deg, #f0f8f4, #f0f8f4),
        linear-gradient(282.8deg,
            rgba(116, 197, 107, 0) -0.78%,
            rgba(116, 197, 107, 0.1) 103.47%);
    border-radius: 16px;
    border: none;
}

.license-card .notify-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.license-card .profile-box {
    border-radius: 10px;
    overflow: hidden;
}

.license-card .profile-box .previewImage {
    width: 100%;
    height: 135px;
    object-fit: cover;
    object-position: top;
}

.license-card .profile-box .pdf-icon {
    height: 120px;
}

.license-card .custom-progress {
    background: linear-gradient(179.94deg, #28a3d0 0%, #7dc95f 107.26%);
    width: 75%;
    border-radius: 10px;
}

.license-card .progress {
    background: var(--white);
    border-radius: 10px;
}

.license-card .custom-progress {
    background: linear-gradient(179.94deg, #28a3d0 0%, #7dc95f 107.26%);
    border-radius: 50px;
}

.license-card .progress {
    background: #eaf3ef;
    border-radius: 10px;
    height: 8px;
    background: var(--white);
}

.license-card h5 {
    font-size: 20px;
    color: var(--deep-teal);
    font-weight: 600;
    margin: 0 0 8px;
}

.license-card p {
    font-size: 16px;
    color: #4f748b;
    margin: 0;
}

.license-card span {
    font-size: 16px;
    color: var(--deep-teal);
    font-weight: 600;
}

.completeprofile-model .modal-dialog {
    max-width: 650px;
}

.editprofilemodal .modal-dialog {
    max-width: 900px;
}

.completeprofile-model .upload-content h4 {
    font-size: 14px;
    color: #4f748b;
    line-height: 20px;
}

.completeprofile-model .upload-content p {
    font-size: 12px;
    color: #8da5b4;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    max-width: 100%;
    font-family: inherit;
}

.dropdown-selected {
    height: 48px;
    padding: 0 20px;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--deep-teal);
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box;
}

.dropdown-list {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px #00000014;
    display: none;
    z-index: 10;
    list-style: none;
    margin: 0;
    z-index: 999;
}

.dropdown-list .item {
    padding: 10px 18px;

    /* padding: 5px 18px; */
    font-size: 16px;
    cursor: pointer;
    color: var(--deep-teal);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-list .item:hover {
    background: #f0f9f3;
}

.dropdown-list .uploaded span {
    font-size: 14px;
}

.dropdown-list .item.active {
    background: #eaf7f1;
    font-weight: 500;
}

.dropdown-list .custom-checkbox {
    width: 20px;
    height: 20px;
}

.request-count {
    width: 20px;
    height: 20px;
    background: var(--danger-red);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* FOOTER CSS */

.footer-bottom-link ul {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.footer-bottom-link ul li a {
    color: var(--blue-gray);
    text-decoration: none;
}

.footer-bottom-link ul li a:hover {
    color: var(--ink-blue);
}

.subscribe-section {
    position: relative;
}

.subscribe-section:after {
    background: var(--white);
    position: absolute;
    height: 50%;
    width: 100%;
    content: "";
    top: 0;
    z-index: 1;
}

.subscribe-bg {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 56px 80px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-bottom: 56px;
    box-shadow: 0px 20px 100px 0px #aaebd4b2;
}

.subscribe-heading h2 {
    font-weight: bold;
    color: var(--white);
    font-size: 40px;
    margin: 0 0 10px;
}

.subscribe-heading p {
    font-size: 18px;
    color: var(--white);
    font-weight: 300;
}

.subscribe-form-group form .form-group {
    background: var(--white);
    border-radius: 100px;
    padding: 5px;
    max-width: 372px;
    margin: 0 auto;
}

.subscribe-form-group form .form-group input[type="text"] {
    padding: 0 30px;
    height: 48px;
    border: none;
    outline: inherit;
    font-size: 18px;
    font-weight: 300;
    color: rgba(4, 57, 89, 0.5);
}

.at-icon {
    position: absolute;
    left: 20px;
    top: 15px;
}

.subscribe-form-group form .form-group input[type="text"] {
    padding: 0 130px 0 50px;
    height: 48px;
    border: none;
    outline: inherit;
    font-size: 18px;
    font-weight: 300;
    color: rgba(4, 57, 89, 0.5);
    width: 100%;
    background-color: transparent;
}

.subscribe-btn {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    position: absolute;
    right: 5px;
    border-radius: 100px;
    bottom: 4px;
    top: 4px;
    width: 130px;
    font-size: 18px;
    font-weight: 500;
}

.subscribe-pattern-left {
    position: absolute;
    left: -84px;
    bottom: -80px;
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.06;
}

.subscribe-pattern-left img {
    filter: brightness(0) invert(1);
}

.subscribe-pattern-right {
    position: absolute;
    right: -84px;
    top: -80px;
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(175deg);
    opacity: 0.06;
}

.subscribe-pattern-right img {
    filter: brightness(0) invert(1);
}

.footer-section {
    position: relative;
    background:
        linear-gradient(0deg, #f0f8f4, #f0f8f4),
        linear-gradient(288.7deg,
            rgba(116, 197, 107, 0.1) 0.48%,
            rgba(116, 197, 107, 0) 102.12%);
    padding-top: 100px;
}

.quick-link-block {
    /* padding: 0px 0 24px; */
    margin-bottom: 0px;
    position: relative;
}

/*.quick-link-block:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        100.74deg,
        rgba(40, 163, 208, 0.3) 2.77%,
        rgba(125, 201, 95, 0.3) 100%
    );
}*/
.footer-heading {
    font-weight: 500;
    font-size: 20px;
    color: var(--ink-blue);
    font-family: var(--body);
    margin: 0 0 20px;
}

.quick-link-block ul {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.quick-link-block ul li a {
    color: var(--deep-teal);
    text-decoration: none;
    font-size: 18px;
}

.quick-link-block ul li a:hover {
    color: var(--blue-gray);
}

.social-icon-link ul {
    display: flex;
    gap: 10px;
    justify-content: end;
}

.social-icon-link ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    height: 42px;
    width: 42px;
    border-radius: 100px;
}

.social-icon-link ul li a img {
    transition: transform 0.3s ease;
}

.social-icon-link ul li a:hover img {
    transform: scale(1.15);
    animation: iconZoom 0.4s ease;
}

.footer-contact-block {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-contact-icon {
    background: linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.1) 2.77%,
            rgba(125, 201, 95, 0.1) 100%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    flex: 0 0 48px;
    border-radius: 8px;
    justify-content: center;
}

.conatct-label {
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    width: 100%;
    margin: 0 0 3px;
}

.footer-contact-details p {
    color: var(--deep-teal);
    font-size: 16px;
    font-weight: 500;
}

.footer-contact-details p a {
    color: var(--ink-blue);
}

.footer-contact-details p a:hover {
    color: var(--green-400);
}

.footer-contact-column {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-navigation-section {
    padding-bottom: 60px;
}

.copyright-section {
    padding: 25px 0;
    position: relative;
}

.copyright-section:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.3) 2.77%,
            rgba(125, 201, 95, 0.3) 100%);
}

.footer-bottom-link ul {
    display: flex;
    justify-content: end;
    gap: 32px;
}

.footer-bottom-link ul li a {
    color: var(--blue-gray);
    text-decoration: none;
}

.footer-bottom-link ul li a:hover {
    color: var(--ink-blue);
}

.footer-contact {
    margin-top: 25px;
    padding-top: 25px;
    position: relative;
}

.footer-contact:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.3) 2.77%,
            rgba(125, 201, 95, 0.3) 100%);
}

.need-help a {
    color: var(--ink-blue);
    font-size: 16px;
}

.login-form-heading h2,
.swal2-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--deep-teal);
}

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

    50% {
        transform: scale(1.2);
    }

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

/**==================Add New Client modal css===========================================**/
.after-hours-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.after-text {
    color: #4f748b;
}

/* .toggle-switch{position:relative;width:36px;height:20px} */
/* .toggle-switch input{display:none} */
/* .slider{position:absolute;cursor:pointer;inset:0;background-color:#d3d3d3;border-radius:50px;transition:.3s} */
/* .slider::before{ content:""; position:absolute; height:16px; width:16px; left:3px; top:2px; background-color:#fff; border-radius:50%; transition:.3s; -webkit-transition:.3s; -moz-transition:.3s; -ms-transition:.3s; -o-transition:.3s; } */
/* .toggle-switch input:checked + .slider{background:linear-gradient(100.74deg, #28A3D0 2.77%, #7DC95F 100%);} */
/* .toggle-switch input:checked + .slider::before{ transform:translateX(16px);} */

.toggle-switch {
    position: relative;
    width: 36px;
    height: 20px;
    display: inline-block;
    /* Table cell mein alignment ke liye */
}

/* Input ko hide karo par click area barkarar rakho */
.toggle-switch input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    /* Slider ke upar rakho taaki click input par ho */
    cursor: pointer;
    margin: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #d3d3d3;
    border-radius: 50px;
    transition: 0.3s;
}

.slider::before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    top: 2px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

/* Checked state colors */
.toggle-switch input:checked+.slider {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
}

.toggle-switch input:checked+.slider::before {
    transform: translateX(14px);
    /* Width ke hisaab se adjust kiya */
}

/*============ SCHEDULE PAGE CSS START =========== */
/* .schedule-wrap .table-responsive { white-space: nowrap;overflow: auto;border: 1px solid #d9e7e2;border-radius: 16px;background: var(--white);} */
/* .schedule-wrap .table tbody tr td,.schedule-wrap  .table thead tr th{padding:20px;} */
/* .schedule-wrap .table-responsive th{background:#f4fbf8;color:var(--ink-blue);font-weight:600;padding:20px;border-right:1px solid #E5ECEB;} */
/* .schedule-table tbody td{border-right:1px solid #E5ECEB;border-bottom:0} */


/* .slot {
    position: relative;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    margin:2px;
    font-weight: 500;
    cursor: pointer;
    color: var(--ink-blue);
    width: 100%;
}
.slot p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
    margin:8px 0 0 0;
}
.schedule-calander{
    height: calc(100vh - 150px);
    overflow: auto;
}
.slot .dropdown{position:absolute;top:0;right:5px}
.slot.blue{background:#28A3D01A}
.slot.green{background:#28D07C1A}
.slot.yellow{background:#D0CA281A}
.chat-items-container{max-height:550px;overflow-y:auto}
.schedule-card{background:linear-gradient(100.74deg,#28a3d01a 2.77%,#7dc95f1a 100%);padding:24px;border-radius:12px;margin:24px 0}
.schedule-row{display:flex;align-items:center;gap:10px;margin-bottom:6px}
.schedule-time{font-size:18px;color:var(--ink-blue)}


.date-capsule{display:inline-flex;align-items:center;padding:8px 24px;border-radius:50px;background:#fff;border:1px solid transparent;background-image:linear-gradient(white,white),linear-gradient(to right,#add8e6,#90ee90);background-origin:border-box;background-clip:padding-box,border-box;font-family:sans-serif;color:#1a4560;box-shadow:0 2px 5px #0000000d}
.date-text{font-size:18px;font-weight:500;margin-right:12px;color:var(--deep-teal);}

.share-document-model .modal-dialog{max-width:780px;} 
 */

.share-document-model .modal-dialog {
    max-width: 780px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    transform: scale(1.5);
    cursor: pointer;
}

.user-table-wrapper {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: #fff;
    overflow: auto;
}

.user-table-wrapper table {
    width: 100%;
}

.user-table-wrapper thead th {
    position: sticky;
    top: 0;
    background: #f0f8f4;
    color: var(--deep-teal);
    z-index: 10;
}

.user-table-wrapper th,
.user-table-wrapper td {
    padding: 18px 20px;
    text-align: center;
    white-space: nowrap;
}

.user-table-wrapper tbody tr {
    border-bottom: 1px solid #dfede6;
}

.user-table-wrapper tbody tr:hover {
    background: #f0f8f480;
}

.user-table-container {
    max-height: 600px;
    overflow: auto;
    padding-right: 10px;
}

.user-check {
    width: 20px;
    height: 20px;
    border: 1px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(100.74deg, #28a3d04d 2.77%, #7dc95f4d 100%);
    appearance: none;
    position: relative;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-check:checked {
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
}

.user-check:checked::after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* .dropdown-toggle .threedots {height: 30px;width: 10px;} */
.schedule-repeat span {
    font-weight: 600;
    color: #1f3d3a;
}

/* Professional SweetAlert Button Styling */
.swal2-styled.swal-pro-btn {
    border-radius: 50px !important;
    /* Makes them pills like your UI */
    padding: 12px 30px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    min-width: 140px;
    border: none !important;
}

.swal2-styled.swal-pro-btn-cancel {
    border-radius: 50px !important;
    padding: 10px 25px !important;
    font-weight: 500 !important;
    background: transparent !important;
    color: #6e7881 !important;
    border: 1px solid #ddd !important;
}

/* Hover effects for a premium feel */
.swal2-styled.swal-pro-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* Latest Schedule Style 13 March 2026 */
.schedule-wrap .table-responsive {
    white-space: nowrap;
    overflow: auto;
    border: 1px solid #d9e7e2;
    border-radius: 16px;
    background: var(--white);
    max-height: calc(100vh - 300px);
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.schedule-wrap .table-responsive th {
    background: #f4fbf8;
    color: var(--ink-blue);
    font-weight: 600;
    padding: 20px;
    border-right: 1px solid #e3e3e3;
}

.schedule-wrap .table-responsive th.active {
    background: linear-gradient(99deg, #28a3d0 -0.79%, #7dc95f 110.93%);
    color: var(--white);
}

.schedule-table tbody td {
    border-right: 1px solid #e5eceb;
    border-bottom: 0;
}


.schedule-wrap .table-responsive thead {
    position: sticky;
    top: 0;
    z-index: 99;
}

.slot {
    position: relative;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: var(--ink-blue);
}

.slot .dropdown {
    position: absolute;
    top: 0;
    right: 10px;
}

.slot.blue {
    background: #28a3d04d;
}

.slot.green {
    background: #28d07c4d;
}

.slot.yellow {
    background: #d0ca281a;
}

.slot.grey {
    background: #9aa0a64d;
}

.slot.red {
    background: #ff68684d;
}

.draft-shifts-row .sticky-col,
.draft-sticky-col {
    background: #f7fbf9;
}

.slot.draft-slot {
    background: #eef3f5;
    border: 1px dashed #9fb0ba;
    color: #355365;
}

.draft-slot-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 2px 7px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #b9c8ce;
    color: #355365;
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
}


/* Time off  */
.timeOffDisplayTime {
    font-size: 10px;
}

.scheduledays-container .day {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(100.74deg, #28a3d04d 2.77%, #7dc95f4d 100%) border-box;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #4f748b;
}

.scheduledays-container .day.active {
    background: linear-gradient(99deg, #28a3d0 -0.79%, #7dc95f 110.93%);
    color: var(--white);
}

.scheduledays-container {
    background: #f7fbf9;
    padding: 16px;
    border-radius: 16px;
    gap: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px 0 0;
}

.shift-button {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: var(--ink-blue);
    padding: 0;
}

.slot .action-dropdown {
    position: absolute;
    top: 10px;
    right: 10px;
}

.shift-dropdown {
    position: relative;
}

.shift-dropdown .dropdown-menu {
    display: none;
}

.shift-dropdown .dropdown-menu.show {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 200px;
    position: absolute;
    z-index: 1050;
    left: 50% !important;
    top: 50% !important;
    transform: translate(60%, -100%) !important;
}

.schedule-table tbody tr:first-child td .shift-dropdown .dropdown-menu.show {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 200px;
    position: absolute;
    z-index: 1050;
    left: 50% !important;
    top: 100% !important;
    transform: translate(60%, 0%) !important;
}

.custom-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #04395966;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.custom-backdrop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

td.active-cell {
    position: relative;
    z-index: 1055;
    box-shadow: 0 0 0 2px #3c6e71;
}

td.active-cell .slot {
    position: relative;
    z-index: 1056;
}

/* .dropdown-toggle .threedots {
    width: 3px;
    height: 20px;
} */
.week-name {
    font-size: 14px;
    color: #4f748b;
}

.date-capsule input {
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--deep-teal);
    outline: none;
    width: 100%;
}

.cell-slot:hover {
    background-color: #f0f7f4;
    /* Light mint green */
    position: relative;
}

/* .cell-slot:hover::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00bfa5;
    font-size: 20px;
} */

.calendar-icon {
    cursor: pointer;
}

.applyBtn {
    background: linear-gradient(90deg, #2fa4dd, #63c36b);
    color: var(--white);
    border: 0;
}

.slot .avatars img,
.slot .avatars .more {
    width: 32px;
    height: 32px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background: linear-gradient(99deg, #28a3d0 -0.79%, #7dc95f 110.93%);
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    background: linear-gradient(99deg, #28a3d0 -0.79%, #7dc95f 110.93%);
    color: var(--white);
}

.schedule-card {
    background: linear-gradient(100.74deg, #28a3d01a 2.77%, #7dc95f1a 100%);
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
}

.schedule-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.schedule-time {
    font-size: 18px;
    color: var(--ink-blue);
}

/* .schedule-table {
    
    border-collapse: separate; // Required for some browsers to keep sticky borders 
    border-spacing: 0;
} */

.sticky-col {
    position: sticky;
    left: 0;
    /* Sticks to the left edge of the container */
    z-index: 10;
    /* Keeps it above the scrolling slots */
    background-color: #ffffff;
    /* Must have a solid background */
    border-right: 2px solid #eef0f7;
    /* Optional: adds a visual separator */
    /* Optional: adds a visual separator */
}

/* Ensure the header also stays sticky */
thead th.sticky-col {
    z-index: 11;
    /* Higher than tbody cells */
}

/* If you have a specific wrapper with overflow */
.table-responsive {
    position: relative;
    overflow-x: auto;
}

.slot .action-dropdown {
    position: absolute;
    top: 10px;
    right: 10px
}

.dropdown-toggle .timeoff {
    width: 16px;
    height: 16px;
}

/**==================Group header style ===========================================**/
/* .nav-custom-dropdown label{color:#033B5A80;display:block;font-size:12px}
.nav-custom-dropdown select{border:0;outline:0;appearance:none;font-size:16px;color:var(--deep-teal)}
.nav-custom-dropdown{border:1px solid var(--green-400);display:inline-block;padding:10px 25px;border-radius:100px;text-decoration:none;background:transparent;color:var(--deep-teal);transition:all .8s;position:relative;overflow:hidden;z-index:1;font-size:18px;height:56px;display:flex;align-items:center;justify-content:center;margin-right:8px;}
.nav-custom-dropdown .form-select { padding: 0;  box-shadow: inherit;  padding-right: 45px;  background-position: right;} */

/**==================Clinician and Client Detail pages ===========================================**/

.facility-bg-container {
    border-block: 1px solid #d8e9e4;
    padding-block: 24px;
    margin-block: 24px;
}

.facility-info-box .facility-row {
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px;
}

.facility-info-box {
    max-width: 700px;
    flex: 1;
}

.facility-info-box .facility-row p {
    color: #4f748b;
    flex: 1;
    margin: 0;
}

.facility-info-box .facility-row span {
    color: var(--deep-teal);
    flex: 1;
    font-weight: 500;
}

.facility-info-box .time-slot {
    display: flex;
    gap: 10px;
    align-items: center;
}

.facility-info-box .facility-row .to-text {
    flex: 0;
    font-weight: 400;
}

.facility-info-box.facility-bg {
    background: #f0f8f4;
    padding: 24px;
    border-radius: 12px;
    max-width: 100%;
    height: 100%;
}

.cpr-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.cpr-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-teal);
}

.cpr-bottom {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.cpr-info p {
    margin: 0;
    font-size: 14px;
    color: var(--deep-teal);
}

.cpr-info span {
    display: block;
    margin-top: 4px;
    font-weight: 600;
    color: var(--deep-teal);
}

.cpr-icon img {
    max-width: 100px;
    height: 60px;
    border-radius: 6px;
}

.patient-request-card {
    border: 1px solid #d8e9e4;
    border-radius: 16px;
    overflow: hidden;
    height: 333px;
}

.patient-request-card .request-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 8px;
}

.patient-request-card .facility-info-box .facility-row {
    flex-direction: row;
    margin: 0 0 5px;
}

.request-header {
    padding: 20px;
    border-bottom: 1px solid #d8e9e4;
    background: #f0f8f4;
}

.request-card-body {
    padding: 24px;
}

/* .request-card-body,.request-header {padding:15px;} */
/* .request-time {font-size: 14px;margin: 5px 0 0 0;} */
.request-time {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: var(--deep-teal);
}

.request-time-date {
    padding: 0 15px 0 0;
    position: relative;
}

.request-time-value {
    padding: 0 0 0 15px;
}

.request-time-date::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #d8e9e4cc;
}

.request-time-icon {
    margin: 0 10px 0 0;
}

.request-header button img {
    width: 24px;
}

/* .request-tag {font-size: 12px;} */
/* .facility-info-box .facility-row p,.facility-info-box .facility-row span{font-size:14px;} */
.date-range-input {
    border: none;
    outline: none;
    width: 160px;
    font-size: 16px;
    font-weight: 500;
    color: var(--deep-teal);
}

/**
 * Initialize image preview This will work for any image in across the project
 */

.image-preview-overlay {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    /* cursor: pointer; */
}

.preview-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-preview-overlay.active .preview-content {
    transform: scale(1);
}

.close-preview {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    /* font-weight: bold; */
    cursor: pointer;
    z-index: 10000;
}

img.previewImage {
    cursor: pointer;
}

/* edit clinician profile modal */
.upload-img-box img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px;
}

.upload-buttons {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(100.74deg, #28a3d0bf 2.77%, #7dc95fbf 100%) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.upload-buttons-row {
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    gap: 5px
}

.delete-btn {
    position: relative;
    border: 1px solid var(--danger-red);
    color: var(--danger-red);
    padding: 10px 25px;
    border-radius: 100px;
    background: transparent;
    overflow: hidden;
    transition: color .3s ease, transform .3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.delete-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: var(--danger-red);
    transition: all .4s ease;
    transform: translateX(-50%);
    z-index: -1
}

.delete-btn:hover::before {
    width: 110%
}

.delete-btn:hover {
    color: var(--white)
}

.delete-btn {
    position: relative;
    border: 1px solid var(--danger-red);
    color: var(--danger-red);
    padding: 10px 25px;
    border-radius: 100px;
    background: transparent;
    overflow: hidden;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delete-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: var(--danger-red);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    z-index: -1;
}

.delete-btn:hover::before {
    width: 110%;
}

.delete-btn:hover {
    color: var(--white);
}

/* Colorful rows for  Pending delete and Urgent requests in admin portal  */
.row-pending-delete td {
    background-color: #e5e53a33 !important;
}

.row-urgent-request td {
    background-color: #ff68681a !important;
}

.delete-record-btn {
    outline: none;
    border: none;
    background: transparent;
}

.delete-record-btn img {
    width: 20px;
}

.not-available {
    background: #ff68681a;
    color: #e65e5e;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 16px;
    /* font-weight:500 */
}

.facility-info-image {
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 1px 16px;
    flex: 0 0 300px;
    overflow: hidden;
}

.facility-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modified_slot {
    color: var(--deep-teal);
    font-size: 12px;
}

/**==================Custom styles for Header group selection===========================================**/

.nav-custom-dropdown {
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    background: linear-gradient(var(--white), var(--white)) padding-box padding-box, linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box border-box;
    border-radius: 50px;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    justify-content: space-between;
}

.nav-custom-dropdown.dropdown-wrapper {
    cursor: pointer;
}



.nav-custom-dropdown .dropdown-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.nav-custom-dropdown label {
    font-size: 12px;
    color: #033b5a80;
}

.nav-custom-dropdown .dropdown-select {
    font-size: 16px;
    color: var(--deep-teal);
}




.nav-custom-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;

    padding: 5px 0px;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}

.dropdown-wrapper.active .dropdown-menu {
    display: block;
}

.nav-custom-dropdown .dropdown-menu li {
    padding: 12px 15px;
    cursor: pointer;
    color: var(--deep-teal);
}

.nav-custom-dropdown .dropdown-menu li:hover {
    background: linear-gradient(100.74deg,
            rgba(40, 163, 208, 0.1) 2.77%,
            rgba(125, 201, 95, 0.1) 100%);
}

/* 
.dropzone.dz-clickable.dz-started {
    display: flex;
    justify-content: space-between;
}
.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100px;
    position: relative;
    display: block;
    z-index: 10;
}

#filePreview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} */

.Cancellation-model-box {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.Cancellation-model-box label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-blue);
    font-weight: 500;
}

.Cancellation-model-box textarea {
    width: 100%;
    margin: 0;
}

/*======= MOBILE NAV MENU CSS ===========*/
.mobile-nav-menu {
    box-shadow: 0 0 40px 0 #D8D8D8;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
    padding: 16px;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 999;
    background: #fff;
    display: none
}

.mobile-nav-menu ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #5E7D8F;
    gap: 5px;
    font-size: 13px
}

.mobile-nav-menu ul {
    display: flex;
    /* justify-content: space-between; */
    justify-content: space-around;
    align-items: center
}

.mobile-nav-menu ul li a.active span {
    display: block;
    background: linear-gradient(106.07deg, #28A3D0 -5.82%, #7DC95F 118.92%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent
}

.mobile-nav-menu ul li a svg {
    stroke: #5E7D8F
}

.mobile-nav-menu ul li a.active svg path {
    stroke: url(#menuGradient) !important
}



.mobile-nav-logo img {
    width: 100%;
    height: 100%;
}


.dropzone.dz-clickable {
    display: flex;
    justify-content: start;
    gap: 10px;
    row-gap: 20px;
    flex-wrap: wrap;
}

#photoDropzone .dz-preview {
    flex: 0 0 23%;
    margin: 0;
}

.file-card:hover {
    background: linear-gradient(100.74deg, rgba(40, 163, 208, 0.1) 2.77%, rgba(125, 201, 95, 0.1) 100%);
}

.play-overlay-mini {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    pointer-events: none;
    /* Let clicks pass to the parent */
}

.video-container video {
    outline: none;
    object-fit: contain;
}

/* Make the grid card slightly taller if needed for the player */
.doc-card {
    transition: transform 0.2s;
}

.doc-card:hover {
    transform: translateY(-5px);
}

.file-icon video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.video-box,
.file-image-box {
    width: 56px;
    height: 56px;
}

.video-box video,
.file-image-box img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.video-box .video-control {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* .video-box .video-control img {
    width: 80%;
} */

.mobile-nav-logo {
    flex-shrink: 0;
    display: none;
}

.mobile-nav-logo img {
    width: 100%;
    height: 100%;
}

.mobile-togglrsearch {
    height: 48px;
    width: 100%;
    max-width: 95%;
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 16px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center center;
    opacity: 0;
    pointer-events: none;
    gap: 8px;
    border-radius: 100px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box;
    padding: 0px 10px 0px 20px;
    transition: transform 0.35s, opacity 0.25s;
}

.mobile-togglrsearch input {
    width: 100%;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    outline: none;
}

.mobile-togglrsearch button {
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    background: none;
}

.user-mobile-drop {
    display: none;
}

.mobile-nav-menu ul li a img {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    box-shadow: 0px 0px 2.67px 0px #05C00E;
    border: 0.67px solid #FFFFFF;
}

.dashboard-content nav.navbar .nav-link,
.dashboard-content a.nav-link {
    box-shadow: inherit;
    outline: inherit;
}

.remove-file-btn {
    position: absolute;
    top: -15px;
    right: 0;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
}

/*======= MOBILE PROFILE CSS ========= */
.mobile-profile .rounded-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.profile-top {
    border-bottom: 1px solid #CFEBDB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 20px;
    margin: 0 0 20px;
}



.upload-file {
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%) border-box;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-blue);
    padding: 10px 20px;
    width: max-content;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-file:hover {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    color: var(--white);
}

.upload-file:hover img {
    filter: brightness(0) invert(1);
}

.file-upload-badge {
    background: #F2F2F2;
    border-radius: 100px;
    padding: 4px 15px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    gap: 6px;
    padding-left: 33px;
    position: relative;
    border: 1px solid transparent;
}

.file-upload-badge img {
    position: absolute;
    left: 6px;
}

.file-upload-badge.uploaded {
    background: rgb(117 197 106 / 15%);
    border-color: rgb(117 197 106 / 30%);
    color: rgb(117 197 106 / 100%);
}

span.file-upload-badge.not-uploaded {
    color: #ff6868;
    background: rgb(255 104 104 / 15%);
    border-color: rgb(255 104 104 / 30%);
}

.license-table-grid .button-login.btn-header {
    padding: 10px;
    height: 30px;
    font-size: 14px;
}

.input-label {
    position: absolute;
    background: var(--white);
    font-size: 12px;
    color: #4f748b;
    line-height: normal;
    padding: 0 5px;
    left: 16px;
    top: -7px;
    z-index: 99;
}

.addmore-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.date-range-box .search-bar {
    max-width: 250px;
}

/* Pagination  */
.pagination .page-item .page-link {
    font-size: 16px;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--deep-teal);
}

.pagination {
    display: flex;
    gap: 5px;
    align-items: center;
}

.page-item.active .page-link {
    color: var(--white);
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
}

@supports (-webkit-touch-callout: none) {

    #install-prompt,
    .box-icon {
        display: none !important;
    }
}

/* Android par install hone ke baad hide karne ke liye generic class */
.pwa-hidden {
    display: none !important;
}

.mobile-back-btn {
    background: none;
    border: none;
    padding: 0;
    display: none;
    border: 1px solid var(--green-400);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: none;
}

.w-max-content {
    width: max-content;
}
.notification-link {
    background: linear-gradient(100.74deg, #28A3D0 2.77%, #7DC95F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin: 5px 0 0 0;
    font-size: 12px;
}

/**==================Media Queries section copy from html folder===========================================**/


@media(max-width:767px) {

    .license-table-grid table thead {
        display: none;
    }

    .license-table-grid table {
        border-collapse: separate;
        border-spacing: 0 20px;
    }

    .card-wrapper .table-responsive.license-table-grid {
        border: none;
    }

    .card-wrapper .license-table-grid table tbody tr td {
        display: block;
        padding: 15px 10px;
        border: 1px solid #d9e7e2;
    }

    .login-form-group .table-card-date.form-group input {
        height: 35px;
        width: 150px;
        font-size: 13px;
        padding: 0 15px;
    }

    .table-card-label {
        width: 100px;
    }

    .card-wrapper .license-table-grid table tbody tr td:first-child {
        border-radius: 15px 15px 0 0;
    }

    .card-wrapper .license-table-grid table tbody tr td:last-child {
        border-radius: 0px 0px 15px 15px;
    }

    .upload-file {
        font-size: 12px;
        padding: 5px 7px;
        gap: 6px;
    }

    .card-wrapper .license-table-grid table tbody tr td:last-child {
        border-bottom: 1px solid #d9e7e2 !important;
    }

}


@media (max-width: 320px) {

    #install-prompt {

        display: block !important;
        z-index: 1000;
    }

    #install-button img {
        width: 100px !important;

    }


    .patient-request-card .facility-info-box .facility-row p,
    .patient-request-card .facility-info-box .facility-row span {
        font-size: 12px;
    }

    .request-time {
        font-size: 12px;
    }

    #photoDropzone .dz-preview {
        flex: 0 0 46% !important;
        margin: 0;
    }




}

@media (max-width: 375px) {}

@media (max-width: 767px) {
    #install-prompt {

        display: block !important;
        z-index: 1000;
    }

    #install-button img {
        width: 100px !important;

    }

    :root {
        --container-padding: 0 15px;
        --nav-size: 14px;
        --body-fs: 14px;
    }

    /*HEADER CSS*/

    .header-section .navbar-brand {
        max-width: 140px;
    }

    .header-section .navbar {
        padding: 5px 0;
    }

    .header-section .navbar .navbar-nav li.nav-item a {
        padding: 10px 0px;
    }

    /*HEADER CSS CLOSED*/

    .section-top-heading h2,
    .subscribe-heading h2 {
        font-size: 28px;
    }

    .hero-provider-content h1 {
        font-size: 24px;
    }

    .hero-provider-content p {
        font-size: 14px;
    }

    .expert-care span {
        font-size: 12px;
    }

    .section-column-gap {
        gap: 40px;
        padding: 40px 0;
    }

    .hero-stat-number {
        height: 100%;
        padding: 0 5px;
    }

    .hero-stat-number h2 {
        font-size: 24px;
        margin: 0;
    }

    .hero-stat-number p {
        font-size: 12px;
    }

    .btn-header,
    .button-regular,
    .delete-btn {
        height: 40px;
        font-size: 12px;
        padding: 10px 20px;
    }

    .service-container {
        padding: 30px 20px;
    }

    .review-content p {
        font-size: 14px;
    }

    .review-box,
    .subscribe-bg {
        padding: 24px;
    }

    .accordion-header.accordion-button {
        font-size: 15px;
    }

    .subscribe-heading p,
    .footer-contact-details p {
        font-size: 14px;
    }

    .subscribe-btn {
        font-size: 14px;
        width: 100px;
    }

    .subscribe-form-group form .form-group input[type="text"] {
        padding: 0 105px 0 40px;
        font-size: 14px;
        height: 38px;
    }



    .nav-custom-dropdown .dropdown-select {
        font-size: 14px;
    }


    .dropdown-toggle.notification,
    .dropdown-toggle img {
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        padding: 0
    }

    .dropdown-toggle.notification,
    .dropdown-toggle img {
        width: 40px;
        height: 40px;
    }

    .dropdown-wrapper.active .dropdown-menu {
        top: calc(100% + 30px);
    }

    .subscribe-btn {
        font-size: 14px;
        width: 100px;
    }

    .at-icon {
        left: 15px;
        top: 12px;
    }

    .at-icon img {
        width: 20px;
    }

    .quick-link-block ul {
        gap: 10px 15px;
    }

    .footer-bottom-link ul {
        justify-content: center;
    }

    .about_counter {
        padding: 20px;
    }

    .login-modal .modal-content {

        padding: 16px;

    }

    .swiper-pagination-custom {
        width: 95px;
    }

    .swiper-pagination-custom .swiper-button-prev,
    .swiper-pagination-custom .swiper-button-next {
        height: 40px;
        width: 40px;
    }

    .swiper-pagination-custom .swiper-button-prev:after,
    .swiper-pagination-custom .swiper-button-next:after {
        font-size: 16px;
    }

    .chose-card:hover {
        transform: translateY(0px);
    }

    .hero-section {
        height: auto;
    }

    .facility-info-image {
        flex: 0 0 250px;
    }

    /* ============= CONTACT PAGE CSS ============ */
    .contact-form-sec .login-form-group {
        padding: 20px;
    }

    .contact-form-sec .contact-box figure {
        width: 50px;
        height: 50px;
    }

    .contact-form-sec .contact-box {
        padding: 30px;
    }

    .notify-right {
        right: 10px;
        background: #fff;
        border-radius: 5px;
        padding: 5px;
    }

    .dropzone.dz-clickable {
        padding: 10px;
    }

    #photoDropzone .dz-preview {
        flex: 0 0 48%;
        margin: 0;
    }

    .mobile-nav-menu {
        display: block;
    }

    .active-request-header {
        gap: 5px;
        flex-wrap: wrap;
    }

    .mobile-nav-menu ul li a svg {
        width: 18px;
        height: 24px;
    }

    .dashboard-content {
        padding-bottom: 100px;
    }

    .search-bar.nav-searchbar {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        margin-left: auto;
        flex-shrink: 0;
    }

    .search-bar.nav-searchbar input {
        display: none;
    }



    .mobile-nav-logo {
        display: block;
    }

    .mobile-togglrsearch.active {
        transform: translateX(-50%) scaleX(1);
        opacity: 1;
        pointer-events: auto;
    }


    .notify-wrap .submit-btn {
        height: 32px;
        width: 32px !important;
        border-radius: 50%;
        padding: 0px;
        flex-shrink: 0;
    }

    .notify-wrap .submit-btn .redirect {
        display: none;
    }

    .user-mobile-drop {
        display: flex;
        align-items: center;
        padding-bottom: 16px;
        margin-bottom: 16px;
        gap: 12px;
        border-bottom: 1px solid rgb(207, 235, 219);
    }

    .user-mobile-drop img {
        width: 48px;
        height: 48px;
        object-fit: cover;
        border-radius: 50%;
    }

    .request-card {
        padding: 10px;
    }

    .back-btn {
        display: block;
    }

    .dropdown-box label {
        display: none;
    }

    .active-request-dropdown {
        display: flex;
    }

    .notify-wrap {
        border-radius: 10px;
    }

    .sticky-col {
        min-width: 100px !important;
        width: 120px !important;
        max-width: 1200px !important;
        white-space: normal !important;
        word-break: break-word;
    }

    /* .sticky-col .avatar-wrap img {
        width: 30px;
        height: 30px;
    } */

    .sticky-col .userdesination {
        font-size: 12px !important;
    }

    .schedule-wrap .table-responsive th {
        padding: 10px;
    }

    .date-range-wrapper {

        width: 100%;
    }

    .clinician-avatar {
        box-shadow: 0px 0px 4px 0px #05C00E;
        border: 1px solid #FFFFFF;
    }

    .notification-alert {
        min-width: 20px;
        height: 20px;
        font-size: 12px;

    }

    .download-box .button-location span {
        display: none;
    }

    .scheduledays-container .day {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .facility-row-box {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }



}

@media (min-width: 768px) and (max-width: 1023px) {
    #install-prompt {

        display: block !important;
        z-index: 1000;
    }

    #install-button img {
        width: 100px !important;

    }

    :root {
        --container-padding: 0 15px;
        --nav-size: 14px;
        --body-fs: 14px;
    }

    /*HEADER CSS*/

    .header-section .navbar-brand {
        max-width: 140px;
    }

    .header-section .navbar {
        padding: 5px 0;
    }

    .header-section .navbar .navbar-nav li.nav-item a {
        padding: 10px 0px;
    }

    /*HEADER CSS CLOSED*/

    .hero-section {
        height: auto;
    }

    .section-top-heading h2,
    .subscribe-heading h2 {
        font-size: 28px;
    }

    .hero-provider-content h1 {
        font-size: 36px;
    }

    .hero-provider-content p {
        font-size: 18px;
    }

    .expert-care span {
        font-size: 14px;
    }

    .section-column-gap {
        gap: 40px;
        padding: 40px 0;
    }

    .hero-stat-number {
        height: 100%;
        padding: 0 5px;
    }

    .hero-stat-number h2 {
        font-size: 30px;
        margin: 0;
    }

    .hero-stat-number p {
        font-size: 12px;
    }

    .btn-header,
    .button-regular {
        height: 44px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .service-container {
        padding: 30px 20px;
    }

    .review-content p {
        font-size: 14px;
    }

    .review-box,
    .subscribe-bg {
        padding: 24px;
    }

    .accordion-header.accordion-button {
        font-size: 15px;
    }

    .subscribe-heading p,
    .footer-contact-details p {
        font-size: 14px;
    }

    .subscribe-btn {
        font-size: 14px;
        width: 100px;
    }

    .subscribe-form-group form .form-group input[type="text"] {
        padding: 0 105px 0 40px;
        font-size: 14px;
        height: 38px;
    }

    .subscribe-btn {
        font-size: 14px;
        width: 100px;
    }

    .at-icon {
        left: 15px;
        top: 12px;
    }

    .at-icon img {
        width: 20px;
    }

    .quick-link-block ul {
        gap: 10px 15px;
    }

    .footer-bottom-link ul {
        justify-content: center;
    }

    .about_counter {
        padding: 30px;
    }

    /* ============= CONTACT PAGE CSS ============ */
    .contact-form-sec .login-form-group {
        padding: 20px;
    }

    .contact-form-sec .contact-box {
        padding: 20px;
    }

    .contact-form-sec .contact-box h3 {
        font-size: 18px;
    }
}

@media (min-width: 1024px) and (max-width: 1250px) {

    :root {
        --container-padding: 0 15px;
        --nav-size: 14px;
        --body-fs: 14px;
    }

    .section-column-gap {
        gap: 80px;
        padding: 80px 0;
    }

    .section-top-heading h2,
    .hero-stat-number h2 {
        font-size: 40px;
    }

    .chose-card,
    .review-box {
        padding: 30px;
    }

    .service-container {
        padding: 40px 32px;
    }

    .review-content p {
        font-size: 14px;
    }

    .hero-provider-content h1 {
        font-size: 50px;
    }

    .btn-header,
    .button-regular {
        font-size: 16px;
        height: 48px;
    }
}

/**==================Media queries section copy from html folder ends here ===========================================**/

@media (max-width: 375px) {

    .license-card p,
    .license-card span {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    header.header-section {
        position: sticky;
        top: 0;
        z-index: 1039;
        background: #FFF;
        padding-top: env(safe-area-inset-top);
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    }

    body.is-app.is-android .header-section,
    body.is-app.is-android .navbar.navbar-expand {
        position: fixed;
        top: 0;
        z-index: 1039;
        background: #FFF;
        padding-top: var(--safe-top);
        transform: translateZ(0);
        will-change: transform;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    }

    body.is-browser.is-android .header-section,
    body.is-browser .navbar.navbar-expand {
        position: sticky !important;
        top: 0;
        left: 0;
        right: 0;
        top: 0;
        background: #fff;
        z-index: 999 !important;
        width: 100%;
        transform: translateZ(0);
        will-change: transform;
    }

    body.is-browser.is-android .header-section,
    body.is-browser.is-android .navbar.navbar-expand {
        position: sticky !important;
        top: 0;
        left: 0;
        right: 0;
        top: 0;
        background: #fff;
        z-index: 999 !important;
        width: 100%;
    }

    body.is-browser.is-ios .preview-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        padding-top: env(safe-area-inset-top);
        transform: translateZ(0);
        will-change: transform;
    }

    body.is-app.is-ios .preview-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        padding-top: env(safe-area-inset-top);
        transform: translateZ(0);
        will-change: transform;
    }


    body.is-app.is-ios .chat-header {
        padding: 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding-top: env(safe-area-inset-top);
    }

    body.is-app.is-ios .preview-close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        color: red;
        cursor: pointer;
        z-index: 99999;
        padding-top: env(safe-area-inset-top);
        /* transform: translateZ(0);
        will-change: transform; */
    }


    body.is-browser.is-ios .preview-close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        color: red;
        cursor: pointer;
        z-index: 10000;
        padding-top: env(safe-area-inset-top);
        transform: translateZ(0);
        will-change: transform;
    }

    body.is-browser.is-ios .preview-frame {
        width: 100%;
        height: 100%;
        border: none;
    }

    body.is-browser.is-ios .preview-frame {
        width: 100%;
        height: 100%;
        border: none;
    }

    body.is-browser.is-android .preview-frame {
        width: 100%;
        height: 100%;
        border: none;
    }

    body.is-app.is-ios .preview-frame {
        width: 100%;
        height: 100%;
        border: none;
    }

    body.is-app.is-android .preview-frame {
        width: 100%;
        height: 100%;
        border: none;
    }

 
    body.is-app.is-ios .modal-dialog.modal-dialog-centered {
        z-index: 99999 !important;
    }

    body.is-app .header-section,
    body.is-app .navbar.navbar-expand {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999 !important;
        background: #fff;
        padding-top: var(--safe-top);
        transform: translateZ(0);
        will-change: transform;
    }

    body.is-app.is-android .header-section,
    body.is-app.is-android .navbar.navbar-expand {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #fff;
        padding-top: 0;
    }

    body.is-app.is-ios .header-section,
    body.is-app.is-ios .navbar.navbar-expand {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999 !important;
        background: #fff;
        padding-top: var(--safe-top);
        transform: translateZ(0);
        will-change: transform;
    }

    body.is-app .sidebar {
        position: fixed !important;
        top: 0;
        left: 0;
        bottom: 0;
        background:
            linear-gradient(0deg, #f0f8f4, #f0f8f4),
            linear-gradient(356.32deg, #74c56b33 0%, #74c56b00 101.67%);
        transition: 0.5s;
        z-index: 99999 !important;
        width: 320px;
        z-index: 1045;
        padding-top: var(--safe-top);
    }

    body.is-app .chat-header {
        padding: 15px 20px;
        border-bottom: 1px solid #e5eef0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        background: #FFF;
        padding-top: var(--safe-top);
    }

    body.is-app .chat-messages {
        padding: 20px 20px 0;
        height: calc(100vh - 100px);
        margin-bottom: 100px;
        margin-top: 12% !important;
    }

    body.is-app #completeprofile {
        z-index: 99999;
        padding-top: var(--safe-top);
    }

    body.is-app .document-model {
        z-index: 99999;
        padding-top: var(--safe-top);
    }

    body.is-app .ServiceRequest {
        z-index: 99999;
        padding-top: var(--safe-top);
    }

    body.is-browser .chat-heading {
        font-size: 5px;
        padding: 10px 0;
        margin-left: 2px !important;
    }

    /*APP MODE ONLY */
    body.is-app .toast-top-right {
        top: calc(var(--safe-top) + 10px) !important;
        /* 👈 notch ke neeche */
        right: 10px;
    }

    body.is-app .ios-notification-container {
        display: flex;
        align-items: center;
        width: 100%;
    }

    body.is-app .banner-content {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
        /*IMPORTANT */
    }

    body.is-app .btn-enable {
        margin-left: auto;
        /*most reliable for iOS */
    }

    /* DEFAULT: SHOW (taake instantly dikhe) */
    #app-loader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;

        background: #ffffff;
        z-index: 999999;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .loader-spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #eee;
        border-top: 4px solid #28a3d0;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

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

    body.is-browser #app-loader {
        display: none;
    }



    /* body.is-app .admin-dashboard-content {
        margin-top: -10px !important;
        padding-top: 10px !important;
    } */

    /* ============= ADMIN DASHBOARD CSS ============ */
    .dashboard-content h2 {
        font-size: 24px;
    }

    .mobile-back-btn {
        display: block;
    }

    .heading-three {
        font-size: 18px;
    }

    .empty-content h4 {
        font-size: 16px;
    }

    .empty-content p {
        font-size: 12px;
    }

    /* .search-container .filter-select,
    .search-container,
    .search-container .search-bar {
        width: 100%;
    } */



    .search-bar input {
        font-size: 14px;
    }

    .search-bar,
    .search-container .filter-select {
        height: 40px;
        padding: 10px;
        max-width: 100%;
    }

    .date-wrapper-block {
        width: 100%;
    }

    .date-input svg,
    .search-bar img,
    .button-location svg,
    .delete-btn svg {
        width: 16px;
    }

    .date-range-box {
        gap: 5px;
        justify-content: space-between;
    }

    .date-input.search-bar {
        width: 46%;
        flex: 0 0 46%;
    }

    .icon {
        margin-left: -4px;
        position: relative;
        z-index: 1;
    }

    .calendar-days span {
        height: 35px;
        width: 35px;
        font-size: 14px;
    }

    .calendar-card {
        padding: 15px;
    }

    .notification-item strong {
        font-size: 13px;
    }

    .chat-sidebar {
        width: 100%;
    }

    .chat-area {
        display: none;
    }

    .chat-input {
        padding: 10px 8px;
        margin: auto 10px 10px;
        /* position: fixed; */
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .chat-input .send-btn {
        width: 32px;
        height: 32px;
    }

    .message {
        max-width: 100%;
    }

    .message img,
    .chat-header img {
        width: 32px;
        height: 32px;
        box-shadow: 0px 0px 4px 0px #05C00E;
        border: 1px solid #FFFFFF;
        border-radius: 50% !important;
    }

    .message p {
        font-size: 12px;
    }

    .chat-header span {
        font-size: 14px;
    }

    .chat-header {
        padding: 10px 10px;
    }

    .file-icon img {
        width: 25px;
    }

    .file-card {
        padding: 10px;
    }

    .file-info h4 {
        font-size: 12px;
    }

    .file-info span {
        font-size: 12px;
    }

    .avatars img,
    .more {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .arrow-btn {
        width: 28px;
        height: 28px;
    }

    .file-right,
    .file-left {
        gap: 5px;
    }

    .license-card h5 {
        font-size: 16px;
        margin: 0 0 5px;
    }

    .document-model .modal-content {
        padding: 20px;
        border-radius: 12px;
    }

    .active-request-header .btn-header,
    .active-request-header .delete-btn {
        height: 35px;
        font-size: 12px;
        padding: 5px 15px;
    }

    .btn-header {
        font-size: 14px;
        height: 40px;
    }

    .download-box .btn-header {
        padding: 0;
        width: 50px;
        height: 30px;
        border: none;
    }

    .download-box .btn-header svg {
        width: 20px;
    }

    .calendar-weekdays,
    .calendar-days {
        gap: 0;
    }

    .request-box {
        height: 50px;
        width: 50px;
        border-radius: 8px;
    }

    .request-card p {
        font-size: 24px;
        line-height: 32px;
    }

    @media (max-width: 576px) {
        .notification-dropdown {
            transform: translateX(12%);
        }
    }

    .chat-wrapper.show-chat .chat-sidebar {
        display: none
    }

    .chat-wrapper.show-chat .chat-area {
        display: flex;
        position: fixed;
        width: 100%;
        inset: 0;
        z-index: 9999;
    }

    .chat-list {
       scrollbar-width: none;
       -ms-overflow-style: none
    }

    .chat-input .send-btn {
        width: 32px;
        height: 32px
    }

    .message img,
    .chat-header .user-image {
        width: 32px;
        height: 32px
    }

    .chat-header span {
        font-size: 14px
    }

    .chat-header {
        padding: 15px;
        position: static;
        top: 0;
        left: 0;
        right: 0;
    }

    #active-chat-container {
        padding-top: 65px;
        height:calc(100vh - 130px);
    }

    .chat-input-wrapper {
        padding: 10px;
        border: 0;
        z-index: 999;
    }

    body.chat-open .mobile-nav-menu {
        display: none;
    }

    .chat-sidebar h5 {
        font-size: 18px;
        padding: 10px;
        margin-left: 2px !important;
    }

    .chat-wrapper {
        border: 0;
		
    }

    .chat-input .send-btn::before {
        display: none
    }

    .chat-messages {
        padding: 30px 20px 0;
        /* height: calc(100vh - 420px); */
        /* margin-bottom: 100px; */
    }

    .chat-list {
        padding-bottom: 80px;
    }

    .pagination .page-item .page-link {
        font-size: 14px;
        border-radius: 50px;
        height: auto;
        width: auto;
        background: var(--gradient-primary);
        color: #fff;
    }


}

@media (min-width: 992px) {
    .dashboard-content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .sidebar {
        margin-left: -350px;
        padding-top: var(--safe-top);
    }

    .sidebar.open {
        margin-left: 0;
    }

    .dashboard-content {
        width: 100%;
        margin-left: 0;
    }

    .sidebar .sidebar-header .navbar-brand img {
        width: 60%;
        height: 60px;
        object-fit: contain;
    }




    .dashboard-content .username,
    .dashboard-content .userdesination {
        font-size: 14px;
    }

    .facility-info-box .facility-row,
    .request-time {
        font-size: 14px;
    }

    .request-tag {
        font-size: 12px;
    }

    .request-time-date::after {
        height: 13px;
    }

    .facilityf-info-image img {
        height: 250px;
    }

    .sidebar-open-btn,
    .sidebar-close-btn {
        display: flex;
    }
}

/* custom css */

/* Custom Previous and next navigation  */
.previous_next_calender_navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(to right, #add8e6, #90ee90);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #1a4560;
    width: 36px;
    height: 36px;
}

.submit-btn:disabled,
.logoutBtn[disabled],
.logoutBtn.disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    /* pointer-events: none;  */
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
    margin-right: 8px;
    vertical-align: middle;
}

/* service request checkboxes style */

.sidebar-links ul li a.active,
.btn-header.active {
    background: var(--gradient-primary);
    color: var(--white);
}

/* Custom CSS for service request overlay */
/* Modal content relative position zaroori hai */
#serviceRequestModal .modal-body-login {
    position: relative;
}

#srFormOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1000;
    cursor: not-allowed;
    border-radius: 0 0 15px 15px;
    /* Adjust based on your modal corners */
}

#srReadinessWarning {
    border-left: 4px solid #dc3545;
    /* Red indicator for urgency */
}

/* Service request modal Note style */
.service-not-box {
    background:
        linear-gradient(0deg, #f0f8f4, #f0f8f4),
        linear-gradient(288.7deg,
            rgba(116, 197, 107, 0.1) 0.48%,
            rgba(116, 197, 107, 0) 102.12%);

    padding: 8px 16px;

    border-radius: 8px;

    color: var(--blue-gray);
}



.custom-multi-select {
    position: relative;
    width: 100%;
    font-size: 14px;
}

.dropdown-header {
    border: 1px solid #d0d5dd;
    padding: 12px 16px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: 0.2s ease;
    color: var(--deep-teal);
}

.dropdown-header:hover {
    border-color: #9fd4c4;
}

.dropdown-options {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 10px;
    display: none;
    z-index: 999;
    max-height: 260px;
    overflow-y: auto;
    animation: fadeIn 0.2s ease-in-out;
}

.dropdown-options label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.dropdown-options label:hover {
    background: #f4f8f7;
}

.dropdown-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Js validation  */

/* Parent container ko relative rakhein */

/* Custom error message ko absolute position dein */
.invalid-feedback-custom {
    color: #dc3545;
    font-size: 11px;
    line-height: 1;

    margin: 10px 0 0 20px;
}

/* Universal invalid state */
.is-invalid {
    border-color: #dc3545 !important;
    background-image: none !important;
}

/* If you want a slight shake effect when errors appear */
/* @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.is-invalid {
    animation: shake 0.2s ease-in-out 0s 2;
} */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.captured-video {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.dropzone.dz-clickable {
    border: 1px dashed #7dc95f;
    border-radius: 14px;
    background: linear-gradient(146.69deg, rgba(40, 163, 208, 0.08) 1.77%, rgba(125, 201, 95, 0.08) 98.69%);
}
