body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #2c3e50;
  line-height: 1.6;
}

.navbar {
  background-color: white;
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.navbar .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.navbar-brand .logo {
  height: 40px;
  transition: transform 0.3s ease;
}
.navbar-brand .logo:hover {
  transform: translateY(-2px);
}
.navbar .nav-links {
  display: none;
}

.banner {
  height: 300px;
  background-image: url("../images/construction-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 60px;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.6));
}
.banner__content {
  position: relative;
  z-index: 1;
  top: 80px;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 1rem;
}
.banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  animation: fadeInDown 1s ease;
}
.banner__subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease;
}

.verification-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  margin-top: -30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.verification-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.verification-card__header i {
  font-size: 1.75rem;
  color: #ff4b4b;
}
.verification-card__header h2 {
  margin: 0;
  font-weight: 600;
  font-size: 1.5rem;
}

.verification-form .form-group {
  margin-bottom: 1.5rem;
}
.verification-form .form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.verification-form .form-label i {
  color: #ff4b4b;
}
.verification-form .input-group {
  position: relative;
}
.verification-form .input-group .form-control {
  border: 2px solid #e0e0e0;
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.verification-form .input-group .form-control:focus {
  border-color: #ff4b4b;
  box-shadow: 0 0 0 0.2rem rgba(255, 75, 75, 0.25);
}
.verification-form .input-group .input-group-text {
  background-color: #ff4b4b;
  border: none;
  color: white;
}
.verification-form .form-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  margin-top: 0.5rem;
}
.verification-form .form-text i {
  color: #3498db;
}

.btn-search {
  background-color: #ff4b4b;
  border: none;
  padding: 1rem 2rem;
  width: 100%;
  color: white;
  transition: transform 0.3s ease;
}
.btn-search:hover {
  transform: translateY(-2px);
}
.btn-search i {
  margin-right: 0.5rem;
}
.btn-search:hover {
  background-color: #ff1818;
}

.certificates-section {
  margin-top: 2rem;
}
.certificates-section .section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.certificates-section .section-header i {
  color: #ff4b4b;
  font-size: 1.5rem;
}
.certificates-section .section-header h3 {
  margin: 0;
  font-weight: 600;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.certificates-grid .certificate-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.certificates-grid .certificate-item:hover {
  transform: translateY(-2px);
}
.certificates-grid .certificate-item .certificate-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.certificates-grid .certificate-item .certificate-header i {
  color: #27ae60;
  font-size: 1.5rem;
}

.alert-custom {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(241, 196, 15, 0.1);
  border: 1px solid #f1c40f;
  color: #927608;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}
.alert-custom i {
  font-size: 1.5rem;
}
.alert-custom p {
  margin: 0;
}

.footer {
  background-color: #4a4a4a;
  color: white;
}
.footer__main {
  padding: 3rem 0;
}
.footer__main .container {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.footer__logo .logo {
  height: 40px;
  filter: brightness(0) invert(1);
}
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer__contact-item i {
  width: 20px;
}
.footer__contact-item:hover {
  color: #f0f0f0;
}
.footer__links-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.footer__links-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links-column a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer__links-column a:hover {
  color: #f0f0f0;
}
.footer__bottom {
  border-top: 3px solid #890404;
  padding: 1.5rem 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__legal {
  display: flex;
  gap: 2rem;
}
.footer__legal a {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer__legal a:hover {
  color: #f0f0f0;
}
.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .footer__main .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer__contact-info {
    align-items: center;
  }
  .footer__links-group {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer__links-column {
    align-items: center;
  }
  .footer__bottom .container {
    flex-direction: column;
    gap: 1rem;
  }
  .footer__legal {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}/*# sourceMappingURL=styles.css.map */