.banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.breadcrumb span {
  color: var(--accent-gold);
  margin-left: 5px;
}

/* Certifications Page Styles */
.certifications-section {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}



.certificate-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    padding: 10px;
}

.certificate-content {
    padding: 20px;
    flex: 1;
    align-self: center;
}

.certificate-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.certificate-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}



.certificate-image {
    position: relative;
    width: 300px;
    height: 350px;
    flex-shrink: 0;
    border-left: 1px solid #eee;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.certificate-image a:hover .zoom-icon {
    opacity: 1;
}

.certificate-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 21, 98, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.certificate-image a:hover::before {
    opacity: 1;
}



/* Responsive Design */
@media (max-width: 576px) {
    .certificate-card {
        flex-direction: column;
    }
    .certificate-image {
        width: 100%;
        height: 500px;
        border-left: none;
        border-top: 1px solid #eee;
    }
}