/* Sub Page Layout - Premium Redesign */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;700&display=swap');

.sub-visual {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
}

.sub-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 50, 100, 0.3));
    z-index: 1;
}

.sub-title {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 13px 20px;
    word-break: auto-phrase;
}

.sub-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sub-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* LNB (Tab Menu) */
.sub-lnb {
    background: #fff;
    /* or dark if preferred */
    border-bottom: 1px solid #ddd;
    margin-bottom: 80px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
}

.sub-lnb ul {
    display: flex;
    justify-content: center;
}

.sub-lnb ul li {
    width: 200px;
    text-align: center;
}

.sub-lnb ul li a {
    display: block;
    padding: 20px 0;
    font-size: 16px;
    color: #555;
    position: relative;
    font-weight: 500;
}

.sub-lnb ul li.active a {
    color: var(--color-primary);
    font-weight: 700;
}

.sub-lnb ul li.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
}

.sub-content {
    padding-bottom: 150px;
}

/* Greeting Split Layout */
.greeting-split-wrap {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.greeting-sidebar {
    width: 400px;
    flex-shrink: 0;
    background: #1a2b4b;
    /* Dark Blue */
    color: #fff;
    padding: 60px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.greeting-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.gs-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.gs-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
}

.greeting-content {
    flex: 1;
    padding-top: 20px;
}

.gc-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.gc-subtitle {
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.5;
    word-break: auto-phrase;
}

.gc-body p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    word-break: keep-all;
}

.gc-body p.emphasize {
    font-weight: 600;
    color: #222;
    margin-top: 30px;
}

.gc-signature {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.sig-row {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.eng-sig {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* =========================================
   ISO / Certification Page Styles
   ========================================= */
.iso-page {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    color: #333;
    padding-bottom: 80px;
    background: #fff;
}

/* Common Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-top: 60px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #00609c;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #00a8e1;
}

/* SECTION 1: Intro */
.iso-intro-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.iso-intro-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

.iso-logo-box {
    flex: 0 0 250px;
    /* background: #fff; */
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

.iso-logo-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.iso-intro-text {
    flex: 1;
    font-size: 20px;
    line-height: 1.6;
    color: #222;
}

.iso-intro-text strong {
    color: #00609c;
    font-weight: 800;
}

/* SECTION 2 & 3: Icons Grid */
.iso-icons-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.icons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.icon-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    width: calc(20% - 24px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f4f8;
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 96, 156, 0.1);
    border-color: #00609c;
}

.icon-card i {
    font-size: 50px;
    color: #3b3b3b;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.icon-card:hover i {
    color: #00609c;
}

.icon-card p {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

/* SECTION 4: Offers Grid */
.iso-offers-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.offer-card {
    display: flex;
    background: #fff;
    border-radius: 0 16px 16px 0;
    width: calc(50% - 15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    border-left: 6px solid #00a8e1;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-img {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
}

/* Fallback gray background */
.offer-img.placeholder {
    background-color: #e2e8f0;
}

.offer-info {
    flex: 1;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-info h4 {
    font-size: 26px;
    font-weight: 800;
    color: #00609c;
    margin-bottom: 8px;
}

.offer-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.offer-info p {
    font-size: 14.5px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* SECTION 5: Accreditation */
.iso-accreditation-section {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

.accreditation-header {
    font-size: 24px;
    font-weight: 500;
    color: #222;
    line-height: 1.6;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 4px solid #00a8e1;
}

.accreditation-certs {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.cert-item {
    flex: 0 0 400px;
    max-width: 100%;
}

.cert-item img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

/* Responsive */
@media (max-width: 1024px) {
    .greeting-split-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .greeting-sidebar {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .sub-visual {
        height: 250px;
    }

    .sub-title h2 {
        font-size: 1.8rem;
    }

    .sub-lnb {
        border-bottom: 1px solid #ddd;
        margin-bottom: 40px;
    }

    .sub-lnb ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .sub-lnb ul::-webkit-scrollbar {
        display: none;
    }

    .sub-lnb ul li {
        width: auto;
        flex: 0 0 auto;
        padding: 0 10px;
    }

    .sub-lnb ul li a {
        font-size: 14px;
        padding: 15px 10px;
        white-space: nowrap;
    }

    .gs-title {
        font-size: 1.8rem;
    }

    .gc-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .gc-subtitle {
        font-size: 1.15rem;
    }

    .gc-body p {
        font-size: 1rem;
    }
}

/* Fade In Up */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

/* Sub Page Title (Moved from Header) */
.page-title-in-content {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-top: 50px;
}

.page-title-in-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
}

/* =====================================================================
   ISO/IEC 17024 Page Styles
   ===================================================================== */
.cert-17024-page {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    color: #333;
    padding-bottom: 80px;
    background: #fff;
}

/* Title Header */
.cert-page-header {
    border-bottom: 2px solid #00a8e1;
    padding: 20px 0;
    margin-bottom: 40px;
}

.cph-inner {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
    display: flex;
    align-items: center;
    gap: 20px;
}

.cph-logo {
    height: 40px;
    /* Adjust based on actual logo size */
    width: auto;
}

.cert-page-header h2 {
    font-size: 28px;
    color: #00609c;
    font-weight: 700;
    margin: 0;
}

/* Slide 1: Intro */
.cert-intro-section {
    max-width: 1200px;
    /* margin: 0 auto 60px; */
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cert-intro-content {
    flex: 1;
}

.cert-intro-content .main-title {
    font-size: 42px;
    font-weight: 800;
    color: #00609c;
    margin-bottom: 25px;
}

.cert-intro-content .intro-text {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
}

.cert-intro-content .intro-text strong {
    font-weight: 700;
    color: #222;
}

.cert-intro-content .intro-text a {
    color: #00a8e1;
    text-decoration: underline;
}

.cert-intro-logo {
    flex: 0 0 350px;
    text-align: center;
}

.cert-intro-logo img.req-logo {
    max-width: 100%;
    height: auto;
}

/* Professional Banner */
.cert-banner {
    width: 100%;
    /* height: 100px; */
    /* Fixed height requested by user */
    /* border-bottom: 5px solid #00a8e1; */
    /* margin-bottom: 60px; */
    background: #fff;
    text-align: right;
    /* Right align the image */
    overflow: hidden;
    /* Hide anything outside the 100px height */
    position: relative;
    /* border-top: 5px solid #00a8e1; */
}

.cert-banner img.banner-img {
    height: 100%;
    /* Fill the 100px container */
    width: auto;
    /* Maintain aspect ratio */
    display: inline-block;
    /* Allow text-align right to work */
    max-width: 1400px;
}

.cert-banner img.contain-img {
    object-fit: contain;
    object-position: right center;
    /* Align to the right side */
}

/* Slide 2: Empowering People */
.cert-empower-section {
    background: #004097;
    padding: 60px 0;
    color: #fff;
    margin-bottom: 60px;
}

.cert-empower-section .section-title-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
    border-bottom: 3px solid #00a8e1;
    margin-bottom: 40px;
}

.cert-empower-section .section-title-bar h2 {
    font-size: 24px;
    font-weight: 700;
}

.empower-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.empower-container h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

.empower-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.empower-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    flex-direction: column;
}

.empower-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.empower-card p {
    padding: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
}

/* Slide 3 & 4: Industries Served */
.cert-industries-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.industries-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.recognition-col {
    flex: 0 0 45%;
}

.recognition-col img {
    /* width: 100%; */
    height: auto;
    /* border: 1px solid #ddd; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

.industries-col {
    flex: 1;
}

.iso-title-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.small-iso-logo {
    width: 80px;
    height: auto;
}

.iso-title-bar h3 {
    font-size: 28px;
    font-weight: 800;
    color: #00609c;
    margin: 0;
}

.iso-title-bar p {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.industries-header {
    background: #00609c;
    color: #fff;
    padding: 15px 25px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    row-gap: 30px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: #444;
}

.industry-item i {
    font-size: 40px;
    color: #777;
    width: 50px;
    text-align: center;
}

/* Responsive for 17024 Page */
@media (max-width: 1024px) {
    .cert-intro-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cert-intro-logo {
        flex: 0 0 auto;
        margin-top: 20px;
    }

    .empower-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-container {
        flex-direction: column;
    }

    .recognition-col {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .cert-intro-content .main-title {
        font-size: 32px;
    }

    .cert-intro-content .intro-text {
        font-size: 18px;
    }

    .empower-container h3 {
        font-size: 26px;
    }

    .empower-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .iso-title-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* =====================================================================
   ISO/IEC 17024 Details Page Styles (17024.php)
   ===================================================================== */
.cert-17024-iqpa-page {
    font-family: 'Inter', sans-serif;
    color: #333;
    padding-bottom: 80px;
}

/* Header Area */
.iqpa-top-banner-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.iqpa-top-left img {
    max-width: 100%;
    height: auto;
}

.iqpa-top-right-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.iqpa-top-right-logos img {
    max-height: 55px;
    width: auto;
}

@media (max-width: 768px) {
    .iqpa-top-banner-wrap {
        justify-content: center;
        margin-bottom: 20px;
    }

    .iqpa-top-right-logos {
        justify-content: center;
        gap: 15px;
    }

    .iqpa-top-right-logos img {
        max-height: 45px;
    }
}

.iqpa-header {
    margin-bottom: 50px;
}

.iqpa-header .main-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
}

.iqpa-top-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Top grid boxes */
.iqpa-box {
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.iqpa-img-box {
    position: relative;
    padding-top: 80%;
    background: #f5f5f5;
}

.iqpa-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iqpa-text-box {
    background-color: #1a233a;
    /* Dark blue background */
    color: #fff;
    padding: 30px;
    flex-grow: 1;
}

.iqpa-text-box p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.iqpa-text-box.list-box {
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
}

.iqpa-text-box.list-box .iso-center-logo {
    text-align: center;
    margin-bottom: 20px;
}

.iqpa-text-box.list-box .iso-center-logo img {
    max-width: 180px;
}

.iqpa-text-box.list-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #004097;
    margin-bottom: 20px;
    text-align: center;
}

.iqpa-text-box.list-box ol {
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.8;
}

.iqpa-text-box.list-box ol li {
    margin-bottom: 10px;
}

/* Enforce / Area Styles (Repeated Sections) */
.iqpa-area-section {
    margin-top: 80px;
}

.iqpa-area-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    /* display: flex; */
    align-items: center;
}

.iqpa-area-title span {
    color: #004097;
}

.iqpa-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #f9f9f9;
    border: 1px solid #eee;
    margin-bottom: 40px;
}

.iqpa-area-grid>div {
    padding: 0;
}

.iqpa-area-grid .col-img {
    position: relative;
    padding-top: 100%;
}

.iqpa-area-grid .col-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iqpa-area-grid .col-img .img-overlay-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: rgba(26, 35, 58, 0.85);
    /* Dark bar */
}

.iqpa-area-grid .col-list {
    padding: 50px 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* PHP inline code was removed, using relative path to img folder */
    background-image: url('../img/iso_watermark.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.iqpa-area-grid .col-list ol {
    list-style: none;
    /* Custom numbers padding */
    padding: 0;
    margin: 0;
}

.iqpa-area-grid .col-list ol li {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.iqpa-area-grid .col-list ol li span.num {
    position: absolute;
    left: 0;
    top: 0;
}

/* Final Section: Call to Action */
.iqpa-final-section {
    margin-top: 50px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-image: url('../img/sub/17024/final_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    min-height: 400px;
}

.iqpa-final-overlay {
    width: 65%;
    max-width: 800px;
    background-color: #fff;
    border-top-left-radius: 500px;
    border-bottom-left-radius: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    box-sizing: border-box;
    text-align: center;
}

.iqpa-final-overlay h2 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
}

.iqpa-final-overlay p.highlight {
    font-size: 22px;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
}

.iqpa-final-overlay p.sub-text {
    font-size: 22px;
    font-weight: 600;
    color: #444;
    margin-bottom: 30px;
}

.iqpa-final-overlay .logo {
    max-width: 350px;
    width: 100%;
    height: auto;
}

/* =====================================================================
   Cybersecurity ISO/IEC 17024 Page Styles
   ===================================================================== */
.cyber-page {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    color: #333;
    padding-bottom: 80px;
    background: #fff;
}

.cyber-intro-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cyber-intro-text {
    flex: 1;
}

.cyber-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #004097;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cyber-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.cyber-intro-text strong {
    color: #00a8e1;
    font-weight: 700;
}

.cyber-intro-img {
    flex: 0 0 450px;
}

.cyber-intro-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 64, 151, 0.15);
}

.cyber-vv-section {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.cyber-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #004097, #00a8e1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cyber-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.cyber-card:hover::before {
    transform: scaleX(1);
}

.cyber-card-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #004097;
    font-size: 32px;
}

.cyber-card-title {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.cyber-card-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* =====================================================================
   Auditor CSS (CSI Qualification Process)
   ===================================================================== */
.auditor-page {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    color: #333;
    padding-bottom: 80px;
    background: #fff;
    margin-top: 40px;
}

.auditor-section {
    margin-bottom: 80px;
}

.auditor-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #00609c;
    border-bottom: 3px solid #00a8e1;
    padding-bottom: 15px;
    margin-bottom: 40px;
    display: inline-block;
}

/* Section 1: Process Box */
.auditor-process-box {
    background: #fff;
}

.process-headline {
    background: #00609c;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    padding: 30px;
    margin-bottom: 40px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: #1e284a;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.process-card .card-header {
    font-size: 20px;
    font-weight: 700;
    padding: 15px 20px;
    text-align: center;
}

.process-card .card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.process-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-card .card-body {
    padding: 25px 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* Section 2: Audit Standards */
.audit-standards h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.audit-standards h4 .material-symbols-outlined {
    color: #555;
    font-size: 24px;
}

.audit-standards p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    padding-left: 30px;
}

.standards-table-wrap {
    display: flex;
    gap: 30px;
}

.standards-table {
    flex: 1;
}

.standards-table table {
    width: 100%;
    border-collapse: collapse;
    background: #f9f9f9;
}

.standards-table th {
    background: #1e284a;
    color: #fff;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border: 1px solid #1e284a;
}

.standards-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #fff;
}

.standards-table td:nth-child(1) {
    text-align: center;
    font-weight: 700;
    width: 60px;
}

.standards-table td:nth-child(2) {
    font-weight: 700;
    color: #004097;
    width: 160px;
}

.standards-table td:nth-child(3) {
    color: #444;
}

.standards-table tr:nth-child(even) td {
    background: #fdfdfd;
}

/* Section 3: Certificate Sample */
.qualification-cert p {
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
}

/* =====================================================================
   Inquiry Search Page CSS
   ===================================================================== */
.inquiry-search-page {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    color: #333;
    padding: 60px 0 100px;
    background: #fff;
    min-height: 600px;
}

.search-header {
    text-align: center;
    margin-bottom: 50px;
}

.search-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #3b5998;
    margin-bottom: 15px;
}

.search-header p {
    font-size: 16px;
    color: #888;
}

.search-form-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.search-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #666;
    border-bottom: 1px solid #ccc;
    background: #fff;
}

.search-th {
    width: 25%;
    background: #f1f1f1;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    vertical-align: middle;
}

.search-td {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-table tr:nth-child(2) .search-td {
    border-bottom: none;
}

.search-select {
    width: 200px;
    padding: 8px 10px;
    border: 1px solid #bbb;
    font-size: 15px;
    color: #333;
    outline: none;
}

.search-input {
    flex: 1;
    padding: 8px 15px;
    border: 1px solid #bbb;
    font-size: 15px;
    outline: none;
}

.search-btn-wrap {
    margin-top: 40px;
    text-align: center;
}

.btn-search-submit {
    display: inline-block;
    width: 100%;
    max-width: 800px;
    background: #4a8cdb;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-search-submit:hover {
    background: #3672bc;
}