/* Font Size and Font */

body {
  font-family: "Poppins-Bold";
  
}

p {
  font-size: 20px;
}

/* Dropdown hover animation */
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  animation: fadeIn 0.3s ease-in-out;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  border-radius: 0.25rem;
  min-width: 220px;
}

.dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: #003087;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f0f4ff;
  color: #0056b3;
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

body {
  padding-top: 80px;
  /* adjust based on your navbar height */
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

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

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

    .banner-container {
      position: relative;
      width: 100%;
      text-align: center;
      color: white;
    }

    .footer-custom {
      background-color: #e6f0fa;
      color: #000080;
      padding: 20px 0;
    }

    .footer-custom a {
      color: #000080;
      text-decoration: none;
    }

    .footer-custom a:hover {
      text-decoration: underline;
    }

    .certificate-card {
      min-height: 300px;
      /* Adjusted height to accommodate smaller images */
      border: none;
      background: none;
    }

    .certificate-img {
      max-width: 80%;
      /* Reduced from 100% to 80% */
      height: auto;
      margin: 0 auto;
      /* Center the image */
    }

    .card {
      border: none;
    }

    .card-title {
      border: none;
      /* Overrides any border from the 'border' class */
    }

    .card-body {
      border: none;
      background: none;
    }

    .logo-card {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 5px;
    }

    .logo-card img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
    }

    .img-fluid {
      width: 100%;
      height: auto;
    }

    @media (max-width: 767.98px) {
      .img-fluid {
        width: 100%;
        height: auto;
      }

      .footer-custom p,
      .footer-custom ul {
        text-align: center;
        margin: 0 auto;
        max-width: 90%;
      }
    }

    .d-block.d-sm-flex.flex-wrap a {
      word-break: break-all;
      white-space: normal;
      overflow-wrap: break-word;
      max-width: 100%;
    }

    @media (max-width: 576px) {

      .d-block.d-sm-flex.flex-wrap {
        text-align: center;
      }

      .d-block.d-sm-flex.flex-wrap a {
        margin-left: 0;
        display: block;
        text-align: center;
      }
    }
