/* Certificate Cards */
.certificate-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.certificate-image {
  position: relative;
  overflow: hidden;
}

.certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.certificate-card:hover .certificate-overlay {
  opacity: 1;
}

.certificate-zoom {
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.certificate-zoom:hover {
  background: rgba(255,255,255,0.3);
  color: white;
  text-decoration: none;
}

.certificate-info {
  padding: 15px;
  background: #fff;
}

.certificate-info h6 {
  margin: 0;
  color: #333;
  font-weight: 600;
}

.certificate-info span {
  font-size: 0.9em;
  color: #666;
}

/* Get Started Section */
.get-started-section {
  background: linear-gradient(135deg, #20639B 0%, #1d4d77 100%);
  padding: 80px 0;
  color: #fff;
  text-align: center;
  margin: 0;
}

.get-started-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.get-started-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.get-started-section .btn-primary {
  background-color: #ED553B;
  border-color: #ED553B;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.get-started-section .btn-primary:hover {
  background-color: #ff6b4d;
  border-color: #ff6b4d;
  box-shadow: 0 5px 15px rgba(237, 85, 59, 0.3);
}

@media (max-width: 767.98px) {
  .get-started-section {
    padding: 40px 0;
  }
  
  .get-started-section h2 {
    font-size: 2rem;
  }
  
  .get-started-section p {
    font-size: 1rem;
  }
} 