/* Start custom CSS for html, class: .elementor-element-33ca1b6 *//* =====================================================
   CREDENTIALS PAGE
===================================================== */
.credentials-page {
  width: 100%;
  min-height: 100vh;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(to bottom, #05070d 0%, #0a1a2f 100%);
}

.credentials-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* SECTION */
.credentials-section {
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* SECTION HEADER */
.credentials-section .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.credentials-section .section-header h2 {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #7fd7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HEADER ICON */
.credentials-section .section-header i {
  font-size: 32px;
  color: #00b4ff;
}

/* GRID FOR CERTIFICATES */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.credential-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,180,255,0.35);
}

/* CERTIFICATE ICON */
.credential-box i {
  font-size: 28px;
  color: #00b4ff;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CERTIFICATE TEXT */
.credential-box p {
  font-size: 16px;
  color: rgba(234,242,255,0.92);
  margin: 0;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .credentials-section {
    padding: 30px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .section-header i {
    font-size: 28px;
  }
  .credential-box i {
    font-size: 24px;
  }
  .credential-box p {
    font-size: 15.5px;
  }
}

@media (max-width: 480px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }
  .credentials-section {
    padding: 25px;
    border-radius: 20px;
  }
  .section-header h2 {
    font-size: 22px;
  }
  .section-header i {
    font-size: 24px;
  }
  .credential-box i {
    font-size: 22px;
  }
  .credential-box p {
    font-size: 15px;
  }
}/* End custom CSS */