/* cleanup.css - All extracted inline styles */

/* ===== TOP HEADER STYLES ===== */
.top-header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100%;
}

.lang-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-select {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    padding: 4px 10px;
    padding-left: 0;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    min-width: 130px;
    font-family: Inter, sans-serif;
}

.lang-option-default,
.lang-option {
    background: #0A2240;
    color: #fff;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header-email {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    white-space: nowrap;
}

.top-header-email:hover {
    color: #fcd116;
}

/* ===== NAVIGATION STYLES ===== */
.nav-link-desktop {
    position: relative;
    padding: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s;
    font-size: 0.93rem;
    color: #0A2240;
    text-decoration: none;
}

.nav-link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background-color: #4f46e5;
    transform: scaleX(0);
    transition: transform 0.2s ease;
    transform-origin: left;
}

.nav-link-desktop:hover .nav-link-underline {
    transform: scaleX(1);
}

/* ===== POLICY DROPDOWN STYLES ===== */
.policy-dropdown {
    position: relative;
}

.policy-btn {
    font-size: 0.93rem;
    font-weight: 600;
    color: #0A2240;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
    white-space: nowrap;
    transition: color 0.2s;
}

.policy-btn:hover {
    color: #0056A8;
}

.policy-chevron {
    transition: transform 0.2s;
}

.policy-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 185px;
    background: #fff;
    border: 1.5px solid #D0DFF0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(10, 34, 64, 0.13);
    z-index: 9999;
    overflow: hidden;
}

.policy-menu-divider {
    height: 3px;
    background: linear-gradient(90deg, #0056A8, #0090D4);
}

.policy-menu-link {
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #EEF3FB;
}

.policy-menu-link:last-child {
    border-bottom: none;
}

.policy-menu-link:hover {
    background: #F0F5FB;
    color: #0056A8;
}

/* ===== CHECK CERTIFICATE BUTTON ===== */
.check-certificate-btn {
    background: linear-gradient(135deg, #0056A8, #0090D4);
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
}

.check-certificate-btn:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ===== MOBILE MENU STYLES ===== */
.mobile-menu-btn {
    color: #4f46e5;
    transition: color 0.2s;
}

.mobile-menu-btn:hover {
    color: #6366f1;
}

.mobile-menu-close {
    display: none;
    color: #4f46e5;
    transition: color 0.2s;
}

.mobile-menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    width: 16rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    z-index: 70;
}

.mobile-menu-nav {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mobile-menu-link {
    display: block;
    color: #374151;
    font-weight: 500;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-size: 0.875rem;
    text-decoration: none;
}

.mobile-menu-link:hover {
    color: #4f46e5;
    background-color: #eef2ff;
}

.mobile-menu-policy-section {
    background: #F0F5FB;
    border-radius: 8px;
    overflow: hidden;
    margin: 0.25rem 0;
}

.mobile-menu-policy-title {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0056A8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid #D0DFF0;
}

.mobile-menu-policy-section .policy-link {
    padding: 8px 24px;
    font-size: 0.875rem;
}

.mobile-menu-cert-section {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid #f3f4f6;
}

.mobile-menu-cert-btn {
    display: block;
    background-color: #4f46e5;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: background 0.2s;
    font-size: 0.875rem;
    text-decoration: none;
}

.mobile-menu-cert-btn:hover {
    background-color: #4338ca;
}

/* ===== STATS BAND STYLES ===== */
.stats-band {
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    background: linear-gradient(135deg, #0A2240 0%, #0056A8 100%);
}

.stats-band-top-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(90deg, #1eb53a, #fcd116, #00a3dd);
}

.stats-band-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(90deg, #00a3dd, #fcd116, #1eb53a);
}

.stats-item {
    transition: all 0.3s;
    padding-bottom: 15px;
}

.stats-item:hover {
    transform: scale(1.05);
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 640px) {
    .stats-number {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .stats-number {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .stats-number {
        font-size: 1.5rem;
    }
}

.stats-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-top: 6px;
    line-height: 1.25;
}

/* ===== SERVICES OVERVIEW STYLES ===== */
.services-overview {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(to bottom, #fff, rgba(79, 70, 229, 0.05));
    position: relative;
    overflow: hidden;
}

.services-bg-blur-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(30, 181, 58, 0.05);
    border-radius: 9999px;
    filter: blur(64px);
    transform: translate(50%, -50%);
}

.services-bg-blur-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    background-color: rgba(0, 163, 221, 0.05);
    border-radius: 9999px;
    filter: blur(64px);
    transform: translate(-50%, 50%);
}

.services-bg-blur-3 {
    position: absolute;
    top: 33.333333%;
    left: 66.666667%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(252, 209, 22, 0.05);
    border-radius: 9999px;
    filter: blur(64px);
    transform: translate(-50%, -50%);
}

.tri-color-bar {
    width: 8rem;
    height: 0.375rem;
    display: flex;
    border-radius: 9999px;
    overflow: hidden;
}

.tri-color-bar-green {
    width: 33.333333%;
    height: 100%;
    background-color: #1eb53a;
}

.tri-color-bar-yellow {
    width: 33.333333%;
    height: 100%;
    background-color: #fcd116;
}

.tri-color-bar-blue {
    width: 33.333333%;
    height: 100%;
    background-color: #00a3dd;
}

.services-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0056A8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.services-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0A2240;
    margin-bottom: 12px;
    line-height: 1.25;
}

.services-description {
    font-size: 0.97rem;
    color: #374151;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== BELIEF CARD STYLES ===== */
.belief-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e7ff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.belief-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-0.25rem);
}

.belief-card-top-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(90deg, #1eb53a, #fcd116, #00a3dd);
}

.belief-card-bg-blur {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 7rem;
    height: 7rem;
    background-color: rgba(30, 181, 58, 0.05);
    border-radius: 9999px;
    transform: scale(0);
    transition: transform 0.5s;
    transition-delay: 0.1s;
}

.belief-card:hover .belief-card-bg-blur {
    transform: scale(1);
}

.belief-icon-wrapper {
    background-color: #e0e7ff;
    padding: 0.75rem;
    border-radius: 0.75rem;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: background 0.3s;
}

.belief-card:hover .belief-icon-wrapper {
    background-color: #c7d2fe;
}

.belief-icon {
    color: #4f46e5;
}

.belief-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0A2240;
}

.belief-divider {
    width: 3rem;
    height: 0.25rem;
    background: linear-gradient(90deg, #1eb53a, #00a3dd);
    border-radius: 9999px;
    margin-bottom: 1.25rem;
}

.belief-text {
    font-size: 0.93rem;
    color: #374151;
    line-height: 1.75;
}

/* ===== GOAL CARD STYLES ===== */
.goal-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e7ff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.goal-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-0.25rem);
}

.goal-card-top-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(90deg, #00a3dd, #fcd116, #1eb53a);
}

.goal-card-bg-blur {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 7rem;
    height: 7rem;
    background-color: rgba(0, 163, 221, 0.05);
    border-radius: 9999px;
    transform: scale(0);
    transition: transform 0.5s;
    transition-delay: 0.1s;
}

.goal-card:hover .goal-card-bg-blur {
    transform: scale(1);
}

.goal-icon-wrapper {
    background-color: #e0e7ff;
    padding: 0.75rem;
    border-radius: 0.75rem;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: background 0.3s;
}

.goal-card:hover .goal-icon-wrapper {
    background-color: #c7d2fe;
}

.goal-icon {
    color: #4f46e5;
}

.goal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0A2240;
}

.goal-divider {
    width: 3rem;
    height: 0.25rem;
    background: linear-gradient(90deg, #00a3dd, #fcd116);
    border-radius: 9999px;
    margin-bottom: 1.25rem;
}

.goal-text {
    font-size: 0.93rem;
    color: #374151;
    line-height: 1.75;
}

/* ===== ABOUT SECTION STYLES ===== */
.about-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: #F7FAFF;
    position: relative;
}

@media (min-width: 640px) {
    .about-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 768px) {
    .about-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.about-bg-blur-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(30, 181, 58, 0.05);
    border-radius: 9999px;
    filter: blur(64px);
    transform: translate(50%, -50%);
}

.about-bg-blur-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    background-color: rgba(0, 163, 221, 0.05);
    border-radius: 9999px;
    filter: blur(64px);
    transform: translate(-50%, 50%);
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0A2240;
    margin-bottom: 14px;
}

.about-description {
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 24px;
}

/* ===== EXPERTISE SECTION STYLES ===== */
.expertise-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0056A8;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}

.expertise-title-text {
    position: relative;
    z-index: 10;
}

.expertise-title-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0.125rem;
    background-color: #1eb53a;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.expertise-item-blue {
    border-left: 4px solid #00a3dd;
}

.expertise-item-yellow {
    border-left: 4px solid #fcd116;
}

.expertise-item-green {
    border-left: 4px solid #1eb53a;
}

.expertise-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.expertise-check {
    background-color: #4f46e5;
    color: #fff;
    padding: 0.25rem;
    border-radius: 9999px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    transition: background 0.3s;
}

.expertise-item:hover .expertise-check {
    background-color: #7c3aed;
}

.expertise-text {
    font-size: 0.92rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.5;
}

/* ===== COMMITMENT SECTION STYLES ===== */
.commitment-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0056A8;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}

.commitment-title-text {
    position: relative;
    z-index: 10;
}

.commitment-title-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0.125rem;
    background-color: #fcd116;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.commitment-item-green {
    border-left: 4px solid #1eb53a;
}

.commitment-item-blue {
    border-left: 4px solid #00a3dd;
}

.commitment-item-yellow {
    border-left: 4px solid #fcd116;
}

.commitment-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.commitment-check {
    background-color: #4f46e5;
    color: #fff;
    padding: 0.25rem;
    border-radius: 9999px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    transition: background 0.3s;
}

.commitment-item:hover .commitment-check {
    background-color: #7c3aed;
}

.commitment-text {
    font-size: 0.92rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.5;
}

/* ===== ISO ACCREDITED CARD ===== */
.iso-accredited-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 28rem;
    text-align: center;
    border: 1px solid #e0e7ff;
    transition: all 0.3s;
}

.iso-accredited-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.25rem);
}

.iso-accredited-icon {
    background-color: #e0e7ff;
    padding: 1.25rem;
    border-radius: 9999px;
    color: #4f46e5;
    transition: all 0.3s;
}

.iso-accredited-card:hover .iso-accredited-icon {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.iso-accredited-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0A2240;
    margin-bottom: 4px;
}

.iso-accredited-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0056A8;
    margin: 0;
}

.tri-color-bar-small {
    width: 5rem;
    height: 0.25rem;
    display: flex;
    border-radius: 9999px;
    overflow: hidden;
}

.tri-color-bar-green-small {
    width: 33.333333%;
    height: 100%;
    background-color: #1eb53a;
}

.tri-color-bar-yellow-small {
    width: 33.333333%;
    height: 100%;
    background-color: #fcd116;
}

.tri-color-bar-blue-small {
    width: 33.333333%;
    height: 100%;
    background-color: #00a3dd;
}

/* ===== MISSION CARD STYLES ===== */
.mission-card {
    background: linear-gradient(to bottom right, #fff, #eef2ff);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.mission-card-left-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    background: linear-gradient(to bottom, #1eb53a, #00a3dd, #fcd116);
}

.mission-card-bg-blur {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    width: 6rem;
    height: 6rem;
    background-color: rgba(0, 163, 221, 0.05);
    border-radius: 9999px;
    transform: scale(0);
    transition: transform 0.5s;
}

.mission-card:hover .mission-card-bg-blur {
    transform: scale(1);
}

.mission-icon-wrapper {
    margin-right: 0.75rem;
    padding: 0.75rem;
    background-color: #e0e7ff;
    border-radius: 9999px;
}

.mission-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0A2240;
}

.mission-text {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.75;
    padding-left: 10px;
    border-left: 3px solid #0056A8;
}

/* ===== VISION CARD STYLES ===== */
.vision-card {
    background: linear-gradient(to bottom right, #fff, #eef2ff);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.vision-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.vision-card-left-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    background: linear-gradient(to bottom, #fcd116, #00a3dd, #1eb53a);
}

.vision-card-bg-blur {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    width: 6rem;
    height: 6rem;
    background-color: rgba(30, 181, 58, 0.05);
    border-radius: 9999px;
    transform: scale(0);
    transition: transform 0.5s;
}

.vision-card:hover .vision-card-bg-blur {
    transform: scale(1);
}

.vision-icon-wrapper {
    margin-right: 0.75rem;
    padding: 0.75rem;
    background-color: #e0e7ff;
    border-radius: 9999px;
}

.vision-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0A2240;
}

.vision-text {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.75;
    padding-left: 10px;
    border-left: 3px solid #0090D4;
}

/* ===== GOVERNMENT PARTNERS STYLES ===== */
.partners-head-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 30px;
    display: none;
}

.partners-shield-icon {
    height: 2rem;
    width: 2rem;
    color: #fcd116;
}

.partners-globe-icon {
    height: 2rem;
    width: 2rem;
    color: #00a3dd;
}

.partners-title {
    letter-spacing: -0.02em;
}

.partners-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E8C840;
    margin-bottom: 12px;
}

.partners-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto;
}

.partners-award-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, rgba(30, 181, 58, 0.2), rgba(0, 163, 221, 0.2));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(252, 209, 22, 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    margin-top: 2rem;
}

.partners-award-icon {
    height: 1.5rem;
    width: 1.5rem;
    color: #fcd116;
}

.partners-award-btn span {
    color: #fff;
}

.bullet-point {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1eb53a;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Partners Way List */
.partners-way-list {
    display: flex;
    gap: 30px;
}

.single-partners-way {
    width: calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partners-way-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top left, #00a3dd, #1eb53a);
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.single-partners-way:nth-child(2) .partners-way-icon {
    background: linear-gradient(to top left, #fcd116, #00a3dd);
}

.single-partners-way:nth-child(3) .partners-way-icon {
    background: linear-gradient(to top left, #1eb53a, #fcd116);
}

.single-partners-way:hover .partners-way-icon {
    transform: scale(1.1);
}

.partners-way-svg {
    width: 2rem;
    height: 2rem;
    color: #fff;
}

.partners-way-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fcd116;
    margin-bottom: 6px;
}

.partners-way-text {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: center;
}

.partners-way-text-secondary {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

/* Healthcare Button */
.healthcare-btn {
    margin-top: 4rem;
    text-align: center;
}

.healthcare-btn a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
    color: #fff;
    background: linear-gradient(to left, #00a3dd, #1eb53a);
    border: 1px solid rgba(252, 209, 22, 0.3);
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    overflow: hidden;
    position: relative;
    z-index: 9;
    text-decoration: none;
}

.healthcare-btn a::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #00a3dd, #1eb53a);
    position: absolute;
    top: 0;
    left: -100%;
    z-index: -1;
    border-radius: 0.75rem;
    transition: left 0.3s;
}

.healthcare-btn a:hover::before {
    left: 0;
}

.gateway-icon {
    display: block;
    width: 44px;
    height: 28px;
    background-color: #1eb53a;
    outline: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gateway-icon::before {
    content: "";
    width: 70px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 15px;
    left: -30px;
    transform: rotate(-45deg);
}

.gateway-icon::after {
    content: "";
    width: 70px;
    height: 40px;
    background-color: #00a3dd;
    position: absolute;
    left: -22px;
    bottom: -45px;
    transform: rotate(-45deg);
}

/* Flag Animation */
.flag-wave {
    width: 100%;
    height: 100%;
    /* animation: flagWave 8s ease-in-out infinite; */
}

@keyframes flagWave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.flag-shimmer {
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.5; }
}

/* ===== STANDARDS SECTION STYLES ===== */
.standards-section {
    padding-top: 44px;
    padding-bottom: 44px;
    position: relative;
    overflow: hidden;
    background: #F0F5FB;
}

.standards-badge {
    background: #0056A8;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
}

.standards-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0A2240;
    margin-bottom: 10px;
}

.standards-description {
    color: #4B6EA8;
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.75;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .standards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.standards-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0056A8, #0090D4);
    color: #fff;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(0, 86, 168, 0.35);
    transition: all 0.3s;
}

.standards-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 86, 168, 0.45);
}

/* ===== CERTIFICATION PROCESS SECTION STYLES ===== */
.cert-process-section {
    padding-top: 56px;
    padding-bottom: 56px;
    background: linear-gradient(160deg, #0A2240 0%, #0056A8 60%, #0090D4 100%);
}

.cert-process-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}

.cert-process-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cert-process-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.65;
}

.cert-process-progress-bg {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.cert-process-progress-fill {
    position: absolute;
    top: 40px;
    left: 0;
    height: 3px;
    border-radius: 4px;
    transition: width 0.7s;
    width: 0%;
    background: linear-gradient(90deg, #00875A, #0090D4, #E8A000);
}

.step-btn {
    position: relative;
    margin: 0 auto;
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.step-btn-active {
    background: linear-gradient(135deg, #0056A8, #0090D4);
    box-shadow: 0 6px 18px rgba(0, 86, 168, 0.5);
    transform: scale(1.1);
    color: #fff;
}

.step-btn-inactive {
    background: rgba(255, 255, 255, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.75);
}

.step-btn:hover {
    transform: scale(1.1);
}

.step-btn img {
    width: 2rem;
    height: 2rem;
}
.step-btn:hover img, .step-btn-active img {filter: brightness(0) invert(1);}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 800;
    background: #fff;
    color: #0056A8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.step-number-1,
.step-number-2,
.step-number-3,
.step-number-4,
.step-number-5,
.step-number-6 {
    /* Default styling, numbers handled by inline style in HTML */
}

.step-label {
    font-weight: 700;
    font-size: 0.82rem;
    color: #fff;
    text-align: center;
}

.step-label-inactive {
    color: rgba(255, 255, 255, 0.85);
}

.step-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #0090D4;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0A2240;
    margin-bottom: 6px;
}

.step-desc {
    color: #0056A8;
    margin-bottom: 12px;
    font-weight: 500;
}

.step-time {
    color: #00875A;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-info-heading, .step-info-block h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0A2240;
    margin-bottom: 14px;
}

.step-details-list, .step-info-block ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-detail-item, .step-info-block ul li {
    display: flex;
    /* align-items: center; */
    gap: 0.75rem;
    color: #374151;
    margin: 0;
}

.step-info-block ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0056A8;
    margin-top: 8px;
}

.step-detail-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0056A8;
    margin-top: 6px;
    flex-shrink: 0;
}

.step-detail-text {
    color: #374151;
    margin: 0;
}

/* Mobile Step Styles */
.mobile-step-details {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    padding: 14px 16px;
}

.mobile-step-summary {
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-step-timeline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    font-weight: 400;
}

.mobile-step-list h4 {
    font-size: 0.97rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-top: 10px;
}

.mobile-step-list ul {
    margin-top: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    padding-left: 4px;
}

.mobile-step-list ul li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 5px;
}

/* CTA Card */
.cert-cta-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 36px 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.cert-cta-bg-blur {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cert-cta-content {
    position: relative;
    z-index: 1;
}

.cert-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cert-cta-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

.cert-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0056A8;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.cert-cta-button:hover {
    background: #E8F2FF;
}

/* ===== FAQS SECTION STYLES ===== */
.faqs-section {
    padding-top: 44px;
    padding-bottom: 44px;
    background: #F0F5FB;
    position: relative;
}

.faqs-badge {
    background: #0056A8;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
}

.faqs-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0A2240;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.faqs-subtitle {
    color: #4B6EA8;
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.93rem;
}

.faqs-tab-container {
    background: #fff;
    border: 1px solid #D0DFF0;
    border-radius: 8px;
    padding: 4px;
    display: inline-flex;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 86, 168, 0.08);
}

.faqs-tab-btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.faqs-tab-active {
    background: #0056A8;
    color: #fff;
}

.faqs-tab-inactive {
    background: transparent;
    color: #0056A8;
}

.faqs-accordion-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faqs-hidden {
    display: none;
}

.faq-item {
    background: #fff;
    border: 1px solid #D0DFF0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 86, 168, 0.07);
}

.faq-question {
    font-weight: 600;
    color: #0A2240;
    padding: 14px 20px;
    cursor: pointer;
    list-style: none;
    font-size: 0.92rem;
}

.faq-answer {
    padding: 0 20px 14px;
    color: #374151;
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ===== CERTIFICATION REQUEST FORM STYLES ===== */
.cert-request-section {
    padding-top: 48px;
    padding-bottom: 48px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.cert-request-top-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(90deg, #0A2240, #0056A8, #0090D4);
}

.cert-request-badge {
    background: #0056A8;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
}

.cert-request-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0A2240;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.cert-request-subtitle {
    color: #4B5563;
    max-width: 580px;
    margin: 0 auto;
    font-size: 0.93rem;
    line-height: 1.7;
}

.cert-request-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0056A8, #0090D4);
    margin: 14px auto 0;
    border-radius: 2px;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0 !important;
}

.certificationForm-block {
    display: flex;
    gap: 40px;
    padding: 0 10%;
}
.consultationForm-area {width: 40%;}

.form-thumbnail-block {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-thumbnail {
    position: relative;
    z-index: 9;
}

.form-thumbnail img {
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    transform: rotate(1deg);
    transition: all 0.5s ease;
}

.form-thumbnail img:hover {
    transform: rotate(2deg) scale(1.02);
}

.form-thumbnail::before {
    content: '';
    width: 6rem;
    height: 6rem;
    background: #ffc800;
    opacity: 0.2;
    border-radius: 50%;
    position: absolute;
    left: -2rem;
    top: -2rem;
    z-index: -1;
}

.form-thumbnail::after {
    content: '';
    width: 8rem;
    height: 8rem;
    background: #145bb8;
    opacity: 0.2;
    border-radius: 50%;
    position: absolute;
    right: -1.5rem;
    bottom: -1.5rem;
    z-index: -1;
}

#certificationForm > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #D0DFF0;
    border-radius: 8px;
    font-size: 0.93rem;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    margin-top: 2px !important;
}

.form-input:focus {
    border-color: #0056A8;
}

.form-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #D0DFF0;
    border-radius: 8px;
    font-size: 0.93rem;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    margin-top: 2px !important;
}

.form-select:focus {
    border-color: #0056A8;
}

.form-file-input {
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    background: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.cert-request-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0056A8, #0090D4);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0, 86, 168, 0.35);
}

.cert-request-submit-btn:hover {
    background: linear-gradient(135deg, #004080, #0070aa);
}

/* ===== CTA BAND STYLES ===== */
.cta-band {
    background: linear-gradient(135deg, #0A2240 0%, #0056A8 100%);
    padding: 48px 0;
    margin-bottom: -1.5rem;
}

.cta-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto 24px;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.cta-button-primary {
    background: #fff;
    color: #0056A8;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.cta-button-primary:hover {
    background: #E8F2FF;
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(160deg, #06172B 0%, #0A2240 60%, #0D2D55 100%);
    color: #fff;
    padding: 48px 0 24px;
    margin-top: 1.5rem;
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0090D4;
    display: inline-block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.88rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    text-align: center;
}

.footer-privacy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
}

/* ===== BACK TO TOP STYLES ===== */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 60;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0056A8, #0090D4);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 86, 168, 0.4);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-way-list {
        flex-direction: column;
    }
    
    .single-partners-way {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .standards-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .services-title,
    .about-title,
    .standards-title,
    .faqs-title,
    .cert-request-title,
    .cta-title {
        font-size: 1.4rem;
    }
    
    .partners-title {
        font-size: 1.5rem;
    }
}

/* ===== FORM ADD MORE STYLES ===== */
.addmoreclose {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

#addMore {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    color: #374151;
    display: inline-flex;
    float: right;
    text-align: right;
    cursor: pointer;
    user-select: none;
    margin-top: 8px;
}

#addMore:hover {
    color: #225dbd;
}

#removeMore {
    display: none;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    color: #ff0000;
    display: inline-flex;
    float: right;
    text-align: right;
    cursor: pointer;
    user-select: none;
    margin-top: 8px;
}

#attachments input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 20px;
}

.error {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 0.9rem;
    color: #f27474;
    margin-top: 3px !important;
}