



.certificate-img {
    width: 100%; /* Make images responsive */
    height: 350px; /* Set fixed height */
    object-fit: cover; /* Maintain aspect ratio & crop overflow */
    border-radius: 10px; /* Optional: Rounded corners */
}

.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
}

.profile-image {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    border: 3px solid white;
    max-width: none !important;
}
.breadcrumb {
    flex-direction: column-reverse !important;
}

.glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* text-align: center; */
    color: white;
    /* font-size: 24px; */
    font-weight: bold;
}
@media (min-width: 768px) {
    .col-md-1-5 {
        flex: 0 0 auto;
        width: 10.666667%;
    }
}

.bg-white {
    background-color: #fff !important;
}

.cursor-pointer {
    cursor: pointer;
}

@media screen and (min-width: 1025px) {
  /* Your styles for PC screens go here */
    .banner-section {
        margin: 0 104px;
    }
    .user-info {
        margin-top: 3rem;
    }
}

.contact-info-container {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid var(--neutral-30);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-text {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}