    body {
      background-color: #e7f0fc;
    }
    .main-card {
      background: #fff;
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
    }
    .left-section, .right-section {
      padding: 30px;
    }
    .left-section {
      background-color: #f8f9fa;
      border-right: 1px solid #dee2e6;
    }
    .form-check-label a {
      text-decoration: underline;
    }
    .navbar-brand {
      font-weight: bold;
    }

    .btn_default{
        background-color: #213c79;
        color: white;
        border-radius: 0.5rem;
        padding: 10px 20px;
        font-weight: bold;
    }
    .sidebar-header-logo {
    width: 100%;
    height: 100%;
   /* background-image: url('../img/banner.jpeg');  or use asset('images/logo.png') in Blade */
   background-color:#4373ba;
    background-repeat: no-repeat;
    background-size: cover;   
}

 .progress-card {
      width: 300px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      margin: 50px auto;
    }

    .progress-header {
      background-color: #00246B;
      color: white;
      text-align: center;
      padding: 20px;
    }

    #progress-circle90 {
      width: 150px;
      height: 150px;
      background: conic-gradient(#4CAF50 0% 90%, #ccc 10% 100%);
      border-radius: 50%;
      margin: 30px auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
   

    .progress-inner {
      width: 110px;
      height: 110px;
      background: #f8f9fa;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .progress-inner span {
      font-size: 24px;
      font-weight: 600;
      color: #337ab7;
    }

    .progress-footer {
      background-color: #91f593;
      padding: 15px;
      font-size: 16px;
      display: flex;
      align-items: center;
    }

    .progress-footer i {
      color: #337ab7;
    }
      .form-section {
      max-width: 1000px;
      margin: auto;
      padding: 40px 20px;
    }
    .form-title {
      text-align: center;
      font-size: 24px;
      font-weight: 600;
    }
    .form-title span {
      color: orange;
    }
    .save-btn {
      background-color: #00246B;
      color: white;
      font-weight: 600;
    }
    .save-btn:hover {
      background-color: #3c68b4;
    }
    
    .bg_primary{
       background-color: #00246b; 
    }
    .btn_primary{
       background-color: #00246b; 
       color:white;
    }
     .btn_primary:hover {
      background-color: #3c68b4;
      color:white;
    }
    
    
     .top-nav {
        background-color: #228475;
      }


      .nav_item li a {
        font-size: 1rem;
      }

      .social-icons a {
        width: 24px;
        height: 24px;
        background: #4373ba ;
        border-radius: 3px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 12px;
        transition: background-color 0.3s ease;
      }

      .social-icons a:hover {
        background: red;
        color: white;
      }

      .navbar-brand {
        text-decoration: none;
      }

      .navbar-brand:hover {
        text-decoration: none;
      }

      .nav-link.text-warning:hover {
        color: #fcd34d;
      }


      /* Mobile responsive adjustments */
      @media (max-width: 768px) {
        .top-nav .row > div {
          text-align: center;
          margin-bottom: 10px;
        }

        .top-nav .col-md-6:last-child {
          margin-bottom: 0;
        }

        .social-icons {
          justify-content: center;
          margin-top: 10px;
        }
      }

      /* Dropdown menu styling */
      .dropdown-menu {
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }

      .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #1e3a8a;
      }
    
    
