@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


  :root {
      --primary-color: #4361ee;
      --secondary-color: #3f37c9;
      --accent-color: #4cc9f0;
      --light-color: #f8f9fa;
      --dark-color: #212529;
      --success-color: #4bb543;
      --error-color: #ff3333;
      --warning-color: #ffc107;
      --danger-color: #dc3545;
      --info-color: #17a2b8;
      --sidebar-width: 280px;
    }
    
    body {
      font-family:  "Poppins", sans-serif;
      display: block;
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      min-height: 100vh;
      justify-content: center;
      align-items: center;
      margin: 0;
    }
    
    /*dark theme*/
    
    body.dark-mode {
  background: #1e293b;
  color: #f1f5f9;
}

body.dark-mode .settings-card,
body.dark-mode .settings-sidebar {
  background: #2d3748;
  color: #f1f5f9;
}

body.dark-mode .form-control,
body.dark-mode .form-select {
  background: #374151;
  color: #f1f5f9;
  border-color: #4b5563;
}

     /*=================================dark theme end==================================*/


    
     /*=================================Login page start==================================*/


    body .login-container{
        display: flex !important;
    }
    
    .login-container {
      display: flex;
      max-width: 1000px;
      width: 100%;
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
 
    .login-illustration {
      flex: 1;
      background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px;
      color: white;
      text-align: center;
    }
    
    .login-illustration img {
      max-width: 80%;
      height: auto;
    }
    
    .login-form {
      flex: 1;
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .logo {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
      background: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      font-weight: bold;
    }
    
    .form-title {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--dark-color);
    }
    
    .form-subtitle {
      color: #6c757d;
      margin-bottom: 30px;
      font-size: 14px;
    }
    
    .form-control {
      height: 50px;
      border-radius: 10px;
      border: 1px solid #e0e0e0;
      padding-left: 15px;
      transition: all 0.3s;
    }
    
    .form-control:focus {
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
      border-color: var(--primary-color);
    }
    
    .input-group {
      position: relative;
      margin-bottom: 20px;
    }
    
    .input-icon {
      position: absolute;
      top: 50%;
      left: 15px;
      transform: translateY(-50%);
      color: #0d6efd;
      z-index: 999;
    }
    
    .form-control.with-icon {
      padding-left: 45px;
    }
    
    .toggle-password {
      position: absolute;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      color: #adb5bd;
      cursor: pointer;
    }
    
    .btn-login {
      background: var(--primary-color);
      color: #fff;
      border: none;
      height: 50px;
      border-radius: 10px;
      font-weight: 500;
      margin-top: 10px;
      transition: all 0.3s;
    }
    
    .btn-login:hover {
      background: var(--secondary-color);
      transform: translateY(-2px);
    }
    
    .btn-login:active {
      transform: translateY(0);
    }
    
    .forgot-password {
      text-align: right;
      margin-top: -15px;
      margin-bottom: 20px;
    }
    
    .forgot-password a {
      color: #6c757d;
      font-size: 13px;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .forgot-password a:hover {
      color: var(--primary-color);
    }
    
    .alert {
      border-radius: 10px;
      padding: 12px 15px;
    }
    
    .divider {
      display: flex;
      align-items: center;
      margin: 20px 0;
      color: #adb5bd;
      font-size: 13px;
    }
    
    .divider::before, .divider::after {
      content: "";
      flex: 1;
      border-bottom: 1px solid #e0e0e0;
    }
    
    .divider::before {
      margin-right: 10px;
    }
    
    .divider::after {
      margin-left: 10px;
    }
    
    .social-login {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: transform 0.3s;
    }
    
    .social-btn:hover {
      transform: translateY(-3px);
    }
    
    .facebook {
      background: #3b5998;
    }
    
    .google {
      background: #db4437;
    }
    
    .twitter {
      background: #1da1f2;
    }
    
    .signup-link {
      text-align: center;
      margin-top: 20px;
      font-size: 14px;
      color: #6c757d;
    }
    
    .signup-link a {
      color: var(--primary-color);
      font-weight: 500;
      text-decoration: none;
    }
    
    
     /*=================================Login page end==================================*/



    /*=================================Dashboard page start==================================*/
    
        /* Sidebar */
    .sidebar {
      width: var(--sidebar-width);
      height: 100vh;
      position: fixed;
      left: 0;
      top: 0;
      background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
      color: white;
      padding: 20px 0;
      transition: all 0.3s;
      z-index: 1000;
    }
    
    .sidebar-brand {
      padding: 0 20px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 20px;
    }
    
    .sidebar-brand h3 {
      font-weight: 600;
      margin-bottom: 0;
    }
    
    .sidebar-menu {
      padding: 0 15px;
    }
    
    .sidebar-menu a {
      display: flex;
      align-items: center;
      padding: 12px 15px;
      margin-bottom: 5px;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.3s;
    }
    
    .sidebar-menu a:hover, .sidebar-menu a.active {
      background: rgba(255,255,255,0.1);
      color: white;
    }
    
    .sidebar-menu a i {
      margin-right: 10px;
      width: 20px;
      text-align: center;
    }
    
    /* Main Content */
    .main-content {
      margin-left: var(--sidebar-width);
      padding-top:0 !important;
      min-height: 100vh;
      transition: all 0.3s;
    }
    
    /* Topbar */
    .topbar {
      background: white;
      padding: 15px 25px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    
    .user-profile {
      display: flex;
      align-items: center;
    }
    
    .user-profile img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
      object-fit: cover;
    }
    
    /* Cards */
    .card {
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
      transition: all 0.3s;
      overflow: hidden;
      margin-bottom: 25px;
    }
    
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
    
    .card-header {
      background: white;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      padding: 15px 20px;
      font-weight: 600;
    }
    
    .card-body {
      padding: 20px;
    }
    
    /* Stats Cards */
    .stat-card {
      position: relative;
      padding: 20px;
      color: white;
      border-radius: 12px;
      overflow: hidden;
    }
    
    .stat-card::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
    }
    
    .stat-card i {
      font-size: 30px;
      margin-bottom: 15px;
    }
    
    .stat-card .stat {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 5px;
    }
    
    .stat-card .label {
      opacity: 0.9;
      font-size: 14px;
    }
    
    .stat-card.clients {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .stat-card.credentials {
      background: linear-gradient(135deg, #2af598 0%, #009efd 100%);
    }
    
    .stat-card.backups {
      background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    }
    
    .stat-card.projects {
      background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    }
    
    /* Quick Links */
    .quick-link {
      display: block;
      background: white;
      padding: 20px;
      border-radius: 12px;
      text-decoration: none;
      color: var(--dark-color);
      transition: all 0.3s;
      text-align: center;
    }
    
    .quick-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .quick-link i {
      font-size: 24px;
      margin-bottom: 10px;
      display: block;
    }
    
    .quick-link h6 {
      font-weight: 500;
      margin-bottom: 0;
    }
    
   
    
       /*=================================Dashboard page end==================================*/
 
     /* Menu Toggle Button */
    .menu-toggle {
      cursor: pointer;
      font-size: 1.25rem;
      padding: 0.5rem;
      display: none;
    }
    
    
    /*=================================Project add css start==================================*/
        
    /* Main Content */
    /* Topbar */
    .topbar {
      background: white;
      padding: 15px 25px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    
    .user-profile {
      display: flex;
      align-items: center;
    }
    
    .user-profile img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
      object-fit: cover;
    }
    
    /* Form Card */
    .form-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
      padding: 30px;
      margin-bottom: 30px;
    }
    
    .form-header {
      border-bottom: 1px solid rgba(0,0,0,0.05);
      padding-bottom: 15px;
      margin-bottom: 25px;
    }
    
    .form-header h4 {
      font-weight: 600;
      margin-bottom: 5px;
    }
    
    .form-header p {
      color: #6c757d;
      margin-bottom: 0;
    }
    
    .form-label {
      font-weight: 500;
      margin-bottom: 8px;
    }
    
    .form-control, .form-select {
      height: 45px;
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      padding-left: 15px;
      transition: all 0.3s;
    }
    
    .form-control:focus, .form-select:focus {
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
      border-color: var(--primary-color);
    }
    
    textarea.form-control {
      height: auto;
      min-height: 100px;
    }
    
    .btn-submit {
      background: var(--primary-color);
      border: none;
      height: 45px;
      border-radius: 8px;
      font-weight: 500;
      padding: 0 25px;
      transition: all 0.3s;
    }
    
    .btn-submit:hover {
      background: var(--secondary-color);
      transform: translateY(-2px);
    }
    
    /* Status Badges */
    .status-badge {
      display: inline-block;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
    }
    
    .status-pending {
      background: #fff3cd;
      color: #856404;
    }
    
    .status-ongoing {
      background: #cce5ff;
      color: #004085;
    }
    
    .status-completed {
      background: #d4edda;
      color: #155724;
    }
    
    /* Priority Indicator */
    .priority-indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 5px;
    }
    
    .priority-low {
      background: #28a745;
    }
    
    .priority-medium {
      background: #ffc107;
    }
    
    .priority-high {
      background: #dc3545;
    }
    
    /*=================================Project add css end==================================*/
    
    
    
    /*=================================Project Delete css Start==================================*/
    
   .confirmation-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      padding: 30px;
      max-width: 600px;
      margin: 0 auto;
    }
    .warning-icon {
      font-size: 3.5rem;
      color: var(--danger);
    }
    .btn-danger {
      background-color: var(--danger-color);
      border: none;
      padding: 10px 20px;
    }  
    
    /*=================================Project Delete css end==================================*/
    
    /*=================================Project Details css Start==================================*/
    
    .card {
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      border: none;
    }
    .status-badge {
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
    }
    .priority-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 5px;
    }    
    
    /*=================================Project Details css end==================================*/
    
    
/*=================================Project Edit css Start==================================*/
    
 .form-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      padding: 30px;
    }
    .form-control, .form-select {
      height: 45px;
      border-radius: 8px;
    }
    .form-control:focus, .form-select:focus {
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
      border-color: var(--primary);
    }
    textarea.form-control {
      min-height: 120px;
    }
    .btn-primary {
      background-color:  var(--primary-color);
      border: none;
      padding: 10px 20px;
    }
    .btn-primary:hover {
      background-color:  var(--primary-color);
    }
    .status-badge {
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
    }
    .priority-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 5px;    
    }
/*=================================Project Edit css end ==================================*/
    
    
    
/*=================================Project View css Start ==================================*/
     
    .user-profile {
      display: flex;
      align-items: center;
    }
    
    .user-profile img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
      object-fit: cover;
    }
    
    /* Content Header */
    .content-header {
      padding: 25px;
      background: white;
      margin-bottom: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    }
    
    .content-header h2 {
      font-weight: 600;
      margin-bottom: 5px;
    }
    
    .content-header .breadcrumb {
      background: transparent;
      padding: 0;
      margin-bottom: 0;
    }
    
    /* Projects Table */
    .projects-table {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
      overflow: hidden;
    }
    
    .table thead th {
      border-bottom: none;
      background: #f8f9fa;
      font-weight: 600;
      padding: 15px;
    }
    
    .table tbody td {
      padding: 15px;
      vertical-align: middle;
    }
    
    .table tbody tr:not(:last-child) {
      border-bottom: 1px solid #f0f0f0;
    }
    
    /* Status Badges */
    .status-badge {
      display: inline-block;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
    }
    
    .status-pending {
      background: #fff3cd;
      color: #856404;
    }
    
    .status-ongoing {
      background: #cce5ff;
      color: #004085;
    }
    
    .status-completed {
      background: #d4edda;
      color: #155724;
    }
    
    /* Priority Indicator */
    .priority-indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 5px;
    }
    
    .priority-low {
      background: #28a745;
    }
    
    .priority-medium {
      background: #ffc107;
    }
    
    .priority-high {
      background: #dc3545;
    }
    
    /* Action Buttons */
    .action-btn {
      width: 30px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s;
    }
    
    .action-btn:hover {
      transform: translateY(-2px);
    }
    
    .btn-view {
      background: rgba(67, 97, 238, 0.1);
      color: var(--primary-color);
    }
    
    .btn-edit {
      background: rgba(255, 193, 7, 0.1);
      color: var(--warning-color);
    }
    
    .btn-delete {
      background: rgba(220, 53, 69, 0.1);
      color: var(--danger-color);
    }
    
    /* Add Project Button */
    .btn-add-project {
      background: var(--primary-color);
      border: none;
      height: 45px;
      border-radius: 8px;
      font-weight: 500;
      padding: 0 20px;
      transition: all 0.3s;
    }
    
    .btn-add-project:hover {
      background: var(--secondary-color);
      transform: translateY(-2px);
    }
    
    /* Notes and Remarks styling */
    .notes-remarks-cell {
      max-width: 200px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: pointer;
    }
    
    .notes-remarks-popover {
      max-width: 400px;
      word-wrap: break-word;
      white-space: normal;
    }
    
    /* Menu Toggle Button */
    .menu-toggle {
      cursor: pointer;
      font-size: 1.25rem;
      padding: 0.5rem;
      display: none;
    }
    .bottom {
    padding: 15px;
}    
/*=================================Project View css End ==================================*/
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
       /*=================================Mobile Responsive width 992px start==================================*/    
    
      @media (max-width: 992px) {
      .sidebar {
        transform: translateX(-100%);
      }
      
      .sidebar.active {
        transform: translateX(0);
      }
      
      .main-content {
        margin-left: 0;
      }
      
      .menu-toggle {
        display: block !important;
      }
    }
    
           /*=================================Mobile Responsive width 992px start==================================*/
    
    
    /*=================================Mobile Responsive width 768 start==================================*/

    
    @media (max-width: 768px) {
      .login-container {
        flex-direction: column;
      }
      
      .login-illustration {
        padding: 30px 20px;
      }
      
      .login-form {
        padding: 40px 30px;
      }
      
      .logo {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }
    }
    
    /*=================================Mobile Responsive width 768 end ==================================*/
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /* Animation */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .animated {
      animation: fadeIn 0.6s ease-out forwards;
    }
    
    .delay-1 {
      animation-delay: 0.2s;
    }
    
    .delay-2 {
      animation-delay: 0.4s;
    }
    
    
    
    
    
    
    
    /* Floating animation */
    @keyframes floating {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }
    
    .floating {
      animation: floating 3s ease-in-out infinite;
    }
    
     @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .animated {
      animation: fadeIn 0.6s ease-out forwards;
    }
    
    .delay-1 {
      animation-delay: 0.2s;
    }
    
    .delay-2 {
      animation-delay: 0.4s;
    }
    
    .delay-3 {
      animation-delay: 0.6s;
    }