/* AICERTs Course Catalog Styles */

/* Provider CSS variables (copied from aicerts-base.css) */
:root {
    --primary-color: #CFA935;
    --secondary-color: #CFA935;
    --body-font-color: #A9A7B0;
    --light-gray-color: #F3F4F6;
    --light-gray-color1: #e4e4e4;
    --black-color: #1C1F30;
    --black-color-70: #2A2E36;
    --grey-color-70: #BFC0C2;
    --grey-color-90: #F3F3F3;
    --white-color: #ffffff;
    --darkgrey-color: #171A24;
    --hover-color: #BA982F;
    --pure-black: #000000;
    --light-primary: #FDF9F0;
    --gradiant-gold: linear-gradient(270deg, #CFA935 0%, #FAF59E 48.9%, #CFA935 99.8%);
}

/* Course Detail Page Styles - Matching Provider Site */
.opt_detailsection {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 0;
}

.opt_detailsection .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.opt_detailsection h1 {color: var(--black-color);}

.opt_detailmain {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.opt_detail-cnt {
    flex: 1;
}

.opt_detail-cnt h1,
.certification-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
    margin-bottom: 26px;
    color: var(--black-color);
}

.opt_detail-cnt small {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 24px;
    color: var(--black-color);
    line-height: 1.5;
}

.opt_detail-cnt p {
    margin-bottom: 36px;
    font-size: 18px;
    line-height: 26px;
    color: var(--black-color);
}

.opt_detail-cnt ul {
    margin-bottom: 36px;
    padding-left: 0;
}

.opt_detail-cnt ul li {
    margin-bottom: 20px;
    padding-left: 26px;
    font-size: 18px;
    position: relative;
    list-style: none;
    line-height: 26px;
    color: var(--black-color);
}

.opt_detail-cnt ul li:before {
    content: "";
    display: block;
    background: var(--primary-color);
    height: 7px;
    width: 7px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

.opt_detail-img {
    width: 380px;
}

.opt_detail-imgbg {
    background: url("https://i0.wp.com/www.aicerts.ai/wp-content/themes/aicerts/images/thumb-bg.jpg") no-repeat top #171A24;
    padding: 80px;
    background-size: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}

.opt_detail-imgbg .badge-img {
    width: 100%;
    height: auto;
    display: block;
}

.opt_detailsection a.optbtn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    text-align: center;
    height: 44px;
    line-height: 44px;
    padding: 0 24px;
    min-width: 150px;
    border-radius: 0px;
    color: var(--white-color);
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 15px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.opt_detailsection a.optbtn:hover {
    background: var(--hover-color);
    border-color: var(--hover-color);
    color: var(--white-color);
}

.opt_detailsection .opt_detail-img a.optbtn {
    margin-right: 0;
    display: block;
}

.certification-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
    margin-bottom: 26px;
    color: var(--black-color);
}

p.opt_certificate_code {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 24px;
    line-height: 1.5;
}

p.opt_certificate_code i {
    margin-right: 5px;
}

.custom-ai-text {
    color: #CFA935;
}

/* Responsive styles for opt_detail section */
@media screen and (max-width: 1199px) {
    .opt_detail-img {
        width: 280px;
    }
    .opt_detail-imgbg {
        padding: 40px;
    }
    .opt_detail-cnt h1,
    .certification-title {
        font-size: 40px;
        line-height: 56px;
    }
}

@media screen and (max-width: 1023px) {
    .opt_detail-img {
        width: 240px;
    }
    .opt_detail-cnt h1,
    .certification-title {
        font-size: 36px;
        line-height: 48px;
    }
}

@media screen and (max-width: 767px) {
    .opt_detailmain {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .opt_detail-img {
        width: 100%;
    }
    .opt_detailsection a.optbtn {
        display: block;
        margin-bottom: 20px;
    }
    a.optbtn {
        width: 100%;
    }
    .opt_detail-cnt h1,
    .certification-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }
    .opt_detail-cnt small {
        font-size: 16px;
    }
    .opt_detail-cnt p,
    .opt_detail-cnt ul li {
        font-size: 16px;
    }
}

.aicerts-courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Courses list with filter sidebar */
.aicerts-courses-with-filter .aicerts-courses-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 20px;
}

.aicerts-courses-with-filter .filter-side {
    flex: 0 0 280px;
    background: #f0f2f5;
    border-radius: 10px;
    padding: 20px;
    position: sticky;
    top: 20px;
    border: 1px solid #dee2e6;
}

.aicerts-courses-with-filter .filter-side-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1f30;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #667eea;
    display: block;
}

.aicerts-courses-with-filter .filter-side .accordion-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
}

.aicerts-courses-with-filter .filter-side .accordion-item:last-of-type {
    border-bottom: none;
}

.aicerts-courses-with-filter .filter-side .accordion-button {
    padding: 10px 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background: transparent;
    border: none;
    cursor: default;
}

.aicerts-courses-with-filter .filter-side .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.aicerts-courses-with-filter .filter-side .form-check {
    margin-bottom: 0.5rem;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 1.5rem;
}

.aicerts-courses-with-filter .filter-side .form-check-input {
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
    min-height: 1.125rem;
    margin: 0;
    flex-shrink: 0;
    border: 2px solid #666;
    border-radius: 0.25rem;
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: checkbox;
    opacity: 1;
    position: relative;
    clip-path: none;
}

.aicerts-courses-with-filter .filter-side .form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.aicerts-courses-with-filter .filter-side .form-check-label {
    font-size: 0.9rem;
    cursor: pointer;
    color: #333;
    line-height: 1.4;
}

.aicerts-courses-with-filter .filter-side .accordion-body {
    padding: 10px 12px;
    max-height: 200px;
    overflow-y: auto;
}

.aicerts-courses-with-filter .filter-side .accordion-collapse {
    display: block;
}

.aicerts-courses-with-filter .filter-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aicerts-courses-with-filter .filter-actions .reset-btn {
    font-size: 0.9em;
    color: #667eea;
    text-decoration: none;
}

.aicerts-courses-with-filter .aicerts-courses-main {
    flex: 1;
    min-width: 0;
}

.aicerts-courses-with-filter .aicerts-results-count {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95em;
}

.aicerts-courses-header {
    margin-bottom: 40px;
}

.aicerts-page-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.aicerts-search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.aicerts-search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.aicerts-search-button {
    padding: 12px 24px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.aicerts-search-button:hover {
    background: #5568d3;
}

.aicerts-search-results {
    margin-bottom: 20px;
    color: #666;
    font-style: italic;
}

.aicerts-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.aicerts-course-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.aicerts-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.aicerts-course-badge {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
}

.aicerts-course-badge img {
    max-width: 100px;
    height: auto;
}

/* Tile image (same as aicerts.ai certifications page) - full-width card image */
.aicerts-course-tile {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    background: #f0f2f5;
}

.aicerts-course-tile-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.aicerts-course-tile-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Category page: dark placeholder when tile image is missing (tile stays linkable) */
.aicerts-listing-tile-placeholder {
    display: block;
    width: 100%;
    min-height: 336px;
    background-color: #1C1F30;
    background-color: var(--black-color, #1C1F30);
}

.aicerts-course-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aicerts-course-content {
    padding: 20px;
}

.aicerts-course-title {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.aicerts-course-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.aicerts-course-title a:hover {
    color: #667eea;
}

.aicerts-course-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.aicerts-course-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.aicerts-category-tag {
    background: #e7f3ff;
    color: #667eea;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85em;
}

.aicerts-course-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.aicerts-course-link:hover {
    color: #5568d3;
}

.aicerts-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.aicerts-pagination-link {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #667eea;
    transition: all 0.3s;
}

.aicerts-pagination-link:hover {
    background: #667eea;
    color: white;
}

.aicerts-pagination-current {
    padding: 10px 16px;
    background: #667eea;
    color: white;
    border-radius: 5px;
    font-weight: bold;
}

.aicerts-no-courses {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.aicerts-no-courses a {
    color: #667eea;
    text-decoration: none;
}

/* Course Detail Styles */

.aicerts-course-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.aicerts-course-breadcrumb {
    margin-bottom: 20px;
}

.aicerts-course-breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.aicerts-course-breadcrumb a:hover {
    text-decoration: underline;
}

.aicerts-course-feature-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.aicerts-course-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.aicerts-course-header {
    margin-bottom: 30px;
}

.aicerts-course-badge-large {
    text-align: center;
    margin-bottom: 20px;
}

.aicerts-course-badge-large img {
    max-width: 150px;
    height: auto;
}

.aicerts-course-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #333;
}

.aicerts-course-tagline {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
}

.aicerts-course-code {
    color: #888;
    font-size: 0.9em;
}

.aicerts-course-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.aicerts-course-overview {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.aicerts-course-overview h2 {
    margin-bottom: 20px;
    color: #333;
}

.aicerts-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.aicerts-overview-item h3 {
    font-size: 0.9em;
    color: #667eea;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aicerts-course-modules {
    margin-bottom: 40px;
}

.aicerts-course-modules h2 {
    margin-bottom: 20px;
    color: #333;
}

.aicerts-modules-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aicerts-module-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.aicerts-module-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.aicerts-course-tools {
    margin-bottom: 40px;
}

.aicerts-course-tools h2 {
    margin-bottom: 20px;
    color: #333;
}

.aicerts-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.aicerts-tool-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.aicerts-tool-item img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .aicerts-courses-grid {
        grid-template-columns: 1fr;
    }
    
    .aicerts-course-title {
        font-size: 2em;
    }
    
    .aicerts-overview-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ALL CSS DEFINITIONS FROM PROVIDER SITE
   Source: https://www.aicerts.ai/certifications/cloud/ai-cloud
   Extracted: Tue Dec 16 15:22:13 NZDT 2025
   ========================================= */

/* ========== INLINE STYLES FROM PROVIDER PAGE ========== */
.hidden-skill {
display: none;
}
.expanded .hidden-skill {
display: list-item;
}
.opt_detailsection {margin-top:70px; margin-bottom:70px;}
.opt_detailmain {display:flex; gap:70px;}
.opt_detailsection a.optbtn {background:#CFA935; border-color:#CFA935; font-weight: 500; text-align: center; height: 44px; line-height: 44px; padding: 0 13px; min-width: 150px; border-radius: 0px; color:#fff; display: inline-block; font-size: 16px; margin-right:5px; margin-bottom:15px; white-space: nowrap;}
.opt_detailsection a.optbtn:hover {background:#BA982F; border-color:#BA982F;}
.opt_detail-cnt {flex: 1;}
.opt_detail-cnt small {font-size:18px; font-weight:600; display: block;}
.opt_detail-cnt h1, .opt_detail-cnt small {margin-bottom:24px;}
.opt_detail-cnt p {margin-bottom:36px;}
.opt_detail-cnt h1 {font-weight: 600;}
.opt_detail-img {width: 380px;}
.opt_detail-imgbg {background: url("https://i0.wp.com/www.aicerts.ai/wp-content/themes/aicerts/images/thumb-bg.jpg") no-repeat top #171A24; padding: 80px; background-size: 100%; border-radius: 16px; margin-bottom:20px;}
.opt_detailsection .opt_detail-img a.optbtn {margin-right:0; display:block;}
.custom-ai-text {color:#CFA935;}
p.opt_certificate_code {font-weight:600; color: var(--primary-color); font-size:20px; margin-bottom:24px;} 
p.opt_certificate_duration {font-weight:600; color: var(--primary-color); font-size:18px; text-align:center;}  

@media screen and (max-width:1199px) {
.opt_detail-img {width: 280px;}
.opt_detail-imgbg {padding: 40px;}	
}

@media screen and (max-width:1023px) {
.opt_detail-img {width: 240px;}
}

@media screen and (max-width:767px) {
.opt_detailmain {flex-direction: column-reverse; gap: 20px;}	
.opt_detail-img {width: 100%;}
.opt_detailsection a.optbtn {display: block; margin-bottom: 20px;}
a.optbtn {width: 100%;}   
}
.post_share_button {
background: none;
border: none;
color: #007bff;
cursor: pointer;
transition: background 0.2s, color 0.2s;
padding: 6px 12px;
border-radius: 4px;
font-weight: 500;
text-decoration: underline;
}
.post_share_button:hover,
.post_share_button:focus {
background: #e6f0ff;
color: #0056b3;
outline: none;
text-decoration: underline;
}
.owl-nav,
.owl-dots {
display: none;
}

.More_Certificate.show-arrows-more-certificate .owl-nav,
.More_Certificate.show-arrows-more-certificate .owl-dots {
display: block;
}

/* ========== STYLES FROM aicerts-style.css ========== */
.indextabs {border-top: solid 1px #2a2e36; border-bottom: solid 1px #2a2e36; padding: 20px 0;}
.indextabs ul {display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 0 0;} 
.indextabs ul li {display: inline-flex; margin-right: 0px;}
.indextabs ul li a {display: inline-flex; line-height: 44px; color: var(--black-color);}
.indextabs ul li a:hover {color: var(--primary-color);}
.indextabs .cdv5-indextabs ul li a {background: var(--grey-color-90); padding: 10px 15px; border-radius: 10px; line-height: normal; font-size: 16px;}
.indextabs .cdv5-indextabs ul li a:hover, .indextabs .cdv5-indextabs ul li a.active {background: var(--primary-color); color: var(--white-color); }
/*.is-sticky.indextabs .cdv5-indextabs ul {gap:20px;}
.is-sticky.indextabs .cdv5-indextabs ul li a {padding:0; background: none; border-radius: 0; border-bottom: solid 2px transparent;}
.is-sticky.indextabs .cdv5-indextabs ul li a:hover, .is-sticky.indextabs .cdv5-indextabs ul li a.active {color: var(--primary-color); border-bottom: solid 2px var(--primary-color);}*/
.is-sticky.indextabs ul {overflow: auto; white-space: nowrap; flex-wrap: nowrap;}
.common-section {margin-bottom: 70px;}
.aictpage .h2_faq {padding-top:0;}
.h2_faq .accordion-body ul {margin-bottom: 0;}
.toolsrow {display:flex; gap:30px; flex-wrap: wrap; /*justify-content: center;*/}
.toolsrow .toolcard {
    background: var(--white-color);
    padding:30px;
    text-align: center;
    border-radius: 16px;
    min-height: 100%;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 0 calc(20% - 30px);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    color: var(--black-color);
    font-size: 18px;
    line-height: 26px;
}
.toolcard img{background-color: var(--white-color);}
.pre-section ul li {margin-bottom: 20px; padding-left: 26px; font-size: 18px; position: relative; list-style: none;}
.pre-section ul li:before {content: ""; display: block; background: var(--primary-color); height: 7px; width: 7px; border-radius: 50%; font-size: 30px; position: absolute; left:0; top:9px;}
.pre-section ul li:last-child {
    margin-bottom: 0;
}
.pre-section ul li::marker{ display: none; }
.opt_detailsection .pre-section ul li {margin-bottom: 10px;}
h3.cmntitle {font-size: 32px; font-weight: bold;}
.cmn-section { padding: 70px 0; }
.cmn-section ul {margin-bottom: 30px;}
.cmn-section ul li {list-style: inside;}
.cmn-section p a:hover {
    color: var(--primary-color);
}
section.cmn-section.getintouch-bg form .form-control {border-color: var(--light-gray-color1);}
.cmn-section ul li ul {
    margin-left: 20px;
}
.cmn-section ul li > ul li {
    margin-bottom: 5px;
}
.cmn-section.team-section {padding-top:0; padding-bottom:30px;}
.vendorsection.cmn-section ul li {list-style-type:none;}
.cmn-section a:hover{
    color: var(--primary-color);
}
.cmn-section .wp-block-image{
    margin-bottom: 20px;
}
.sidebar-thumb .badge-img {position: absolute; width: 100px; height: 100px; right: 40px; bottom: -40px;}
/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
.accordion ul li, .accordion ol li {margin-bottom:10px;}
.NewFaqStyle1 .accordion {display: grid;gap: 1rem;}
.sticky-element {position: relative; transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;}
.is-sticky {position: fixed; top: 30px; width: 100%; background: var(--white-color); z-index: 99; padding: 10px 0; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);}
.Includedicons {display:flex; gap:40px; flex-wrap: wrap; margin-top: 20px;}
.cd6icons {background: #ffffff; border-radius: 15px; padding:25px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); display: flex; align-items: center; justify-content: center;}
.cdv6-schedulecard {border-radius: 10px; border: 1px solid var(--black-color-70); padding:15px; display: flex; flex-direction: column; height: 100%; align-items: flex-start;}
.cdv6-schedulecard h4 {background:var(--grey-color-90); color: var(--primary-color); border-radius: 10px; padding:12px 20px; width:100%;}
.cdv6-schedulecard .btn {margin-top:auto;}
.cdv6-cformat {border-top: solid 1px var(--black-color-70); border-bottom: solid 1px var(--black-color-70);}
.cdv6-whysection .item {
    margin-bottom: 20px;
    padding-left: 26px;
    font-size: 18px;
    position: relative;
    list-style: none;
    color: var(--black-color);
    line-height: 1.6;
}

.cdv6-whysection .item:before {
    content: "";
    display: block;
    background: var(--primary-color);
    height: 7px;
    width: 7px;
    border-radius: 50%;
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 9px;
}

.cdv6-whysection .item b,
.cdv6-whysection .item strong {
    font-weight: 700;
    color: var(--black-color);
}
.edcardsmain {display:flex; gap:30px;}
.edcardsmain .edcardcol {background: var(--grey-color-90); border-radius: 10px; padding:20px; border-right:solid 2px var(--primary-color); display: flex; align-items: center; flex-direction: column;  justify-content: flex-start; min-width: 220px; text-align: center;}
.edcardsmain .edcardcol h3 {position:relative; margin-bottom:26px;}
.edcardsmain .edcardcol h3:last-child, .edcardsmain .edcardcol h4 {margin-bottom:0;}
.edcardsmain .edcardcol h3:first-child:before {width:70px; height:2px; position:absolute; content:""; bottom:-15px; background: var(--primary-color); left: 50%;  transform: translate(-50%,0);}
#tabExamdetail .edcardsmain{flex-wrap: wrap;}
#tabExamdetail .edcardsmain .edcardcol { flex: 1; }
.edcardsmain .edcardcol {background: var(--grey-color-90); border-radius: 10px; padding:20px; border-right:solid 2px var(--primary-color); display: flex; align-items: center; flex-direction: column;  justify-content: flex-start; min-width: 220px; text-align: center;}
.edcardsmain .edcardcol h3 {position:relative; margin-bottom:26px;}
.edcardsmain .edcardcol h3:last-child, .edcardsmain .edcardcol h4 {margin-bottom:0;}
.edcardsmain .edcardcol h3:first-child:before {width:70px; height:2px; position:absolute; content:""; bottom:-15px; background: var(--primary-color); left: 50%;  transform: translate(-50%,0);}
#tabExamdetail .edcardsmain .edcardcol { flex: 1; }
#tabExamdetail h3 {font-size: 24px;}
#tabExamdetail h4 { font-size: 24px; font-weight: 500; margin-bottom: 20px; color: var(--black-color); }

ul.faq-list { margin-left: 45px; margin-top: 5px; margin-bottom: 20px; }
ul.faq-list li { margin-bottom: 5px; list-style-type: disc;}
.gray-to-white_text, .white_text {color: var(--white-color);}
.gray-to-white_text, .white_text {color: var(--white-color);}
.gray-to-white_text, .white_text {color: var(--white-color);}
.home-accordion .accordion-button.primary_color {color:var(--primary-color);}
.primary_color {color: var(--primary-color);}
.Top-Certi_card h4 .primary_color { color: var(--white-color); }
.dark_bg,
.option_card,
.faqs-slide .home-accordion .accordion-button {
    background-color: var(--grey-color-90);
}
.dark_bg .overviewcards {background: var(--black-color-70);}
.dark_bg .overviewcards {background: var(--black-color-70);}
.tmv2-main-tms, .tmv2-cta-section, .tmv2-tabs-section, .tmv2-partners, .share-exp-section {margin-bottom: 70px;}
.tmlinkedin {padding:0 !important;}
.tmlinkedin .h2_tabs {margin-bottom: 20px;}
.page-template-tpl-about-us-v4 .h2_popular_certifications {padding:0;}
.linkedintm-card {border-radius:10px; border:1px solid rgba(0,0,0,.125); padding:10px; background: var(--darkgrey-color);}
.linkedintm-card .video-wrapper iframe {aspect-ratio: 16 / 9; width:100% !important; height:auto; z-index: 99; position: relative;}
.tmpostcard .tmpost-image {display:flex;}
.tmpostcard .post-link {border:solid 1px rgba(0, 0, 0, 0.08); border-top:none; margin-top: 0 !important; padding-top: 10px; border-radius: 0 0 8px 8px; background:#fff; overflow:hidden;}
.tmpostcard .post-link a {border-top:solid 1px rgba(0, 0, 0, 0.08); display: block; padding: 10px; font-size: 16px; font-weight: 600; color:#000;}  
.tmpostcard .post-link a:hover {color: var(--white-color); background: var(--primary-color);}
.linkedintm-disc {font-size:14px; line-height:normal; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; margin-bottom:12px; min-height:36px;}
img.br10 {border-radius:10px;}
.KeyBenefits {padding: 70px 0;}
/*.KeyBenefits_v2 {margin-top: 5rem;}*/
.KeyBenefits_v2 .icon_key img {width: 50px; min-width:50px;}
.KeyBenefits_v2 .keycard h5 {font-size: 18px;margin-bottom: 4px;}
.KeyBenefits_v2 .keycard{padding: 20px; display: flex;  gap: 20px;}
.KeyBenefits_v2 .benefits_video {height: 100%;}
.KeyBenefits_v2 .benefits_video img {height: 100%;object-fit: cover;}

/* Section header styling for KeyBenefits sections */
.KeyBenefits .section_header h2,
.KeyBenefits_v2 .section_header h2 {
    color: var(--black-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.KeyBenefits .section_header,
.KeyBenefits_v2 .section_header {
    margin-bottom: 0;
}

/* Ensure items in cdv6-whysection use black color, override any parent color rules */
.items.cdv6-whysection .item,
.common-cnt .items.cdv6-whysection .item,
.dark_bg .items.cdv6-whysection .item {
    color: var(--black-color) !important;
}

.items.cdv6-whysection .item b,
.items.cdv6-whysection .item strong,
.common-cnt .items.cdv6-whysection .item b,
.common-cnt .items.cdv6-whysection .item strong {
    color: var(--black-color) !important;
}
.common-cnt h2 { 
    margin-bottom: 30px; 
    margin-bottom: 24px; 
    font-weight: bold;
    color: var(--black-color);
}
.common-cnt h2 span { color: var(--primary-color);}
.common-cnt h2.mb-4 {
    margin-bottom: 1.5rem;
    color: var(--black-color);
}
.common-cnt small {font-size: 18px; margin-bottom: 15px; display: block; color: #fff; font-weight: 500;}
.common-cnt p.highlight {font-weight: 600;  color: var(--primary-color);}
.common-cnt p.tagline {color: var(--white-color);}
.values .common-cnt h2{font-weight: 600;}
.common-cnt h1 { margin-bottom: 30px; line-height: 72px; margin-bottom: 26px; font-weight: 600; text-align: left;}
.common-cnt h1 span { color: var(--primary-color);}
.common-cnt p.certificate_code {font-weight:600; color: var(--primary-color); font-size:20px;} 
.common-cnt h2.accordion-header {margin-bottom:0;}
/*.maxwidth {
.TeaserVideo .maxwidth {max-width: 1050px !important;}
.career-tabs .accordion-item, .career-tabs .accordion-item .accordion-button {padding: 0; background: none; border:none;}
.home-accordion .accordion-item {padding: 0; background: none; border-bottom: solid 1px #2A2E36; border-radius: 0;}
.accordion-item ul, .accordion-item ol {margin-left: 40px; margin-bottom: 10px;}
.accordion-item ul li {margin-bottom: 5px; position:relative;}
.accordion-item ul li:before {display: inline-block; content: ''; border-radius: 0.375rem; height: 7px; width: 7px; margin-right: 0.5rem; background-color: #bdbdbd; position: absolute; left: -17px; top: 8px;}
.accordion-item{background: transparent;}
.exam-faqs_section .accordion-item {
    border: none;
}
.faqs-slide .home-accordion .accordion-item {border: none;margin-bottom: 5px;}
.career-tabs .accordion-item {
    padding: 0;
}
.career-tabs .course-modules-box:last-child .accordion-item {margin-bottom:0;}
.career-tabs .accordion-item {position: relative;}
.PartnerList .accordion-item{margin-bottom: 30px; border-radius: 10px;background: var(--black-color-70);}
.vendorsection .accordion-item:last-of-type .accordion-collapse {display:block;}
.NewFaqStyle1 .accordion-item {border: none;padding: 0;}
.NewFaqStyle1 .accordion-item:first-of-type .accordion-button, .accordion-item:last-of-type .accordion-button:hover, .accordion-item:last-of-type .accordion-button.collapsed {border-radius: 0;}
#filterAccordion .accordion-item{padding:0;border:0;border-radius:0;}
#filterAccordion .accordion-item .accordion-button{background-color:transparent!important;border-radius:0!important;}
#filterAccordion .accordion-item .accordion-button::after{filter: invert(1);background-image:url(../images/down-angle-icon.svg)!important;background-size:16px;top:18px;right:10px;}
#filterAccordion .accordion-item .accordion-button:not(.collapsed)::after{top:13px;}
.accordion-button:not(.collapsed)::after { top: 20px; }
.career-tabs .accordion-item, .career-tabs .accordion-item .accordion-button {padding: 0; background: none; border:none;}
.home-accordion .accordion-button {background: none; font-size: 18px; color: #fff; font-weight: 600; padding-left: 40px;}
.home-accordion .accordion-button::after {background-image: url(../images/accordion-plus.svg); left: 0; right: auto; top: 12px; width: 32px; height: 32px; background-size: 32px;}
.home-accordion .accordion-button:not(.collapsed)::after {background-image: url("../images/accordion-minus.svg"); top: 12px;}
.home-accordion .accordion-button.primary_color {color:var(--primary-color);}
.exam-faqs_section .accordion-button {padding-left: 0;font-size: 18px;}
.exam-faqs_section .accordion-button::after {right: 0;}
.faqs-slide .home-accordion .accordion-button {padding-left: 1.25rem;padding-right: 40px;border-radius: 0px !important;background:var(--black-color-70);}
.faqs-slide .home-accordion .accordion-button::after {left: auto;right: 10px;background-image: url(../images/faq-arrow.svg);background-size: 14px; background-position: center;}
.PartnerList .accordion-button {justify-content: center;padding: 0;background: transparent !important;width:auto;}
.PartnerList .accordion-button::after {display: none;}
.PartnerList .accordion-button img {filter: invert(1);}
.PartnerList .accordion-button img {filter: invert(1);}
.NewFaqStyle1 .accordion-item:first-of-type .accordion-button, .accordion-item:last-of-type .accordion-button:hover, .accordion-item:last-of-type .accordion-button.collapsed {border-radius: 0;}
.NewFaqStyle1 .accordion-button:hover{border-radius:0;background:var(--pure-black);}
.NewFaqStyle1 .accordion-button {font-weight: 600;font-size: 18px;padding: 24px 50px 24px 30px;background: var(--pure-black);color:var(--white-color);}
.NewFaqStyle1 .accordion-button:not(.collapsed) {color: var(--pure-black);background:var(--light-primary) !important;}
.NewFaqStyle1 .accordion-button:after {top: 50%;background-position: center;transform: translateY(-50%);background-size: 15px;background-image:url(../images/faq-arrow1.svg);width: 15px; height: 15px;filter: invert(1);}
.NewFaqStyle1 .accordion-button:not(.collapsed):after {transform: rotate(180deg);top: 40%;filter: invert(0);}
.home-accordion .accordion-body {padding: 1rem  0.5rem;}
#SEOSpecialist .accordion-body {padding: 0px;}
.accordion-body.exam_faqs p {
    margin-bottom: 10px;
}
.exam-faqs_section .accordion-body {padding: 1rem 0rem;border-top: 1px solid #2A2E36;}
.faqs-slide .home-accordion .accordion-body {padding: 1rem 1.25rem;}
.accordion-body a:hover {text-decoration:underline; color: var(--white-color) !important;}
.job-listing-section .accordion-body h6, .job-listing-section .accordion-body h4 {color: var(--primary-color);}
.job-listing-section .accordion-body {color: var(--white-color);}
.job-listing-section .accordion-body {padding-left: 0;padding-right: 0;}
.home-accordion.whymilitaryaccordion .accordion-body {padding:0 0 0 40px;}
.home-accordion.whymilitaryaccordion .accordion-body {padding:0 0 0 40px;}
.h4_blog_resource .accordion-body a:hover {text-decoration: none;}
.h4_blog_resource .accordion-body a:hover {color: var(--primary-color);}
.h4_blog_resource .accordion-body a:hover {color: var(--white-color) !important;}
.NewFaqStyle1 .accordion-body{padding: 20px 30px;}
.NewFaqStyle1 .accordion-body p:last-child {margin-bottom: 0;}
.CertificationModules .accordion-body ol {margin: 0}
.CertificationModules .accordion-body ol li {font-size: 18px;}
.h2_faq .accordion-body ul {margin-bottom: 0;}
.vendorsection .accordion-item:last-of-type .accordion-collapse {display:block;}
.NewFaqStyle1 .accordion-collapse {background: var(--pure-black);}
.accordion-button:not(.collapsed)::after { top: 20px; }
.career-tabs .btn-outline.collapsed:after {transform: rotate(-180deg);}
.home-accordion .accordion-button:not(.collapsed)::after {background-image: url("../images/accordion-minus.svg"); top: 12px;}
.sfp-title.collapsed::before {transform: rotate(0deg);}
.NewFaqStyle1 .accordion-item:first-of-type .accordion-button, .accordion-item:last-of-type .accordion-button:hover, .accordion-item:last-of-type .accordion-button.collapsed {border-radius: 0;}
.NewFaqStyle1 .accordion-button:not(.collapsed) {color: var(--pure-black);background:var(--light-primary) !important;}
.NewFaqStyle1 .accordion-button:not(.collapsed):after {transform: rotate(180deg);top: 40%;filter: invert(0);}
.filter-sidebar .accordion-button:not(.collapsed){color:#d4a400;background:transparent;box-shadow:none;}
#filterAccordion .accordion-item .accordion-button:not(.collapsed)::after{top:13px;}

/* ========== STYLES FROM aicerts-base.css ========== */
.accordion-item{padding:15px}
.accordion-item:first-of-type{border-top-left-radius:12px; border-top-right-radius:12px;}
.accordion-item:last-of-type{border-bottom-right-radius:12px; border-bottom-left-radius:12px;}
.accordion-item:first-of-type .accordion-button:hover {border-top-left-radius:12px; border-top-right-radius:12px;}
.accordion-item:last-of-type .accordion-button:hover {border-bottom-right-radius:12px; border-bottom-left-radius:12px;}
.accordion-button:focus { box-shadow: none; border: none; }
.accordion-button:not(.collapsed) { background: var(--white-color); color: var(--body-font-color); box-shadow: none; }
.accordion-button:not(.collapsed)::after, .accordion-button::after { background-image: url(../images/accordion-arr.svg); }
/*.accordion-button {flex-direction: column; align-items: flex-start; }*/
.accordion-button {align-items: center; justify-content: space-between;     font-size: 14px;
    font-weight: 500;}
.accordion-button:hover { background: rgba(212,171,76,.1); border-radius: 12px;}
.accordion-item:first-of-type .accordion-button:hover {border-top-left-radius:12px; border-top-right-radius:12px;}
.accordion-item:last-of-type .accordion-button:hover {border-bottom-right-radius:12px; border-bottom-left-radius:12px;}
.accordion-button:after { position: absolute; top: 25px; right: 20px; }
#tabModules .accordion-button, #tabFAQs .accordion-button {font-size: 18px; font-weight: 500;}
.accordion-button span { font-size: 20px; font-weight: 500; display: block; margin-bottom: 5px; color: var(--black-color); }
.accordion-button .accordion-btn {display: block; margin-right:40px; }
.accordion-button span .career-ic {padding-right: 20px; }
.accordion-button:not(.collapsed) { background: var(--white-color); color: var(--body-font-color); box-shadow: none; }
.accordion-button:not(.collapsed)::after, .accordion-button::after { background-image: url(../images/accordion-arr.svg); }

/* At a Glance: Course + Exam Overview Section Styles */
#tabOverview h2 {color: var(--black-color);}

.Overviewtable {
    border-radius: 10px;
    border: 1px solid var(--light-gray-color1);
    padding: 20px;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.Overviewrow {
    display: flex;
    gap: 10px;
}

.Overviewrow div:first-child {
    background: var(--grey-color-90) !important;
    color: var(--black-color) !important;
    border-radius: 10px;
    min-width: 205px;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Overviewrow div:last-child {
    border-radius: 10px;
    border: 1px solid #e4e4e4;
    padding: 10px;
    width: 100%;
    color: #1C1F30 !important;
    background: #ffffff;
}

.Overviewrow div:last-child ul li {
    margin-bottom: 0px;
    padding-left: 20px;
    font-size: 18px;
    position: relative;
    list-style: none;
    color: #1C1F30 !important;
}

.Overviewrow div:last-child ul li:before {
    content: "";
    display: block;
    background: var(--primary-color);
    height: 5px;
    width: 5px;
    border-radius: 50%;
    font-size: 30px;
    position: absolute;
    left: 5px;
    top: 10px;
}

/* Ensure text color in Overviewrow last-child is black */
.Overviewrow div:last-child,
.Overviewrow div:last-child *,
.Overviewrow div:last-child p,
.Overviewrow div:last-child span {
    color: #1C1F30 !important;
}

/* Job Roles & Industry Outlook Carousel Styles */
.opp-slider .owl-stage-outer {
    margin: 0;
    padding-bottom: 10px;
}

.opp-slider .owl-stage {
    display: flex;
}

.opp-slider .owl-item {
    align-self: stretch;
}

.opp-slider .card {
    margin: 6px;
    background: var(--light-gray-color);
    padding: 50px 30px;
    text-align: center;
    border-radius: 16px;
    justify-content: flex-start;
    height: 100%;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.opp-slider .card img {
    height: 40px;
    width: 40px;
    margin-bottom: 32px;
}

.opp-slider .card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--black-color);
}

.opp-slider .card p {
    font-size: 18px;
    margin-bottom: 0;
}

.opp-slider .card:hover {
    background: var(--primary-color);
    transition: all 1s ease 0s;
}

.opp-slider .card:hover img {
    filter: brightness(0) invert(1);
}

.opp-slider .card:hover p {
    color: #fff;
}

/* Carousel Navigation Styles */
.cmn-sliderdots .owl-dots {
    display: none !important;
}

.cmn-sliderdots .owl-nav {
    display: block;
    position: absolute;
    bottom: calc(50% - 36px);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.cmn-sliderdots .owl-nav button {
    width: 36px;
    height: 36px;
    border-radius: 100% !important;
    background-color: transparent !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    position: relative;
}

.cmn-sliderdots .owl-nav .owl-prev {
    left: -15px;
}

.cmn-sliderdots .owl-nav .owl-next {
    right: -15px;
}

.cmn-sliderdots .owl-nav button span {
    color: var(--black-color);
    font-size: 50px;
    line-height: 1;
    position: relative;
}

.cmn-sliderdots .owl-nav button:hover span {
    color: var(--primary-color);
}

.cmn-sliderdots .owl-nav .owl-prev span {
    top: -2px;
    left: -2px;
}

.cmn-sliderdots .owl-nav .owl-next span {
    top: -2px;
    left: 1px;
}

.cmn-sliderdots.offsetarrow .owl-nav .owl-prev {
    left: -32px;
}

.cmn-sliderdots.offsetarrow .owl-nav .owl-next {
    right: -32px;
}

.cmn-sliderdots .owl-nav button.anyClass {
    visibility: hidden;
}

/* ======================================= Certifications Page Styles ======================================= */
.AllCertification {
    padding: 70px 0;
    position: relative;
}

.certi-card {
    border-radius: 15px;
    overflow: hidden;
    background: #eee;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border-color: var(--grey-color-70);
}

.certi-card:hover {
    border-color: var(--primary-color);
}

.certi_image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.certi_image img {
    width: 161%;
    display: block;
    max-width: 161%;
    margin-left: -60%;
}

.certi_image::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(9deg, var(--darkgrey-color) 7.45%, rgba(23, 26, 36, 0.40) 44.07%, rgba(23, 26, 36, 0.00) 60.94%);
    left: 0;
    top: 0;
    pointer-events: none;
}

.certi_details {
    padding: 0 10px 30px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}

.certi_details a h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.certi_details a:hover h3 {
    color: var(--hover-color);
}

.certi_details h3 {
    margin-bottom: 15px !important;
}

.certi_details p {
    color: var(--black-color);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

.certi_details p b {
    color: var(--black-color);
    font-weight: 1000;
}

.text-link {
    color: var(--black-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--primary-color);
}

ul.certi_list {
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}

ul.certi_list li {
    list-style: none;
    font-size: 16px;
    line-height: 1.5;
}

ul.certi_list li:last-child {
    margin-bottom: 10px;
}

ul.certi_list li a {
    border-bottom: 1px solid transparent;
    display: block;
    padding-bottom: 5px;
    transition: border-color 0.3s ease;
    font-weight: 600;
}

ul.certi_list li a:hover {
    border-color: var(--primary-color);
}

.chips_vecto {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -2;
}

.chips_vecto img {
    display: block;
    filter: invert(1);
}

.certi_details .link-primary {
    font-size: 16px;
    text-decoration: underline;
    padding: 8px 10px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.certi_details .link-primary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
}

.certi_list + .text-end {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-weight: 600;
}

.certi_list + .text-end img {
    width: 20px;
    height: auto;
}

.ai_vector1 {
    position: absolute;
    bottom: 0;
    opacity: 0.5;
    z-index: 0;
}

.ai_vector1 img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .certi_details {
        padding: 0 15px 20px 20px;
    }
    
    .certi_details h3 {
        font-size: 18px;
    }
    
    .certi_list + .text-end {
        margin-top: 15px;
        justify-content: flex-start;
    }
}

/* =========================================
   SECTION-BY-SECTION CSS MATCHING SOURCE SITE
   Source: https://www.aicerts.ai/certifications/essentials/ai-everyone
   Target: Match all sections' styles exactly
   Updated: Dec 18, 2025
   ========================================= */

/* =========================================
   SECTION 1: HERO SECTION (opt_detailsection)
   ========================================= */

.opt_detailsection {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 0;
    background: var(--white-color);
}

.opt_detailsection .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.opt_detailmain {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.opt_detail-cnt {
    flex: 1;
}

/* Main title styling - matching provider */
.opt_detail-cnt h1,
.opt_detail-cnt .certification-title,
h1.certification-title {
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
    color: var(--black-color) !important;
}

/* Certificate code styling */
p.opt_certificate_code {
    font-weight: 600;
    color: var(--primary-color) !important;
    font-size: 20px;
    margin-bottom: 24px !important;
    line-height: 1.5;
}

p.opt_certificate_code i,
p.opt_certificate_code span {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Tagline (small text) */
.opt_detail-cnt small {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 24px;
    color: var(--black-color);
    line-height: 1.5;
    font-style: italic;
}

/* Description paragraph */
.opt_detail-cnt p {
    margin-bottom: 36px;
    font-size: 18px;
    line-height: 26px;
    color: var(--black-color);
}

/* Key features list in hero */
.opt_detail-cnt ul,
.pre-section ul {
    margin-bottom: 36px;
    padding-left: 0;
    list-style: none;
}

.opt_detail-cnt ul li,
.pre-section ul li {
    margin-bottom: 20px;
    padding-left: 26px;
    font-size: 18px;
    position: relative;
    list-style: none;
    line-height: 26px;
    color: var(--black-color);
}

.opt_detail-cnt ul li:before,
.pre-section ul li:before {
    content: "";
    display: block;
    background: var(--primary-color);
    height: 7px;
    width: 7px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

/* Bold text in list items */
.opt_detail-cnt ul li strong,
.opt_detail-cnt ul li b,
.pre-section ul li strong,
.pre-section ul li b {
    font-weight: 700;
    color: var(--black-color);
}

/* Badge image container */
.opt_detail-img {
    width: 380px;
    flex-shrink: 0;
}

.opt_detail-imgbg {
    background: url("https://i0.wp.com/www.aicerts.ai/wp-content/themes/aicerts/images/thumb-bg.jpg") no-repeat top #171A24;
    padding: 80px;
    background-size: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}

.opt_detail-imgbg .badge-img,
.opt_detail-imgbg img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Buttons in hero */
.opt_detailsection a.optbtn,
a.optbtn.cmndupbtnlink {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    text-align: center;
    height: 44px;
    line-height: 44px;
    padding: 0 24px;
    min-width: 150px;
    border-radius: 0px;
    color: var(--white-color) !important;
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 15px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
    border: 2px solid var(--primary-color);
}

.opt_detailsection a.optbtn:hover,
a.optbtn.cmndupbtnlink:hover {
    background: var(--hover-color);
    border-color: var(--hover-color);
    color: var(--white-color) !important;
}

.opt_detailsection .opt_detail-img a.optbtn {
    margin-right: 0;
    display: block;
}

/* Hero section responsive */
@media screen and (max-width: 1199px) {
    .opt_detail-img {
        width: 280px;
    }
    .opt_detail-imgbg {
        padding: 40px;
    }
    .opt_detail-cnt h1,
    h1.certification-title {
        font-size: 40px !important;
        line-height: 1.2 !important;
    }
}

@media screen and (max-width: 1023px) {
    .opt_detail-img {
        width: 240px;
    }
    .opt_detail-cnt h1,
    h1.certification-title {
        font-size: 36px !important;
    }
}

@media screen and (max-width: 767px) {
    .opt_detailmain {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .opt_detail-img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .opt_detailsection a.optbtn {
        display: block;
        margin-bottom: 20px;
        margin-right: 0;
    }
    a.optbtn {
        width: 100%;
    }
    .opt_detail-cnt h1,
    h1.certification-title {
        font-size: 32px !important;
        margin-bottom: 20px !important;
    }
    .opt_detail-cnt small {
        font-size: 16px;
    }
    .opt_detail-cnt p,
    .opt_detail-cnt ul li {
        font-size: 16px;
    }
}

/* =========================================
   SECTION 2: TAB NAVIGATION (indextabs)
   ========================================= */

.indextabs {
    border-top: solid 1px #2a2e36;
    border-bottom: solid 1px #2a2e36;
    padding: 20px 0;
    background: var(--white-color);
}

.indextabs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.indextabs ul li {
    display: inline-flex;
    margin-right: 0;
}

.indextabs ul li a {
    display: inline-flex;
    line-height: 44px;
    color: var(--black-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.indextabs ul li a:hover {
    color: var(--primary-color);
}

/* Pill-style tabs */
.indextabs .cdv5-indextabs ul li a,
.cdv5-indextabs ul li a {
    background: var(--grey-color-90);
    padding: 10px 15px;
    border-radius: 10px;
    line-height: normal;
    font-size: 16px;
}

.indextabs .cdv5-indextabs ul li a:hover,
.indextabs .cdv5-indextabs ul li a.active,
.cdv5-indextabs ul li a:hover,
.cdv5-indextabs ul li a.active {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Sticky state */
.is-sticky.indextabs {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white-color);
    z-index: 99;
    padding: 10px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.is-sticky.indextabs ul {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
}

/* =========================================
   SECTION 3: OVERVIEW SECTION (KeyBenefits / Why This Matters)
   ========================================= */

.common-section {
    margin-bottom: 70px;
}

.KeyBenefits {
    padding: 70px 0;
}

.KeyBenefits_v2 .icon_key img {
    width: 50px;
    min-width: 50px;
}

.KeyBenefits_v2 .keycard h5 {
    font-size: 18px;
    margin-bottom: 4px;
}

.KeyBenefits_v2 .keycard {
    padding: 20px;
    display: flex;
    gap: 20px;
}

/* Section headers */
.KeyBenefits .section_header h2,
.KeyBenefits_v2 .section_header h2,
.common-cnt h2 {
    color: var(--black-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* dark_bg section - Override to use light background with dark text */
.dark_bg {
    background-color: var(--grey-color-90);
}

/* Items with bullet points in "Why This Certification Matters" */
.cdv6-whysection .item,
.items.cdv6-whysection .item {
    margin-bottom: 20px;
    padding-left: 26px;
    font-size: 18px;
    position: relative;
    list-style: none;
    color: var(--black-color) !important;
    line-height: 1.6;
}

.cdv6-whysection .item:before,
.items.cdv6-whysection .item:before {
    content: "";
    display: block;
    background: var(--primary-color);
    height: 7px;
    width: 7px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

.cdv6-whysection .item b,
.cdv6-whysection .item strong,
.items.cdv6-whysection .item b,
.items.cdv6-whysection .item strong {
    font-weight: 700;
    color: var(--black-color) !important;
}

/* Override dark_bg text colors for readability */
.dark_bg .common-cnt h2,
.dark_bg .section_header h2 {
    color: var(--black-color) !important;
}

.dark_bg .cdv6-whysection .item,
.dark_bg .items.cdv6-whysection .item {
    color: var(--black-color) !important;
}

/* =========================================
   SECTION 4: COURSE OVERVIEW TABLE (Overviewtable)
   ========================================= */

#tabOverview h2,
.common-cnt h2 {
    color: var(--black-color);
}

.Overviewtable {
    border-radius: 10px;
    border: 1px solid var(--light-gray-color1);
    padding: 20px;
    gap: 15px;
    display: flex;
    flex-direction: column;
    background: var(--white-color);
}

.Overviewrow {
    display: flex;
    gap: 10px;
}

.Overviewrow div:first-child {
    background: var(--grey-color-90) !important;
    color: var(--black-color) !important;
    border-radius: 10px;
    min-width: 205px;
    text-align: center;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.Overviewrow div:last-child {
    border-radius: 10px;
    border: 1px solid #e4e4e4;
    padding: 10px 15px;
    width: 100%;
    color: #1C1F30 !important;
    font-size: 16px;
    display: flex;
    align-items: center;
    background: var(--white-color);
}

/* Ensure all text inside Overviewrow values is black */
.Overviewrow div:last-child,
.Overviewrow div:last-child *,
.Overviewrow div:last-child span,
.Overviewrow div:last-child p {
    color: #1C1F30 !important;
}

.Overviewrow div:last-child ul {
    margin: 0;
    padding-left: 20px;
}

.Overviewrow div:last-child ul li {
    margin-bottom: 0;
    padding-left: 20px;
    font-size: 16px;
    position: relative;
    list-style: none;
    color: #1C1F30 !important;
}

.Overviewrow div:last-child ul li span {
    color: #1C1F30 !important;
}

.Overviewrow div:last-child ul li:before {
    content: "";
    display: block;
    background: var(--primary-color);
    height: 5px;
    width: 5px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

@media screen and (max-width: 767px) {
    .Overviewrow {
        flex-direction: column;
    }
    .Overviewrow div:first-child {
        min-width: 100%;
    }
}

/* =========================================
   SECTION 5: JOB ROLES CAROUSEL (opp-slider)
   ========================================= */

.opp-slider .owl-stage-outer {
    margin: 0;
    padding-bottom: 10px;
}

.opp-slider .owl-stage {
    display: flex;
}

.opp-slider .owl-item {
    align-self: stretch;
}

.opp-slider .card {
    margin: 6px;
    background: var(--light-gray-color);
    padding: 50px 30px;
    text-align: center;
    border-radius: 16px;
    justify-content: flex-start;
    height: 100%;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: none;
}

.opp-slider .card img {
    height: 40px;
    width: 40px;
    margin-bottom: 32px;
}

.opp-slider .card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--black-color);
}

.opp-slider .card p {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--body-font-color);
}

/* Card hover effect - turns gold */
.opp-slider .card:hover {
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.opp-slider .card:hover img {
    filter: brightness(0) invert(1);
}

.opp-slider .card:hover h5,
.opp-slider .card:hover p {
    color: #fff;
}

/* Carousel navigation arrows */
.cmn-sliderdots .owl-dots {
    display: none !important;
}

.cmn-sliderdots .owl-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    bottom: calc(50% - 36px);
    transform: translateY(-50%);
}

.cmn-sliderdots .owl-nav button {
    width: 36px;
    height: 36px;
    border-radius: 100% !important;
    background-color: transparent !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    position: relative;
}

.cmn-sliderdots .owl-nav .owl-prev {
    left: -15px;
}

.cmn-sliderdots .owl-nav .owl-next {
    right: -15px;
}

.cmn-sliderdots .owl-nav button span {
    color: var(--black-color);
    font-size: 50px;
    line-height: 1;
}

.cmn-sliderdots .owl-nav button:hover span {
    color: var(--primary-color);
}

.cmn-sliderdots.offsetarrow .owl-nav .owl-prev {
    left: -32px;
}

.cmn-sliderdots.offsetarrow .owl-nav .owl-next {
    right: -32px;
}

/* Section title */
h3.cmntitle {
    font-size: 32px;
    font-weight: bold;
    color: var(--black-color);
}

/* =========================================
   SECTION 6: INDUSTRY GROWTH SECTION
   ========================================= */

#tabOpportunities .row {
    display: flex;
    align-items: center;
}

#tabOpportunities h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 20px;
}

#tabOpportunities p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--black-color);
}

#tabOpportunities ul {
    padding-left: 0;
    margin-bottom: 0;
}

#tabOpportunities ul li {
    margin-bottom: 15px;
    padding-left: 26px;
    font-size: 18px;
    position: relative;
    list-style: none;
    color: var(--black-color);
    line-height: 1.6;
}

#tabOpportunities ul li:before {
    content: "";
    display: block;
    background: var(--primary-color);
    height: 7px;
    width: 7px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

/* =========================================
   SECTION 7: COURSE MODULES ACCORDION
   ========================================= */

.h2_faq {
    padding: 70px 0;
}

.h2_faq .accordion-body ul {
    margin-bottom: 0;
}

#tabModules h3.cmntitle {
    color: var(--black-color);
    margin-bottom: 30px;
}

#tabModules .accordion-item {
    border: none;
    border-radius: 0;
    margin-bottom: 5px;
    padding: 0;
    background: transparent;
}

#tabModules .accordion-button,
#tabFAQs .accordion-button {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
    background: var(--grey-color-90);
    padding: 15px 50px 15px 20px;
    border-radius: 10px;
}

#tabModules .accordion-button::after,
#tabFAQs .accordion-button::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    content: '';
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    background-position: center;
    transition: transform 0.3s ease;
    border: none;
}

#tabModules .accordion-button:not(.collapsed),
#tabFAQs .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: none;
}

#tabModules .accordion-button:not(.collapsed)::after,
#tabFAQs .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-180deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#tabModules .accordion-button:hover {
    background: rgba(207, 169, 53, 0.1);
}

#tabModules .accordion-button:not(.collapsed):hover {
    background: var(--primary-color);
}

#tabModules .accordion-collapse {
    background: transparent;
}

#tabModules .accordion-body {
    padding: 20px 20px;
    color: var(--black-color);
}

#tabModules .accordion-body ol {
    margin: 0;
    padding-left: 20px;
}

#tabModules .accordion-body ol li {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--black-color);
}

/* =========================================
   SECTION 8: TOOLS SECTION (toolsrow)
   ========================================= */

.cmn-section {
    padding: 70px 0;
}

.cmn-section h3.cmntitle {
    color: var(--black-color);
    margin-bottom: 30px;
}

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

.toolsrow .toolcard {
    background: var(--white-color);
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    min-height: 100%;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 0 calc(20% - 30px);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    color: var(--black-color);
    font-size: 18px;
    line-height: 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toolsrow .toolcard:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

.toolcard img {
    background-color: var(--white-color);
    max-width: 100px;
    height: auto;
}

.toolcard p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--black-color);
}

@media screen and (max-width: 1199px) {
    .toolsrow .toolcard {
        flex: 0 calc(25% - 30px);
    }
}

@media screen and (max-width: 991px) {
    .toolsrow .toolcard {
        flex: 0 calc(33.333% - 30px);
    }
}

@media screen and (max-width: 767px) {
    .toolsrow .toolcard {
        flex: 0 calc(50% - 15px);
        gap: 20px;
        padding: 20px;
    }
    .toolsrow {
        gap: 15px;
    }
}

/* =========================================
   SECTION 9: PREREQUISITES SECTION
   ========================================= */

#tabPrerequesites {
    padding: 70px 0;
}

#tabPrerequesites h2 {
    color: var(--black-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

#tabPrerequesites ul {
    padding-left: 0;
    margin-bottom: 0;
}

#tabPrerequesites ul li {
    margin-bottom: 20px;
    padding-left: 26px;
    font-size: 18px;
    position: relative;
    list-style: none;
    line-height: 1.6;
    color: var(--black-color);
}

#tabPrerequesites ul li:last-child {
    margin-bottom: 0;
}

#tabPrerequesites ul li:before {
    content: "";
    display: block;
    background: var(--primary-color);
    height: 7px;
    width: 7px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

/* =========================================
   SECTION 10: EXAM DETAILS SECTION (edcardsmain)
   ========================================= */

#tabExamdetail {
    padding: 70px 0;
}

#tabExamdetail h3.cmntitle {
    color: var(--black-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

#tabExamdetail h3 {
    font-size: 24px;
    color: var(--black-color);
}

#tabExamdetail h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--black-color);
}

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

.edcardsmain .edcardcol {
    background: var(--grey-color-90);
    border-radius: 10px;
    padding: 20px;
    border-right: solid 2px var(--primary-color);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 220px;
    text-align: center;
    flex: 1;
}

.edcardsmain .edcardcol h3 {
    position: relative;
    margin-bottom: 26px;
    font-size: 20px;
    font-weight: 700;
}

.edcardsmain .edcardcol h3.primary_color {
    color: var(--primary-color) !important;
}

.edcardsmain .edcardcol h3:last-child,
.edcardsmain .edcardcol h4 {
    margin-bottom: 0;
}

.edcardsmain .edcardcol h3:first-child:before {
    width: 70px;
    height: 2px;
    position: absolute;
    content: "";
    bottom: -15px;
    background: var(--primary-color);
    left: 50%;
    transform: translate(-50%, 0);
}

.edcardsmain .edcardcol h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
}

/* Exam Blueprint list */
ul.faq-list {
    margin-left: 45px;
    margin-top: 5px;
    margin-bottom: 20px;
    padding-left: 0;
}

ul.faq-list li {
    margin-bottom: 10px;
    list-style-type: disc;
    font-size: 18px;
    color: var(--black-color);
    line-height: 1.6;
}

@media screen and (max-width: 991px) {
    .edcardsmain .edcardcol {
        min-width: calc(50% - 15px);
    }
}

@media screen and (max-width: 575px) {
    .edcardsmain .edcardcol {
        min-width: 100%;
    }
}

/* =========================================
   SECTION 11: MODE OF LEARNING SECTION (cdv6-schedulecard)
   ========================================= */

.cdv6-cformat {
    border-top: solid 1px var(--black-color-70);
    border-bottom: solid 1px var(--black-color-70);
    padding: 70px 0;
    background: var(--white-color);
}

#tabLearning h3.cmntitle {
    color: var(--black-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

#tabLearning h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 20px;
}

/* Included icons - matching source site */
.Includedicons {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cd6icons {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
}

.cd6icons:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.cd6icons img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Schedule cards */
.cdv6-schedulecard {
    border-radius: 10px;
    border: 1px solid var(--black-color-70);
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    background: var(--white-color);
}

.cdv6-schedulecard h4 {
    background: var(--grey-color-90);
    color: var(--primary-color) !important;
    border-radius: 10px;
    padding: 12px 20px;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cdv6-schedulecard .pre-section {
    flex: 1;
}

.cdv6-schedulecard .pre-section ul {
    margin-bottom: 20px;
}

.cdv6-schedulecard .pre-section ul li {
    font-size: 16px;
    margin-bottom: 12px;
}

.cdv6-schedulecard .btn {
    margin-top: auto;
}

.cdv6-schedulecard .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
    padding: 0 24px;
    height: 44px;
    line-height: 44px;
}

.cdv6-schedulecard .btn-primary:hover {
    background: var(--hover-color);
    border-color: var(--hover-color);
}

/* =========================================
   SECTION 12: TESTIMONIALS SECTION
   ========================================= */

#tabTestimonials {
    padding: 70px 0;
    background: var(--grey-color-90);
}

#tabTestimonials h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 30px;
}

/* LinkedIn review cards */
.linkedintm-card {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.125);
    padding: 20px;
    background: var(--white-color);
    margin-bottom: 20px;
}

.linkedintm-card .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.linkedintm-card .user-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.linkedintm-card .user-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 5px;
}

.linkedintm-card .user-title {
    font-size: 14px;
    color: var(--body-font-color);
    line-height: 1.4;
}

.linkedintm-card .review-content {
    font-size: 16px;
    color: var(--black-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.linkedintm-card .certificate-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.linkedintm-card .view-post {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.linkedintm-card .view-post:hover {
    color: var(--hover-color);
}

/* =========================================
   SECTION 13: FAQs ACCORDION (NewFaqStyle1)
   ========================================= */

#tabFAQs {
    padding: 70px 0;
}

#tabFAQs h3.cmntitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 40px;
}

/* NewFaqStyle1 accordion styling */
.NewFaqStyle1 .accordion {
    display: grid;
    gap: 1rem;
}

.NewFaqStyle1 .accordion-item {
    border: none;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
}

.NewFaqStyle1 .accordion-item:first-of-type .accordion-button,
.NewFaqStyle1 .accordion-item:last-of-type .accordion-button:hover,
.NewFaqStyle1 .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.NewFaqStyle1 .accordion-button {
    font-weight: 600;
    font-size: 18px;
    padding: 24px 50px 24px 30px;
    background: var(--pure-black);
    color: var(--white-color);
    border-radius: 0;
}

.NewFaqStyle1 .accordion-button:hover {
    background: var(--pure-black);
    border-radius: 0;
}

.NewFaqStyle1 .accordion-button:not(.collapsed) {
    color: var(--pure-black);
    background: var(--light-primary) !important;
    box-shadow: none;
}

.NewFaqStyle1 .accordion-button::after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-size: 15px;
    width: 15px;
    height: 15px;
    filter: invert(1);
}

.NewFaqStyle1 .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg) translateY(50%);
    filter: invert(0);
}

.NewFaqStyle1 .accordion-collapse {
    background: var(--pure-black);
}

.NewFaqStyle1 .accordion-body {
    padding: 20px 30px;
    color: var(--white-color);
}

.NewFaqStyle1 .accordion-body p {
    color: var(--white-color);
    margin-bottom: 0;
}

.NewFaqStyle1 .accordion-body p:last-child {
    margin-bottom: 0;
}

/* FAQ accordion default style - compact like source site */
.faq_wrap .accordion {
    border-top: 1px solid #e4e4e4;
}

.faq_wrap .accordion-item {
    border: none;
    border-bottom: 1px solid #e4e4e4;
    border-radius: 0 !important;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

.faq_wrap .accordion-button {
    background: transparent;
    color: var(--black-color);
    font-size: 18px;
    font-weight: 500;
    padding: 20px 50px 20px 0;
    border-radius: 0 !important;
}

.faq_wrap .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--black-color);
    box-shadow: none;
}

.faq_wrap .accordion-button:hover {
    background: transparent;
}

.faq_wrap .accordion-button:not(.collapsed):hover {
    background: transparent;
}

.faq_wrap .accordion-button::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    content: '';
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    background-position: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border: none;
    padding: 0;
}

.faq_wrap .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-180deg);
}

.faq_wrap .accordion-body {
    padding: 0 0 20px 0;
    background: transparent;
    border-radius: 0;
    margin-top: 0;
}

.faq_wrap .accordion-body p {
    color: var(--black-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================
   ADDITIONAL UTILITY CLASSES
   ========================================= */

/* Primary color utility */
.primary_color {
    color: var(--primary-color) !important;
}

/* Section spacing */
.cmn-section.pt-0 {
    padding-top: 0;
}

/* Container max-width */
.maxwidth {
    max-width: 1200px !important;
    margin: 0 auto;
}

/* Button styles */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    color: var(--white-color);
}

.btn-primary:hover {
    background: var(--hover-color);
    border-color: var(--hover-color);
    color: var(--white-color);
}

/* Text colors for common-cnt */
.common-cnt p {
    color: var(--black-color);
}

.common-cnt h2 span,
.common-cnt h1 span {
    color: var(--primary-color);
}

/* Skills section (if added) */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.skills-list li {
    background: var(--grey-color-90);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    color: var(--black-color);
    list-style: none;
}

.hidden-skill {
    display: none;
}

.expanded .hidden-skill {
    display: list-item;
}

/* More button */
.btn-more {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
}

.btn-more:hover {
    color: var(--hover-color);
}

/* Recommended Certifications Carousel */
.More_Certificate .certi-card {
    margin: 10px;
}

.More_Certificate .owl-nav button span {
    font-size: 40px;
    color: var(--black-color);
}

.More_Certificate .owl-nav button:hover span {
    color: var(--primary-color);
}

/* Audio player styling */
.audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--grey-color-90);
    border-radius: 10px;
    margin-top: 20px;
}

/* Category page title heading - override white color */
.AllCertification .category-title-heading,
.AllCertification h2.cmn-hd {
    color: var(--black-color) !important;
}

.audio-player .play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.audio-player .play-btn:hover {
    background: var(--hover-color);
}

.audio-player .waveform {
    flex: 1;
    height: 40px;
}

.audio-player .audio-title {
    font-weight: 600;
    color: var(--black-color);
}

.audio-player .audio-duration {
    color: var(--body-font-color);
    font-size: 14px;
}

/* =========================================
   OVERRIDE: Ensure Overviewtable text is BLACK
   These rules use maximum specificity to override any other styles
   ========================================= */

/* Force black text on all Overviewrow value cells */
.common-section .common-cnt .Overviewtable .Overviewrow > div:last-child,
.common-section .common-cnt .Overviewtable .Overviewrow > div:last-child *,
section .Overviewtable .Overviewrow div:last-child,
section .Overviewtable .Overviewrow div:last-child * {
    color: #1C1F30 !important;
}

/* Target specific text elements inside Overviewrow values */
.Overviewtable .Overviewrow div:nth-child(2),
.Overviewtable .Overviewrow div:nth-child(2) * {
    color: #1C1F30 !important;
}

/* List items inside Overviewrow */
.Overviewtable .Overviewrow div:last-child ul,
.Overviewtable .Overviewrow div:last-child ul li,
.Overviewtable .Overviewrow div:last-child ul li * {
    color: #1C1F30 !important;
}

/* Industry Growth Section - matching source site */
#tabOpportunities.pre-section {
    background: #f8f9fa;
    padding: 60px 0;
}

#tabOpportunities.pre-section h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 25px;
}

#tabOpportunities.pre-section .faq-list {
    padding-left: 0;
    margin-bottom: 0;
}

#tabOpportunities.pre-section .faq-list li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--body-font-color);
}

#tabOpportunities.pre-section .faq-list li strong {
    color: var(--black-color);
    display: inline;
}

#tabOpportunities .site-image-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#tabOpportunities .site-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Who Should Enroll Section */
#tabWhoShouldEnroll.pre-section {
    background: #ffffff;
    padding: 60px 0;
}

#tabWhoShouldEnroll.pre-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 25px;
}

#tabWhoShouldEnroll.pre-section .faq-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

#tabWhoShouldEnroll.pre-section .faq-list li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--body-font-color);
    list-style: none;
}

#tabWhoShouldEnroll.pre-section .faq-list li::marker {
    content: none;
}

#tabWhoShouldEnroll.pre-section .faq-list li p {
    margin-bottom: 0;
}

#tabWhoShouldEnroll.pre-section .faq-list li strong {
    color: var(--black-color);
}

#tabWhoShouldEnroll .site-image-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#tabWhoShouldEnroll .site-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Job Roles Carousel Navigation */
.cmn-sliderdots.offsetarrow .owl-nav {
    display: flex !important;
    justify-content: space-between;
    width: calc(100% + 80px);
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    pointer-events: none;
}

.cmn-sliderdots.offsetarrow .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    border: 1px solid #e4e4e4 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cmn-sliderdots.offsetarrow .owl-nav button:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.cmn-sliderdots.offsetarrow .owl-nav button span {
    color: var(--black-color);
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
}

.cmn-sliderdots.offsetarrow .owl-nav button:hover span {
    color: #ffffff;
}

.cmn-sliderdots.offsetarrow .owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cmn-sliderdots .owl-stage-outer {
    position: relative;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.cta-section .d-flex {
    gap: 20px;
}

.cta-section .optbtn {
    min-width: 180px;
    text-align: center;
}