:root {
    --orange: #f57c00;
    --blue: #005cb9;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f9fa;
}

.profile-img {
    width: 100%;
    max-width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-img {
    position: sticky;
    top: 120px;
}

.profile-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-heading {
    color: #005cb9;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 5px solid #f57c00;
    padding-left: 15px;
}

.email-link {
    color: #f57c00;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.page-header {
  background: var(--orange);
  color: var(--white);
  margin-top: 24px;
  padding: 20px 0 !important;
  text-align: center;

}

.page-header h1 {
  font-size: 36px !important;
  font-weight: 700;
}

.page-header p {
    font-size: 18px;
    /* margin-top: 10px;
    margin-top: 120px; */
    /* To avoid overlap with Quick Menu + Navbar */
    /* padding: 100px 0; */
}

.breadcrumb {
    background: transparent;
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

@media (max-width: 576px) {
    .breadcrumb {
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
    }
}



.page-header h1 {
    font-weight: 600;
    color: var(--white) !important;
}


.main-content {
    padding: 60px 0;
}

.main-content h2 {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.main-content p {
    text-align: justify;
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }
}