/* //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;
    --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;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--body);
    color: var(--blue-gray);
    font-size: var(--body-fs);
}
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;
}

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);
}
.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;
}
.mt-32 {
    margin: 32px 0 0 0;
}

/**==================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 {
    width: 100%;
    height: 50px;
    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: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.submit-btn:hover {
    background: linear-gradient(100.74deg, #28a3d0 2.77%, #7dc95f 100%);
    color: var(--white);
}
label.input-label {
    position: absolute;
    background: var(--white);
    font-size: 12px;
    color: #4f748b;
    line-height: normal;
    padding: 0 5px;
    left: 16px;
    top: -7px;
}
.login-form-group .form-group input,
.login-form-group .form-group select,
.login-form-group .form-group textarea {
    height: 48px;
    color: #a7b9c5;
    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;
}
.login-form-group .form-group { margin-bottom: 40px; }


/**==================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 {
    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: 14px;
  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;
}


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


.btn-close {
    height: 30px;
    width: 30px;
    position: absolute;
    right: 15px;
    top: 15px;
    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;
}
.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 ============= */

.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;
    overflow-y: auto;
    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: 99;
}
.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 {
    color: #a7b9c5;
    font-size: 18px;
    width: 100%;
    outline: none;
    border: 0;
}
.dropdown-toggle::after {
    display: none;
}
.dropdown-toggle.notification img {
    width: 80%;
}
.dropdown-toggle img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}
.dashboard-content {
    margin-left: auto;
    width: calc(100% - 300px);
}
.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: #ff6868;
    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;
}
.dashboard-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--ink-blue);
}
.period-tabs {
    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;
}
.tab-btn {
    border: none;
    background: transparent;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    color: #6c8aa4;
    transition: all 0.3s ease;
}
.tab-btn:hover {
    color: #1b4d6b;
}
.tab-btn.active {
    background: linear-gradient(90deg, #2fa4dd, #63c36b);
    color: var(--white);
}
.request-card {
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.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 - 350px);
    overflow: auto;
    border: 1px solid #d9e7e2;
    border-radius: 16px;
    background: var(--white);
}
.card-wrapper .table-responsive thead {
    position: sticky;
    top: 0;
}
.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 .btn-header {
    height: 40px;
    font-size: 16px;
}
.request-tag {
    padding: 3px 12px;
    background: #ff6868;
    border-radius: 16px;
    color: var(--white);
}
.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;
}
.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;
}
.notification-dropdown {
    width: 400px;
    left: 0% !important;
    top: 70px !important;
    transform: translateX(-50%);
}
.notification-item .badge-new {
    background: #ff68681a;
    color: #e65e5e;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 4px;
}
.notification-item strong {
    color: #043959;
    font-weight: 500;
    font-size: 16px;
}
.notification-item .time {
    font-size: 14px;
    color: #04395980;
}
.notification-item p {
    font-size: 14px;
    color: #4f748b;
}
.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;
}

.date-input input {
    max-width: 160px;
}
.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);
}

.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;
}
.paperclip-box {
    height: 45px;
    width: 45px;
    border-radius: 7px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}
.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 h2 {
    color: var(--ink-blue);
    font-size: 24px;
    padding: 24px 16px;
    border-bottom: 1px solid #d8e9e4;
}
.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;
}
.avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.online-dot {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    background: #7dc95f;
    border-radius: 50%;
    border: 2px solid #f0f8f4;
}

.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;
}
.chat-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e5eef0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.chat-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.chat-header .status {
    font-size: 14px;
    color: #4f748b;
    gap: 6px;
}
.chat-header .status::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #7dc95f;
    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;
}
.message img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.message p {
    margin: 0;
    padding: 12px 14px;
    font-size: 16px;
}
.message.left {
    flex-direction: row;
}
.message.left p {
    background: #e9f5f0;
    border-radius: 24px 24px 24px 0;
}
.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: 24px 24px 0 24px;
}
.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;
}
.chat-input input {
    border: none;
    outline: none;
    height: 100%;
    width: 100%;
}
.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 p {
    font-size: 14px;
    color: #04395980;
    margin: 0 0 5px;
}
.chat-notification span {
    background: #ff6868;
    color: var(--white);
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.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: 20px;
}

.schedule-wrap .table-responsive th {
    background: #f4fbf8;
    color: var(--ink-blue);
    font-weight: 600;
    padding: 20px;
}
.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);
}
.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;
}
.avatars img:first-child {
    margin-left: 0;
}

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

.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;
}
.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%;
}
.select-heading {
    font-size: 20px;
    color: var(--deep-teal);
    font-weight: 500;
}
.select-all {
    font-size: 18px;
    color: var(--deep-teal);
    font-weight: 500;
}

.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 {
    background-image:
        linear-gradient(#28a3d0, #7dc95f),
        linear-gradient(100.74deg, #28a3d099 2.77%, #7dc95f99 100%);
    border: none;
}
.custom-checkbox:checked::after {
    content: "✔";
    color: #fff;
    font-size: 12px;
    position: absolute;
    left: 50%;
    top: 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;
}

.upload-content h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--deep-teal);
}
.upload-content p {
    font-size: 14px;
    color: var(--deep-teal);
}
.document-model .modal-content {
    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;
}
.notify-wrap .submit-btn {
    height: 44px;
}
.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;
}
.notify-text {
    font-size: 18px;
    font-weight: 500;
    color: #2e2e2e;
}
.notify-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #777;
    font-size: 20px;
    cursor: pointer;
}
.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: 20px;
    overflow: hidden;
    height: 180px;
}
.license-card .profile-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.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;
}
.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: #a7b9c5;
    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% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 8px 0;
    box-shadow: 0 10px 30px #00000014;
    display: none;
    z-index: 10;
    list-style: none;
    margin: 0;
}
.dropdown-list .item {
    padding: 10px 18px;
    font-size: 16px;
    cursor: pointer;
    color: #5f6e6a;
    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: #ff6868;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* FOOTER CSS */

.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%
        );
}

.quick-link-block {
    padding: 0px 0 24px;
    margin-bottom: 24px;
    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: 18px;
    color: var(--ink-blue);
    font-family: var(--body);
    margin: 0 0 12px;
}
.quick-link-block ul {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.quick-link-block ul li a {
    color: var(--blue-gray);
    text-decoration: none;
}
.quick-link-block ul li a:hover {
    color: var(--ink-blue);
}

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

.need-help a {
    color: var(--ink-blue);
    font-size: 16px;
}
.login-form-heading h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--deep-teal);
}



/**==================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: .3s;
}

.slider::before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    top: 2px;
    background-color: #fff;
    border-radius: 50%;
    transition: .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 */
}


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

@media (max-width: 767px) {
  :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 {
    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;
  }

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

  /* ============= 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;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  :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) {
    /* ============= ADMIN DASHBOARD CSS ============ */
    .dashboard-content h2 {
        font-size: 24px;
    }
    .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%;
    }
    .notification-dropdown {
        width: 300px;
        left: 65% !important;
    }
    .search-bar input {
        font-size: 14px;
    }
    .search-bar,
    .search-container .filter-select {
        height: 40px;
        padding: 10px;
    }
    .date-input svg,
    .search-bar img,
    .button-location svg {
        width: 16px;
    }
    .date-range-box {
        gap: 5px;
    }
    .calendar-days span {
        height: 35px;
        width: 35px;
        font-size: 14px;
    }
    .calendar-card {
        padding: 15px;
    }
    .chat-sidebar {
        display: none;
    }
    .chat-input {
        padding: 10px 8px;
        margin: auto 10px 10px;
    }
    .chat-input .send-btn {
        width: 32px;
        height: 32px;
    }
    .message {
        max-width: 100%;
    }
    .message img,
    .chat-header img {
        width: 32px;
        height: 32px;
    }
    .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 {
        height: 35px;
        font-size: 12px;
        padding: 5px 15px;
    }
    .btn-header {
        font-size: 14px;
        height: 40px;
    }
    .calendar-weekdays,
    .calendar-days {
        gap: 0;
    }
    .request-card {
        flex-direction: column;
        padding: 15px;
        gap: 5px;
    }
    .request-box {
        height: 50px;
        width: 50px;
        border-radius: 8px;
    }
    .request-card span {
        font-size: 12px;
    }
    .request-card p {
        font-size: 20px;
        line-height: 32px;
    }
}
@media (min-width: 992px) {
    .dashboard-content.open {
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 991px) {
    .sidebar {
        margin-left: -350px;
    }
    .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;
    }
    .dropdown-toggle.notification {
        height: 46px;
        width: 46px;
    }
    .dropdown-toggle img {
        width: 46px;
        height: 46px;
    }
    .dashboard-content .username,
    .dashboard-content .userdesination {
        font-size: 14px;
    }
}

/* custom css */

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

/* 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%);
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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