
/* =====================================================
   CERTIFICATE PAGE DESIGN
===================================================== */

.certificate-page {
    overflow: hidden;
    color: var(--ijp-text);
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.certificate-breadcrumb {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.certificate-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 31, 14, 0.90) 0%, rgba(7, 91, 42, 0.76) 48%, rgba(0, 0, 0, 0.42) 100%),
        radial-gradient(circle at 80% 10%, rgba(228, 220, 37, 0.26), transparent 35%);
    backdrop-filter: blur(1px);
}

.certificate-breadcrumb::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    right: -170px;
    bottom: -240px;
    z-index: 1;
    border-radius: 50%;
    background: rgba(228, 220, 37, 0.22);
}

.certificate-breadcrumb .container {
    position: relative;
    z-index: 2;
}

.certificate-breadcrumb-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 92px 15px;
    text-align: center;
    color: #ffffff;
}

.certificate-breadcrumb-content h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: clamp(44px, 7vw, 82px);
    line-height: 1.03;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.certificate-breadcrumb-content p {
    max-width: 780px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.85;
}

.certificate-breadcrumb .breadcrumb {
    margin-bottom: 0;
}

.certificate-breadcrumb .breadcrumb-item,
.certificate-breadcrumb .breadcrumb-item a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.certificate-breadcrumb .breadcrumb-item.active,
.certificate-breadcrumb .breadcrumb-item a:hover {
    color: #d7ff8f;
}

.certificate-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.76);
}

.certificate-overview-section {
    padding: 94px 0;
    background:
        radial-gradient(circle at 0% 10%, rgba(228, 220, 37, 0.15), transparent 32%),
        radial-gradient(circle at 100% 0%, rgba(17, 146, 69, 0.11), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf1 100%);
}

.certificate-content-card {
    height: 100%;
    padding: 36px;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 24px 60px rgba(7, 91, 42, 0.12);
}

.certificate-content-card h2,
.certificate-section-head h2,
.certificate-scope-box h2 {
    margin: 0 0 16px;
    color: var(--ijp-text);
    font-family: "Oswald", sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.certificate-content-card h2 span,
.certificate-section-head h2 span {
    color: var(--ijp-green);
}

.certificate-content-card p {
    margin: 0 0 24px;
    color: var(--ijp-muted);
    font-size: 15px;
    line-height: 1.85;
}

.certificate-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 26px;
}

.certificate-summary-item {
    padding: 18px;
    border-radius: 22px;
    background: #f7fbf1;
    border: 1px solid rgba(7, 91, 42, 0.08);
}

.certificate-summary-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--ijp-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.certificate-summary-item strong {
    color: var(--ijp-dark);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 900;
}

.certificate-action-row,
.certificate-scope-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.certificate-btn {
    min-height: 52px;
    padding: 14px 21px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 0;
    transition: all 0.25s ease;
}

.certificate-btn svg {
    width: 18px;
    height: 18px;
}

.certificate-btn-primary,
.certificate-btn-green {
    background: linear-gradient(135deg, var(--ijp-dark), var(--ijp-green));
    box-shadow: 0 16px 32px rgba(17, 146, 69, 0.24);
}

.certificate-btn-primary:hover,
.certificate-btn-green:hover {
    color: #172217;
    background: var(--ijp-yellow);
    transform: translateY(-3px);
}

.certificate-btn-secondary,
.certificate-btn-yellow {
    color: #172217;
    background: var(--ijp-yellow);
}

.certificate-btn-secondary:hover,
.certificate-btn-yellow:hover {
    color: #ffffff;
    background: var(--ijp-dark);
    transform: translateY(-3px);
}

.certificate-btn-light {
    color: var(--ijp-dark);
    background: #ffffff;
}

.certificate-btn-light:hover {
    color: #172217;
    background: var(--ijp-yellow);
    transform: translateY(-3px);
}

.certificate-image-card {
    position: relative;
    padding: 22px;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 28px 70px rgba(7, 91, 42, 0.16);
}

.certificate-image-card::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(228, 220, 37, 0.22);
    pointer-events: none;
}

.certificate-image-card a {
    position: relative;
    z-index: 2;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    background: #f8fcf3;
    border: 1px solid rgba(7, 91, 42, 0.10);
}

.certificate-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.certificate-image-card:hover img {
    transform: scale(1.025);
}

.certificate-image-caption {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--ijp-dark), var(--ijp-green));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.certificate-image-caption strong {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.certificate-image-caption span {
    color: var(--ijp-yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.certificate-details-section {
    padding: 92px 0;
    background: #ffffff;
}

.certificate-section-head {
    max-width: 880px;
    margin: 0 auto 34px;
    text-align: center;
}

.certificate-section-head p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--ijp-muted);
    font-size: 15px;
    line-height: 1.85;
}

.certificate-detail-card {
    height: 100%;
    padding: 28px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 18px 42px rgba(7, 91, 42, 0.09);
    transition: all 0.3s ease;
}

.certificate-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(7, 91, 42, 0.16);
}

.certificate-detail-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 20px;
    color: #172217;
    background: var(--ijp-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.certificate-detail-icon svg {
    width: 28px;
    height: 28px;
}

.certificate-detail-card h3 {
    margin: 0 0 8px;
    color: var(--ijp-dark);
    font-family: "Oswald", sans-serif;
    font-size: 25px;
    line-height: 1.18;
    text-transform: uppercase;
}

.certificate-detail-card p {
    margin: 0;
    color: var(--ijp-muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 700;
}

.certificate-scope-section {
    padding: 28px 0 96px;
    background: #ffffff;
}

.certificate-scope-box {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 38px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(228, 220, 37, 0.24), transparent 34%),
        linear-gradient(135deg, #031f0e 0%, #06401d 48%, #075b2a 100%);
    box-shadow: 0 28px 70px rgba(7, 91, 42, 0.20);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
    align-items: center;
}

.certificate-scope-box span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #172217;
    background: var(--ijp-yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.certificate-scope-box h2 {
    color: #ffffff;
}

.certificate-scope-box p {
    max-width: 790px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
}

.certificate-scope-actions {
    display: grid;
    gap: 12px;
}

/* Header menu text fine tune for Certificate option */
.navbar .nav-link[href="certificate.html"] {
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .certificate-scope-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .certificate-overview-section,
    .certificate-details-section {
        padding: 76px 0;
    }

    .certificate-content-card,
    .certificate-image-card {
        border-radius: 30px;
    }
}

@media (max-width: 767px) {
    .certificate-breadcrumb {
        min-height: 300px;
    }

    .certificate-breadcrumb-content {
        padding: 64px 10px;
    }

    .certificate-breadcrumb-content h1 {
        font-size: 38px;
    }

    .certificate-breadcrumb-content p {
        font-size: 14px;
    }

    .certificate-content-card,
    .certificate-image-card,
    .certificate-scope-box {
        padding: 24px;
        border-radius: 28px;
    }

    .certificate-summary-grid {
        grid-template-columns: 1fr;
    }

    .certificate-action-row .certificate-btn,
    .certificate-scope-actions .certificate-btn {
        width: 100%;
    }

    .certificate-section-head h2,
    .certificate-content-card h2,
    .certificate-scope-box h2 {
        font-size: 32px;
    }
}

@media (max-width: 420px) {
    .certificate-breadcrumb-content h1 {
        font-size: 32px;
    }

    .certificate-image-card {
        padding: 14px;
    }

    .certificate-image-caption {
        padding: 15px;
    }
}

/* =====================================================
   CERTIFICATE PAGE HEADER + SVG FINAL FIX
   Fixes oversized black SVG icons, fixed-header overlay,
   topbar spacing, mobile header spacing and footer SVGs.
===================================================== */

/* Keep certificate page header in normal flow so breadcrumb is not hidden */
body#top {
    padding-top: 0 !important;
}

.sticky-header-wrapper {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #f7fbf1;
}

/* Global inline SVG icon system used by certificate.html */
.ijp-icon {
    width: 1em;
    height: 1em;
    min-width: 1em;
    display: inline-block;
    vertical-align: -0.15em;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    pointer-events: none;
}

/* Topbar correction */
.sticky-header-wrapper .topbar {
    min-height: auto !important;
    padding: 8px 0 !important;
    overflow: hidden;
}

.sticky-header-wrapper.is-sticky .topbar {
    padding: 5px 0 !important;
}

.sticky-header-wrapper .topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.sticky-header-wrapper .topbar-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    min-width: 0;
}

.sticky-header-wrapper .topbar-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
    text-decoration: none;
}

.sticky-header-wrapper .topbar-chip:hover {
    color: #e4dc25 !important;
}

.sticky-header-wrapper .topbar-chip .ijp-icon {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    color: #e4dc25 !important;
}

/* Header/nav spacing correction */
.sticky-header-wrapper .site-header {
    position: relative !important;
    top: auto !important;
    padding: 12px 0 !important;
}

.sticky-header-wrapper.is-sticky .site-header {
    padding: 8px 0 !important;
}

.sticky-header-wrapper .navbar-box {
    min-height: 78px;
    align-items: center;
}

.sticky-header-wrapper .brand-logo img {
    width: 160px !important;
    max-width: 160px !important;
    height: auto !important;
}

.sticky-header-wrapper.is-sticky .brand-logo img {
    width: 135px !important;
    max-width: 135px !important;
}

.sticky-header-wrapper .header-mobile-call .ijp-icon {
    width: 19px !important;
    height: 19px !important;
    min-width: 19px !important;
}

.sticky-header-wrapper .header-enquiry-btn {
    text-decoration: none !important;
}

/* Keep breadcrumb safely below sticky header */
.certificate-breadcrumb {
    margin-top: 0 !important;
}

/* Certificate page icon sizing */
.breadcrumb-small-title .ijp-icon,
.ijp-tag .ijp-icon {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
}

.certificate-detail-icon .ijp-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
}

.certificate-btn .ijp-icon,
.footer-cta-btn .ijp-icon {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
}

/* Footer SVG icon correction */
.footer-social .ijp-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
}

.footer-link-list .ijp-icon {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
}

.footer-contact-item > span .ijp-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
}

/* Better certificate image display */
.certificate-image-card img {
    max-height: 760px;
    object-fit: contain;
    background: #ffffff;
}

/* Tablet and mobile refinements */
@media (max-width: 1399px) {
    .sticky-header-wrapper .navbar-collapse {
        max-height: calc(100vh - 128px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

@media (max-width: 991px) {
    .sticky-header-wrapper .topbar {
        padding: 7px 0 !important;
    }

    .sticky-header-wrapper .topbar-wrap {
        align-items: flex-start;
        gap: 6px;
    }

    .sticky-header-wrapper .topbar-group {
        width: 100%;
        gap: 8px 14px;
    }

    .sticky-header-wrapper .topbar-chip {
        white-space: normal;
        font-size: 11.5px;
    }

    .sticky-header-wrapper .site-header {
        padding: 8px 0 !important;
    }

    .sticky-header-wrapper .brand-logo img {
        width: 145px !important;
        max-width: 145px !important;
    }

    .sticky-header-wrapper.is-sticky .brand-logo img {
        width: 125px !important;
        max-width: 125px !important;
    }
}

@media (max-width: 767px) {
    .sticky-header-wrapper .topbar {
        display: none;
    }

    .sticky-header-wrapper .navbar-box {
        min-height: 66px;
    }

    .certificate-breadcrumb-content {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}

@media (max-width: 420px) {
    .sticky-header-wrapper .brand-logo img {
        width: 124px !important;
        max-width: 124px !important;
    }

    .sticky-header-wrapper.is-sticky .brand-logo img {
        width: 112px !important;
        max-width: 112px !important;
    }
}


/* =====================================================
   CERTIFICATE PAGE CTA / SCOPE SECTION - FINAL DESIGN
   Screenshot type design
===================================================== */

.certificate-scope-section,
.ijp-cta-section {
    padding: 70px 0 90px;
    background: #f6fbf3;
}

.certificate-scope-box,
.ijp-cta-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 48px 42px;
    border-radius: 34px;
    color: #ffffff;
    background: linear-gradient(110deg, #003918 0%, #075b2a 48%, #246d25 100%) !important;
    box-shadow: 0 28px 70px rgba(7, 91, 42, 0.16);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 36px;
    align-items: center;
}

.certificate-scope-box::before,
.ijp-cta-box::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -210px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.certificate-scope-box span,
.ijp-cta-box span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 15px;
    border-radius: 999px;
    color: #071b0d !important;
    background: #e4dc25 !important;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.certificate-scope-box h2,
.certificate-scope-box h4,
.ijp-cta-box h2,
.ijp-cta-box h4 {
    max-width: 850px;
    margin: 0 0 14px;
    color: #ffffff !important;
    font-family: "Oswald", sans-serif;
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.certificate-scope-box p,
.ijp-cta-box p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.certificate-scope-actions,
.ijp-cta-actions {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 14px;
}

.certificate-scope-actions a,
.certificate-btn,
.ijp-cta-actions a,
.ijp-btn {
    width: 100%;
    min-height: 54px;
    padding: 14px 22px !important;
    border-radius: 999px !important;
    border: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.25s ease;
}

.certificate-scope-actions a:first-child,
.certificate-btn-yellow,
.ijp-cta-actions a:first-child,
.ijp-btn-yellow {
    color: #071b0d !important;
    background: #e4dc25 !important;
}

.certificate-scope-actions a:last-child,
.certificate-btn-white,
.ijp-cta-actions a:last-child,
.ijp-btn-white {
    color: #075b2a !important;
    background: #ffffff !important;
}

.certificate-scope-actions a:hover,
.certificate-btn:hover,
.ijp-cta-actions a:hover,
.ijp-btn:hover {
    color: #ffffff !important;
    background: #031f0e !important;
    transform: translateY(-4px);
}

.certificate-scope-actions svg,
.certificate-btn svg,
.ijp-cta-actions svg,
.ijp-btn svg,
.certificate-scope-actions .ijp-icon,
.ijp-cta-actions .ijp-icon {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    stroke: currentColor !important;
    fill: none !important;
    display: inline-block !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .certificate-scope-box,
    .ijp-cta-box {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .certificate-scope-actions,
    .ijp-cta-actions {
        max-width: 100%;
        margin-left: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .certificate-scope-section,
    .ijp-cta-section {
        padding: 50px 0 70px;
    }

    .certificate-scope-box,
    .ijp-cta-box {
        padding: 30px 22px;
        border-radius: 26px;
        text-align: center;
    }

    .certificate-scope-box span,
    .ijp-cta-box span {
        margin-left: auto;
        margin-right: auto;
    }

    .certificate-scope-box h2,
    .certificate-scope-box h4,
    .ijp-cta-box h2,
    .ijp-cta-box h4 {
        font-size: 32px;
    }

    .certificate-scope-actions,
    .ijp-cta-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .certificate-scope-box,
    .ijp-cta-box {
        padding: 26px 18px;
    }

    .certificate-scope-box h2,
    .certificate-scope-box h4,
    .ijp-cta-box h2,
    .ijp-cta-box h4 {
        font-size: 28px;
    }

    .certificate-scope-actions a,
    .certificate-btn,
    .ijp-cta-actions a,
    .ijp-btn {
        min-height: 50px;
        font-size: 12px !important;
        white-space: normal;
    }
}


/* =====================================================
   CERTIFICATE PAGE FIXED STICKY HEADER FINAL FIX
   Paste this at the very bottom of certificate.css
===================================================== */

:root {
    --fixed-header-height: 150px;
}

/* Fixed header spacing */
html {
    scroll-padding-top: calc(var(--fixed-header-height) + 12px);
}

body#top {
    padding-top: var(--fixed-header-height) !important;
}

/* Main sticky header wrapper */
body#top .sticky-header-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #f7fbf1 !important;
    transition: all 0.28s ease;
}

body#top .sticky-header-wrapper.is-sticky {
    box-shadow: 0 18px 45px rgba(7, 91, 42, 0.18);
}

/* Topbar */
body#top .sticky-header-wrapper .topbar {
    position: relative !important;
    z-index: 2 !important;
    padding: 8px 0 !important;
    background: #075b2a !important;
    transition: all 0.28s ease;
}

body#top .sticky-header-wrapper.is-sticky .topbar {
    padding: 4px 0 !important;
}

body#top .sticky-header-wrapper .topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

body#top .sticky-header-wrapper .topbar-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    min-width: 0;
}

body#top .sticky-header-wrapper .topbar-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
    text-decoration: none;
}

body#top .sticky-header-wrapper .topbar-chip:hover {
    color: #e4dc25 !important;
}

/* Header */
body#top .sticky-header-wrapper .site-header {
    position: relative !important;
    top: auto !important;
    z-index: 1 !important;
    padding: 12px 0 !important;
    background: rgba(247, 251, 241, 0.96) !important;
    border-bottom: 1px solid rgba(7, 91, 42, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: all 0.28s ease;
}

body#top .sticky-header-wrapper.is-sticky .site-header {
    padding: 7px 0 !important;
}

/* Navbar box keeps same design from style.css */
body#top .sticky-header-wrapper .navbar-box {
    min-height: 82px;
    align-items: center;
    transition: all 0.28s ease;
}

body#top .sticky-header-wrapper.is-sticky .navbar-box {
    min-height: 66px;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(7, 91, 42, 0.13);
}

/* Logo */
body#top .sticky-header-wrapper .brand-logo img {
    width: 160px !important;
    max-width: 160px !important;
    height: auto !important;
    display: block !important;
    transition: all 0.28s ease;
}

body#top .sticky-header-wrapper.is-sticky .brand-logo img {
    width: 132px !important;
    max-width: 132px !important;
}

/* Mobile menu scroll */
@media (max-width: 1399px) {
    body#top .sticky-header-wrapper .navbar-collapse {
        max-height: calc(100vh - 135px);
        overflow-y: auto;
        overflow-x: hidden;
        margin-top: 14px;
        padding: 12px 0 4px;
        border-top: 1px solid rgba(7, 91, 42, 0.10);
    }
}

/* Tablet */
@media (max-width: 991px) {
    body#top .sticky-header-wrapper .topbar {
        padding: 6px 0 !important;
    }

    body#top .sticky-header-wrapper.is-sticky .topbar {
        padding: 4px 0 !important;
    }

    body#top .sticky-header-wrapper .topbar-wrap {
        align-items: flex-start;
        gap: 6px;
    }

    body#top .sticky-header-wrapper .topbar-group {
        width: 100%;
        gap: 8px 14px;
    }

    body#top .sticky-header-wrapper .topbar-chip {
        white-space: normal;
        font-size: 11.5px;
    }

    body#top .sticky-header-wrapper .site-header {
        padding: 8px 0 !important;
    }

    body#top .sticky-header-wrapper.is-sticky .site-header {
        padding: 6px 0 !important;
    }

    body#top .sticky-header-wrapper .brand-logo img {
        width: 145px !important;
        max-width: 145px !important;
    }

    body#top .sticky-header-wrapper.is-sticky .brand-logo img {
        width: 122px !important;
        max-width: 122px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    body#top .sticky-header-wrapper .topbar {
        display: none !important;
    }

    body#top .sticky-header-wrapper .navbar-box {
        min-height: 66px;
    }

    body#top .sticky-header-wrapper .navbar-collapse {
        max-height: calc(100vh - 92px);
    }

    body#top .certificate-breadcrumb {
        min-height: 300px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    body#top .sticky-header-wrapper .brand-logo img {
        width: 126px !important;
        max-width: 126px !important;
    }

    body#top .sticky-header-wrapper.is-sticky .brand-logo img {
        width: 112px !important;
        max-width: 112px !important;
    }
}

/* =====================================================
   SVG ICON SIZE FIX FOR CERTIFICATE PAGE
===================================================== */

body#top svg.ijp-icon {
    width: 1em;
    height: 1em;
    min-width: 1em;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: -0.15em;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;
    pointer-events: none;
}

body#top svg.ijp-icon path,
body#top svg.ijp-icon circle,
body#top svg.ijp-icon line,
body#top svg.ijp-icon polyline,
body#top svg.ijp-icon polygon {
    fill: none !important;
    stroke: currentColor !important;
}

body#top .breadcrumb-small-title .ijp-icon,
body#top .ijp-tag .ijp-icon {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
}

body#top .certificate-btn .ijp-icon,
body#top .footer-cta-btn .ijp-icon {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
}

body#top .footer-social .ijp-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
}

body#top .footer-link-list .ijp-icon {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
}

body#top .footer-contact-item > span .ijp-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
}