
  .certificate-container {
 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 2rem;

    position: relative;
    overflow: hidden;
  }
  
  /* Remove background animation */
  .certificate-container::before {
    display: none;
  }

  .certificate-form {
    background: white;
    padding: 2rem 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .certificate-form::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #39cfca;
  }

  .certificate-title {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
  }
  
  .certificate-title::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background: #39cfca;
    bottom: -10px;
    left: 25%;
  }

  .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
  }

  .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f9fa;
  }

  .form-group input:focus {
    border-color: #39cfca;
    box-shadow: 0 0 0 3px rgba(57, 207, 202, 0.2);
    outline: none;
  }
  
  /* Remove floating effect for input */
  .form-group .focus-border {
    display: none;
  }

  .btn-group {
    display: none;
    gap: 1rem;
    margin-top: 1.5rem;
    width: 100%;
    justify-content: space-between;
  }
  
  .btn-download, .btn-view {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-download i, .btn-view i {
    margin-right: 8px;
  }

  .verification-message {
    padding: 12px;
    margin-top: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
  }
  
  .verification-success {
    background-color: rgba(57, 207, 202, 0.2);
    color: #2ba8a4;
    border: 1px solid #39cfca;
  }
  
  .verification-error {
    background-color: rgba(255, 76, 76, 0.2);
    color: #ff4c4c;
    border: 1px solid #ff4c4c;
  }

  .btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
  }
  
  /* Remove button hover animation */
  .btn::before {
    display: none;
  }

  .btn-verify {
    background: #005baa;
    color: white;
    width: 100%;
    margin-top: 1rem;
    position: relative;
  }
  
  .btn-verify:hover {
    background: #004a8c;
  }

  .btn-download {
    background: #39cfca;
    color: white;
  }

  .btn-view {
    background: #2ba8a4;
    color: white;
  }

  .btn:hover {
    background-color: #2ba8a4;
  }
  
  /* Remove spinner animation */
  .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    margin-right: 10px;
  }
  
  .spinner-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Remove certificate decorative elements */
  .certificate-decoration {
    display: none;
  }

  /* Hero Banner */
  .jbh-hero-banner {
    background: linear-gradient(135deg, #39cfca 0%, #2ba8a4 100%);
    height: 55vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 4vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    {% comment %} margin-bottom: 50px; {% endcomment %}
  }

  .jbh-hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

  .jbh-breadcrumb {
    margin-top: 20px;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
  }

  .jbh-breadcrumb a {
    text-decoration: none;
    color: white;
  }
  
  .jbh-breadcrumb a:hover {
    color: #f1f1f1;
    text-decoration: underline;
  }
  
  .jbh-breadcrumb span {
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .certificate-container {
      padding: 1rem;
    }

    .certificate-form {
      padding: 1.5rem;
      width: 90%;
    }

    .certificate-title {
      font-size: 1.5rem;
    }

    .btn-group {
      flex-direction: column;
      gap: 0.75rem;
    }

    .btn {
      width: 100%;
      padding: 10px 20px;
      font-size: 0.9rem;
    }
    
    .btn-download, .btn-view {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .jbh-hero-banner {
      height: 50vh;
    }
    
    .jbh-hero-title {
      font-size: 1.8rem;
    }
  }

  /* Additional media query for smaller screens */
  @media (max-width: 480px) {
    .certificate-form {
      width: 95%;
      padding: 1.2rem;
    }
    
    .form-group input {
      padding: 12px 10px;
      font-size: 0.9rem;
    }
    
    .btn {
      padding: 8px 16px;
      font-size: 0.85rem;
    }
    
    .btn i {
      margin-right: 5px;
    }
    
    .jbh-hero-title {
      font-size: 1.5rem;
    }
    
    .certificate-title {
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
  }

  /* Media Queries */
  @media screen and (max-width: 768px) {
    .btn-group {
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }

  @media screen and (max-width: 480px) {
    .certificate-form {
      width: 90%;
      padding: 1.5rem;
    }
    
    .btn {
      padding: 8px 16px;
      font-size: 0.85rem;
    }
    
    .btn-download, .btn-view {
      width: 100%;
    }
  }
