/* Google Font*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

  /* Custom CSS */
  :root {
    --primary-color: #4cd3a5;
    --primary-green:#4DC3B0;
    --dark-bg: #000;
    --text-light: #fff;
}
html{
        overflow-x: hidden;
}
body {
    font-family: Inter;
    overflow-x: hidden;
}
.bg-green{
    background-color: var(--primary-green);
}
.text-green{
    color: var(--primary-green);
}
.w-100px{width: 100px;}
.w-200px{width: 200px;}
.w-350px{width: 350px;}
.text-3131{color:#313132;}
.text-18181B{color:#18181B;}
.h-100px{height: 100px;}
.w-190px{width: 190px;}
.w-80{width: 80%;}
.w-90{width: 90%;}
.h-190px{height: 190px;}
.hfc{    height: fit-content;}
.mx-w-492px{width: 492px;}
.mx-w-500px{max-width: 500px;}
.mx-h-150px{height: 150px;}
.mx-h-250px{height: 250px;}
.h-8px{height: 8px;}
.min-h-vh{min-height: 100vh;}
.min-h-40vh{min-height: 40vh;}
.min-h-88px{min-height: 88px;}
.m-w-80vw{max-width: 80vw;}
.fw-400{font-weight: 400;}
.fw-500{font-weight: 500;}
.fw-600{font-weight: 600;}
.fw-700{font-weight: 700;}
.fw-800{font-weight: 800;}
.fs-10{font-size: 10px !important;}
.fs-12{font-size: 12px !important;}
.fs-14{font-size: 14px !important;}
.fs-16{font-size: 16px !important;}
.fs-18{font-size: 18px !important;}
.fs-22{font-size: 22px !important;}
.fs-20{font-size: 20px !important;}
.fs-28{font-size: 28px !important;}
.fs-24{font-size: 24px !important;}
.fs-32{font-size: 32px !important;}
.fs-36{font-size: 36px !important;}
.fs-40{font-size: 40px !important;}
.fs-46{font-size: 46px !important;}
.fs-48{font-size: 48px !important;}
.fs-60{font-size: 60px !important;}
.fs-64{font-size: 64px !important;}
.navbar {
    background-color: var(--dark-bg);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--primary-green) !important;
}

.navbar-brand span {
    font-size: 0.9rem;
    display: block;
    color: #ccc;
    font-weight: normal;
}
#navbarNav .dropdown-menu[data-bs-popper]{
    right:0;
        left: unset;

}
.nav-link {
    color: var(--text-light) !important;
    margin: 0 6px;
    font-weight: 500;
    font-size: 18px;
}

.nav-link.active {
    color: var(--primary-green) !important;
    text-decoration: underline;
}

.btn-green-gradiant {
    background: linear-gradient(175.31deg, #68CDA1 5.93%, #45C0B4 92.91%);
    color: white;
    border-radius: 8px;
    padding: 8px 25px;
    font-weight: 600;
    font-size: 16px;
    border: none;
}

.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.journey-text {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #18181B;
    font-weight: 500;
    font-size: 20px;
    padding-left: 40px;
}

.journey-text:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #000;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.2rem;
    /* color: #555; */
    color: #ddd;
    margin-bottom: 40px;
}


.btn-get-started i {
    margin-left: 10px;
}

.store-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.store-badge {
    height: 40px;
}

.client-text {
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-right: 100px;
}

.client-text:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 80px;
    height: 2px;
    background-color: var(--primary-green);
}

.app-mockup {
    position: relative;
    z-index: 2;
}

.green-circle {
    position: absolute;
    width: 760px;
    height: 760px;
    background-color: var(--primary-green);
    border-radius: 50%;
    right: -170px;
    top: 50px;
    z-index: 1;
}

.dash-header .navbar-nav .nav-link {
    color: #fff;
    padding: 0;
    margin: 0 1.2rem;
    font-weight: 500;
    font-size: 20px;
}
.acard{
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(212, 212, 216, 1) !important;
    border-radius: 20px !important;
}
.dash-header .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color) !important;
    text-decoration: none;
}
.dash-header .notification-btn,.dash-header .profile-btn {
    background-color: #EAE9EF;
    color: #000;
    font-size: 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


#userMenuModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#userMenuModal .modal-header {
    border-bottom: none;
    padding: 20px;
    position: relative;
}

#userMenuModal .modal-header .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

#userMenuModal .user-profile {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

#userMenuModal .user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    margin-right: 15px;
}

#userMenuModal .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#userMenuModal .user-info h5 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

#userMenuModal .user-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

#userMenuModal .manage-link {
    color: var(--primary-color);
    position: absolute;
    right: 50px;
    top: 54px;

    text-decoration: none;
    font-size: 14px;
}

#userMenuModal .section-title {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin: 10px 20px;
    color: rgba(160, 160, 160, 1);
    /* text-align: center; */
    text-transform: uppercase;
    
}

#userMenuModal .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#userMenuModal .menu-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: Inter;
font-weight: 400;
font-size: 16px;
line-height: 16px;
letter-spacing: 0%;

}

#userMenuModal .menu-item:hover {
    background-color: #f8f9fa;
}

#userMenuModal .menu-item i {
    width: 20px;
    margin-right: 15px;
    color: #444;
}

#userMenuModal .menu-item .menu-text {
    flex-grow: 1;
    font-size: 15px;
}

#userMenuModal .chevron {
    color: #ccc;
}

#userMenuModal .form-check-input {
    background-color: #e0e0e0;
    border: none;
    width: 40px;
    height: 20px;
}

#userMenuModal .form-check-input:checked {
    background-color: #53c2b0;
    border-color: #53c2b0;
}

#userMenuModal .divider {
    height: 1px;
    background-color: #eee;
    margin: 10px 0;
}

#userMenuModal .danger-item {
    color: #dc3545 !important;
}

#userMenuModal .danger-item i {
    color: #dc3545 !important;
}

#userMenuModal .modal-dialog {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 60px;
    width: 470px;
}

@media (max-width: 576px) {
    #userMenuModal .modal-dialog {
        width: 100%;
        margin: 0;
        position: fixed;
        bottom: 0;
        right: 0;
        top: auto;
    }
    
    #userMenuModal .modal-content {
        border-radius: 12px 12px 0 0;
    }
}

.h-100vhofh{
    height: 100vh;
    overflow-y: hidden;
  }
  .sbimg{
    max-height: 78%;
object-fit: cover;
text-align: center;
}
.form-control.is-invalid, .was-validated .form-control:invalid{
    background-image: none !important;
}

.table-header {
    background-color: rgba(69, 192, 180, 1);
    color: white;
}

 .dataTable thead th {
        background-color: #45C0B4 !important;
        color: white !important; /* optional: makes text readable on teal background */
    }

    /* Optional: Style the sorting indicators (arrows) if needed */
    .dataTable thead th .dt-column-order {
        color: white !important;
    }
    .table-responsive .pagination .page-link {
        color: #45C0B4;
        border-color: #45C0B4;
    }

   .table-responsive .pagination .page-item.active .page-link {
        background-color: #45C0B4;
        border-color: #45C0B4;
        color: white;
    }

   .table-responsive .pagination .page-item.disabled .page-link {
        color: #aaa; /* Optional: make disabled buttons gray */
        border-color: #ddd;
        background-color: #f8f9fa;
    }

   .table-responsive .pagination .page-link:hover {
        background-color: #45C0B4;
        color: white;
    }

            input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-password-toggle-button,
input[type="password"]::-webkit-inner-spin-button,
input[type="password"]::-webkit-clear-button {
    display: none !important;
}

/* Also prevent any browser default background icons */
input[type="password"] {
    background: none !important;
}

.pnbg{
        font-size: 0.55rem;
    top: 2px;
    left: 0px;
    background-color: #24c6b6 !important;
    border-radius: 2px;
   position: absolute;
}

 @media (max-width: 768px) {
.h-100vhofh{
    height: auto;
     overflow-y: auto;
}
.sbimg{
        width: 100%;
}
    .store-badges {
        flex-direction: column;
        align-items: flex-start;
    }
.dashboard-preview{
    height: auto !important;
    margin-bottom: 40px;
}
 }

 @media (min-width: 1800px) {
  .container {
    max-width: 2000px !important;
  }
.dashboard-preview .sbimg{
max-height: 64%;
}
}
 @media (min-width: 2400px) {
  .container {
    max-width: 2200px !important;
  }
}
 @media (min-width: 2800px) {
  .container {
    max-width: 90% !important;
  }
}
@media (min-height: 1000px) {
    .dashboard-preview{
max-height: 800px;
    }
    #loginForm{
        height: auto !important;
    }
   }
   @media (min-width: 992px) and (max-width: 1399.98px) {
.green-circle{
    right: -280px;
}

   }

   /* Modern Sidebar Styling */
#co-sidebar {
    background: #fff;
    border-right: 1px solid rgba(76, 211, 165, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#co-sidebar .nav {
    padding: 1.5rem 0;
}

#co-sidebar .nav-item {
    margin: 0.25rem 0;
}

#co-sidebar .nav-link {
    color: #000 !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    padding: 0.875rem 1.5rem !important;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#co-sidebar .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #4cd3a5;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

#co-sidebar .nav-link:hover {
    background: rgba(76, 211, 165, 0.08);
    color: #4cd3a5 !important;
    transform: translateX(8px);
}

#co-sidebar .nav-link:hover::before {
    transform: translateX(0);
}

#co-sidebar .nav-link.active,
#co-sidebar .nav-link[aria-current="page"] {
    background: rgba(76, 211, 165, 0.12);
    color: #4cd3a5 !important;
    font-weight: 600 !important;
}

#co-sidebar .nav-link.active::before,
#co-sidebar .nav-link[aria-current="page"]::before {
    transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #co-sidebar {
        box-shadow: none;
        border-right: none;
    }
}

/* Smooth scrollbar for sidebar */
#co-sidebar::-webkit-scrollbar {
    width: 4px;
}

#co-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#co-sidebar::-webkit-scrollbar-thumb {
    background: #4cd3a5;
    border-radius: 2px;
}

#co-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(76, 211, 165, 0.8);
}