/*
Theme Name:  Aksharbridge Academy
Theme URI:   http://localhost/akshar-academy
Author:      Aksharbridge Academy
Author URI:  http://localhost/akshar-academy
Description: A clean, custom theme for Aksharbridge Academy — built for an educational institute website.
Version:     1.2.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: akshar-academy
Tags:        education, academy, school, clean, responsive
*/

/* =========================================================
   GOOGLE TRANSLATE SWITCHER
   ========================================================= */
@media (max-width: 960px) {
    .gt_switcher_wrapper {
        position: fixed;
        top: 21px !important;
        right: 64px !important;
        z-index: 999999;
    }
}

@media (min-width: 961px) {
    .gt_switcher_wrapper {
        position: fixed;
        top: 27px !important;
        right: 15px;
        z-index: 999999;
    }
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0d56b8;
    text-decoration: underline;
}

ul,
ol {
    padding-left: 1.5rem;
}

/* =========================================================
   CSS VARIABLES
   ========================================================= */
:root {
    --color-primary: #01559E;
    --color-primary-dark: #01407a;
    --color-secondary: #f5a623;
    --color-dark: #1c2b4a;
    --color-light: #f4f6f9;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-muted: #6b7280;
    --color-border: #e2e8f0;

    --font-heading: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-body: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    --header-height: 72px;
    --container-width: 1200px;
    --radius: 6px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

/* =========================================================
   LAYOUT — CONTAINER & WRAPPER
   ========================================================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
    padding: calc(var(--header-height) + 2rem) 0 3rem;
}

/* =========================================================
   HEADER — transparent, fixed, overlays hero sections
   ========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

@media (min-width: 961px) {
    .site-header .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0px 5.25rem;
    }
}

/* Solid white when page is scrolled */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--color-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Inner flex row */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1.5rem;
    position: relative;
}

/* ── Logo ─────────────────────────────────────────── */
.site-branding {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-branding .custom-logo-link img,
.site-branding .custom-logo {
    height: 66px;
    width: 70px;
    display: block;
}

/* Text logo fallback */
.site-text-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #000000;
    text-decoration: none;
    letter-spacing: -0.4px;
    transition: color 0.2s;
}

.site-text-logo:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.main-navigation {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    padding-top: 8px;
}

/* Top-level list */
.main-navigation>ul,
.main-navigation #primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
}

/* All links */
.main-navigation ul li a {
    display: block;
    padding: 0.45rem 0.85rem;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    position: relative;
}

/* Hover & active state */
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item>a,
.main-navigation ul li.current-menu-ancestor>a,
.main-navigation ul li.current_page_item>a,
.main-navigation ul li.current_page_ancestor>a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Active underline accent */
.main-navigation ul li.current-menu-item>a::after,
.main-navigation ul li.current_page_item>a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* When active item also has children, caret wins — suppress underline */
.main-navigation ul li.current-menu-item.menu-item-has-children>a::after,
.main-navigation ul li.current_page_item.menu-item-has-children>a::after {
    position: static;
    bottom: auto;
    left: auto;
    right: auto;
    height: auto;
    background: none;
    border-radius: 0;
}

/* ── Dropdown / Sub-menu ──────────────────────────── */
.main-navigation ul li {
    position: relative;
}

.main-navigation ul .sub-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 0.4rem 0;
    z-index: 999;
    list-style: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

/* Invisible bridge fills the gap so hover doesn't break */
.main-navigation ul .sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.main-navigation ul li:hover>.sub-menu,
.main-navigation ul li:focus-within>.sub-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.main-navigation ul .sub-menu li a {
    padding: 0.5rem 1.1rem;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    width: 100%;
}

.main-navigation ul .sub-menu li a:hover {
    color: var(--color-primary);
    background: var(--color-light);
}

/* Nested sub-menu: open to the right */
.main-navigation ul .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-navigation ul .sub-menu li:hover > .sub-menu,
.main-navigation ul .sub-menu li:focus-within > .sub-menu {
    transform: translateX(0);
}

/* Bridge for nested sub-menus */
.main-navigation ul .sub-menu .sub-menu::before {
    top: 0;
    left: -8px;
    right: auto;
    bottom: 0;
    height: auto;
    width: 8px;
}

/* Dropdown caret icon */
.main-navigation ul li.menu-item-has-children>a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.2s;
}

.main-navigation ul li.menu-item-has-children:hover>a::after,
.main-navigation ul li.menu-item-has-children:focus-within>a::after {
    transform: rotate(180deg);
}

/* Sub-menu items with children: caret points right */
.main-navigation ul .sub-menu li.menu-item-has-children > a::after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid currentColor;
    border-right: none;
    transform: none;
}

.main-navigation ul .sub-menu li.menu-item-has-children:hover > a::after,
.main-navigation ul .sub-menu li.menu-item-has-children:focus-within > a::after {
    transform: none;
}

/* ── Header Actions (search + hamburger) ─────────── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Search icon button */
.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
    line-height: 1;
}

.search-toggle:hover {
    color: var(--color-primary);
    background: rgba(1, 85, 158, 0.07);
}

/* ── Hamburger — mobile only ─────────────────────── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animated X when open */
.nav-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Search Overlay ──────────────────────────────── */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 1.1rem 0;
    display: none;
    z-index: 999;
}

.search-overlay.open {
    display: block;
}

.search-overlay-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-overlay-inner .search-form {
    flex: 1;
}

.search-overlay-inner .search-form>div {
    display: flex;
    gap: 0.5rem;
}

.search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    padding: 0.3rem;
    border-radius: var(--radius);
    transition: color 0.2s;
    flex-shrink: 0;
}

.search-close:hover {
    color: var(--color-primary);
}

/* ── Site Content offset (below fixed header) ─────── */
.site-main {
    flex: 1;
}

/*
 * For pages WITHOUT a hero section, wrap content inside a
 * .page-content-wrap to push it below the fixed header.
 */
.page-content-wrap {
    padding-top: calc(var(--header-height) + 1.5rem);
}

/* =========================================================
   SCROLL-REVEAL ANIMATIONS (About Page)
   ========================================================= */

[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-left"]  { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate="fade-in"]    { transform: none; }

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }
[data-animate][data-delay="400"] { transition-delay: 0.4s; }
[data-animate][data-delay="500"] { transition-delay: 0.5s; }
[data-animate][data-delay="600"] { transition-delay: 0.6s; }

/* =========================================================
   ABOUT PAGE HERO
   ========================================================= */

.about-hero-section {
    position: relative;
    background-color: #1565C0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 3.5rem 2rem 3rem;
}

.about-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: center;
}

/* ---- Left Content ---- */
.about-hero-content {
    color: #1a1a2e;
}

.about-hero-title {
    font-size: 2.2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #0d1b2a;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.about-hero-text {
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

/* ---- Mission / Vision Boxes ---- */
.about-hero-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7.25rem;
    margin-top: 2rem;
    padding-top: 28px;
}

.about-hero-box {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    padding: 2.25rem 1rem 1.25rem;
    background: transparent;
    margin-right: -93px;
    z-index: 1;
}

.about-hero-box-icon {
    position: absolute;
    top: -18px;
    left: -4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 45px;
}

.about-hero-box-icon svg {
    width: 48px;
    height: 48px;
}

.about-hero-box-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.about-hero-box-title {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.about-hero-box-content {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin: 0;
}

/* ---- Right Image ---- */
.about-hero-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.about-hero-student-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    display: block;
    z-index: 5;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .about-hero-section {
        padding: 6.5rem 2rem 3rem;
    }

    .about-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .about-hero-image {
        display: none;
    }

    .about-hero-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 540px) {
    .about-hero-boxes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-box {
        margin-right: 0;
    }

    .about-hero-title {
        font-size: 1.4rem;
    }
}

/* =========================================================
   VOCATIONAL PROGRAMS PAGE — HERO SECTION
   ========================================================= */
.vp-hero-section {
    position: relative;
    background-color: #1565C0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 5.5rem 2rem 5rem;
    min-height: 520px;
}

.vp-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 479px;
    gap: 3rem;
    align-items: center;
}

/* ---- Left Content ---- */
.vp-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vp-hero-title {
    font-size: 2.2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 1rem;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.vp-hero-subtitle {
    font-size: 14px;
    color: #000000;
    line-height: 1.75;
    margin: 0 0 1.75rem;
}

/* ---- Icon + Box ---- */
.vp-hero-box-wrap {
    position: relative;
    padding-top: 28px;
}

.vp-hero-box-icon {
    position: absolute;
    top: 0;
    left: -4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    z-index: 2;
}

.vp-hero-box-icon svg,
.vp-hero-box-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.vp-hero-box {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 2.25rem 1.5rem 1.5rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.vp-hero-box-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* ---- Right: Circular Image ---- */
.vp-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-hero-img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .vp-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .vp-hero-image {
        display: none;
    }

    .vp-hero-title {
        font-size: 1.7rem;
    }
}

/* =========================================================
   TESTING PAGE — HERO SECTION
   ========================================================= */

.testing-hero-section {
    position: relative;
    background-color: #b8cfe8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center;
}

/* Left-to-right gradient overlay */
.testing-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(180, 210, 235, 0.85) 0%, rgba(180, 210, 235, 0.6) 45%, rgba(180, 210, 235, 0.0) 100%);
    z-index: 1;
}

.testing-hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.testing-hero-content {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ---- Title ---- */
.testing-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 2rem;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

/* ---- Icon + Box ---- */
.testing-hero-box-wrap {
    position: relative;
    padding-top: 24px;
}

.testing-hero-box-icon {
    position: absolute;
    top: 0;
    left: -4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 2;
}

.testing-hero-box-icon svg,
.testing-hero-box-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.testing-hero-box {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.testing-hero-box-text {
    font-size: 13px;
    color: #111111;
    line-height: 1.75;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .testing-hero-title {
        font-size: 1.7rem;
    }

    .testing-hero-content {
        max-width: 100%;
    }
}

/* =========================================================
   TESTING PAGE — OUR TESTING SERVICES SECTION
   ========================================================= */

.testing-svc-section {
    position: relative;
    background-color: #c0001e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 4rem 2rem 4.5rem;
}

.testing-svc-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.testing-svc-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- Section Title ---- */
.testing-svc-title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 2.5rem;
}

/* ---- Grid: col1 tall, cols 2-3 two rows ---- */
.testing-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.testing-svc-card--tall {
    grid-row: span 2;
}

/* ---- Card ---- */
.testing-svc-card {
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    padding: 1.4rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

/* ---- Card head: icon + title ---- */
.testing-svc-card-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.testing-svc-card-icon {
    flex-shrink: 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-top: 2px;
}

.testing-svc-card-icon svg,
.testing-svc-card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.testing-svc-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
}

/* ---- Bullet list ---- */
.testing-svc-card-list {
    margin: 0;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.testing-svc-card-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .testing-svc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testing-svc-card--tall {
        grid-row: span 1;
        grid-column: span 2;
    }
}

@media (max-width: 560px) {
    .testing-svc-grid {
        grid-template-columns: 1fr;
    }

    .testing-svc-card--tall {
        grid-column: span 1;
    }

    .testing-svc-title {
        font-size: 1.4rem;
    }
}

/* =========================================================
   TESTING PAGE — WHY CHOOSE & HOW TO BOOK SECTION
   ========================================================= */

.testing-wc-section {
    padding: 4rem 0 0;
    overflow: hidden;
}

/* ---- Each block ---- */
.testing-wc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 360px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Block 2 has a relative wrapper for the deco lines */
.testing-wc-block--2 {
    position: relative;
    background-color: #ffffff;
    padding: 3.5rem 0;
}

/* ---- Image ---- */
.testing-wc-image {
    overflow: hidden;
    height: 100%;
    min-height: 320px;
}

.testing-wc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Content ---- */
.testing-wc-content {
    padding: 3rem 3.5rem;
}

.testing-wc-block--2 .testing-wc-content {
    padding-left: 5rem;
}

/* ---- Title ---- */
.testing-wc-title {
    font-size: 1.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

/* ---- List ---- */
.testing-wc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.testing-wc-list li {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: #222222;
    padding-left: 1.1rem;
    position: relative;
}

.testing-wc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #1a1a6e;
}

.testing-wc-item-label {
    font-weight: 700;
    color: #084FA7;
}

.testing-wc-item-sep {
    color: #222222;
    font-weight: 400;
}

.testing-wc-item-desc {
    color: #333333;
}

.testing-wc-block--2 .testing-wc-content,
.testing-wc-block--2 .testing-wc-image {
    position: relative;
    z-index: 1;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .testing-wc-block {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .testing-wc-block--1 .testing-wc-image {
        min-height: 260px;
    }

    .testing-wc-block--2 .testing-wc-image {
        order: -1;
        min-height: 260px;
    }

    .testing-wc-content,
    .testing-wc-block--2 .testing-wc-content {
        padding: 2rem 1.5rem;
    }

}

/* =========================================================
   TESTING PAGE — CTA BANNER SECTION
   ========================================================= */

.testing-cta-section {
    background: #d42b40;
    min-height: 160px;
    display: flex;
    width: 100%;
}

.testing-cta-col--single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 3.5rem;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
}

.testing-cta-desc {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.testing-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.testing-cta-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #d42b40;
    font-size: 14px;
    font-weight: 500;
    padding: 0.55rem 1.8rem;
    border-radius: 50px;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: center;
    text-decoration: none;
    width: auto;
}

.testing-cta-btn:hover {
    background-color: #9a0020;
    color: #ffffff;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .testing-cta-col--single {
        padding: 2rem 1.5rem;
    }

    .testing-cta-btn {
        width: 100%;
    }
}

/* =========================================================
   TESTING PAGE — PARTNER LOGOS SECTION
   ========================================================= */

.testing-logos-section {
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 2rem;
}

.testing-logos-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ---- Row ---- */
.testing-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    padding: 1.5rem 0;
}


/* ---- Vertical divider ---- */
.testing-logos-divider {
    width: 1px;
    height: 60px;
    background: #cccccc;
    flex-shrink: 0;
    margin: 0 2rem;
}

/* ---- Logo item ---- */
.testing-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-decoration: none;
    padding: 0.5rem;
    transition: opacity 0.2s ease;
}

a.testing-logo-item:hover {
    opacity: 0.75;
}

.testing-logo-item img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .testing-logos-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .testing-logos-row--single {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .testing-logos-divider {
        display: none;
    }

    .testing-logo-item {
        flex: unset;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .testing-logo-item {
        flex: unset;
        width: 100%;
    }
}

/* =========================================================
   NON-VOCATIONAL PROGRAMS PAGE — HERO SECTION
   ========================================================= */
/* =========================================================
   INSTITUTIONAL POLICIES — POLICIES SECTION
   ========================================================= */

.ip-pol-section {
    position: relative;
    padding: 4rem 2rem;
    background: #fff;
}

.ip-pol-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.ip-pol-left {
    flex: 0 0 44%;
    max-width: 44%;
}



.ip-pol-img {
    width: 100%;
    max-width: 620px;
    height: auto;
    aspect-ratio: 620 / 422;
    display: block;
    object-fit: cover;
    border-radius: 8px 8px 8px 0px;
}

.ip-pol-caption {
    position: absolute;
    bottom: 16rem;
    left: 0;
    width: 377px;
    background: #084FA7;
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 1rem 1.25rem;
    border-radius: 0px 8px 8px 0px;
}

.ip-pol-right {
    flex: 1;
}

.ip-pol-intro {
    font-size: 0.9rem;
    color: #000;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.ip-pol-intro strong {
    font-weight: 500;
}

.ip-pol-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ip-pol-badge {
    display: inline-block;
    border: 1.5px solid #e8003d;
    color: #000;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0.45rem 1.25rem;
    border-radius: 4px;
    border-bottom-left-radius: 0px;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 370px;
}

.ip-pol-item-desc {
    font-size: 0.875rem;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   INSTITUTIONAL POLICIES — COMMUNITY SERVICES SECTION
   ========================================================= */

.ip-svc-section {
    position: relative;
    background-color: #b01a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3.5rem 2rem;
    overflow-x: hidden;
}

.ip-svc-overlay {
    display: none;
}

.ip-svc-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.ip-svc-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.ip-svc-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.02em;
}

.ip-svc-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.ip-svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.ip-svc-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.ip-svc-item {
    padding: 0 2.5rem;
    min-width: 0;
    box-sizing: border-box;
}

.ip-svc-item-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.6rem;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.ip-svc-item-row strong {
    font-weight: 500;
    color: #ffffff;
}

.ip-svc-item-row {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    line-height: 1.55;
    margin: 0 0 0.25rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.ip-svc-label {
    font-weight: 500;
    color: #fff;
}

@media (max-width: 900px) {
    .ip-svc-section {
        padding: 2.5rem 1.25rem;
    }

    .ip-svc-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.4rem;
    }

    .ip-svc-title {
        font-size: 1.1rem;
    }

    .ip-svc-subtitle {
        white-space: normal;
        text-align: center;
    }

    .ip-svc-grid {
        grid-template-columns: 1fr;
    }

    .ip-svc-grid::before {
        display: none;
    }

    .ip-svc-item {
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    .ip-svc-section {
        padding: 2rem 1rem;
    }

    .ip-svc-title {
        font-size: 1rem;
    }

    .ip-svc-item {
        padding: 0 0.25rem;
    }

    .ip-svc-item-title {
        font-size: 0.95rem;
    }

    .ip-svc-item-row {
        font-size: 0.78rem;
    }
}

/* =========================================================
   INSTITUTIONAL POLICIES — POLICY REVIEW SECTION
   ========================================================= */

.ip-review-section {
    background: #D9D9D9;
    padding: 3rem 2rem;
    text-align: center;
}

.ip-review-inner {
    max-width: 800px;
    margin: 0 auto;
}

.ip-review-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    margin: 0 0 1rem;
}

.ip-review-text {
    font-size: 0.875rem;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   APPLY NOW — APPLICATION STEPS SECTION
   ========================================================= */

.an-steps-section {
    position: relative;
    background: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    overflow: hidden;
}

.an-steps-inner {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
}

.an-steps-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.05em;
    margin: 0 0 3rem;
}

/* Decorative arc circles */
.an-steps-deco {
    display: none;
}

/* Step items */
.an-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 350px;
    margin: 0 auto;
}

.an-steps-item {
    margin-bottom: 0.75rem;
}

.an-step-row {
    position: relative;
    padding-top: 16px;
    padding-left: 16px;
}

.an-steps-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e8003d;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.an-steps-card {
    flex: 1;
    border: 1.5px solid #EE253A;
    border-radius: 10px;
    border-bottom-left-radius: 0px;
    padding: 0.65rem 1rem;
    min-height: 46px;
    display: flex;
    align-items: center;
}

.an-steps-card-link,
.an-steps-card-inner {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.an-steps-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.an-steps-card-title {
    font-size: 0.92rem;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
}

.an-steps-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.an-steps-arrow svg {
    display: block;
}

.an-steps-card-icon,
.an-steps-card-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: 0.5rem;
    color: #000;
}

.an-steps-card-icon-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}



.an-steps-link {
    font-size: 0.82rem;
    color: #000;
    text-decoration: underline;
}

.an-steps-desc {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.6;
    margin: 0.35rem 0 0 2.75rem;
}

.an-steps-email {
    text-transform: lowercase;
}

/* =========================================================
   APPLY NOW — WHY CHOOSE & FAQ SECTION
   ========================================================= */

.an-wf-section {
    position: relative;
    background: #b01a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
}

.an-wf-overlay {
    display: none;
}

.an-wf-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.an-wf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

/* Left column */
.an-wf-why-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.an-wf-why-intro {
    color: #fff;
    font-size: 0.9rem;
    margin: 0 0 1rem;
    line-height: 1.6;
}

.an-wf-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.an-wf-why-list li {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 1.4rem;
    position: relative;
    margin-bottom: 0.55rem;
}

.an-wf-why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
}

/* Right column */
.an-wf-faq-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.an-wf-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.7rem 0;
}

.an-wf-faq-q {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    cursor: pointer;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
}

.an-wf-faq-num {
    flex-shrink: 0;
    font-weight: 500;
}

.an-wf-faq-text {
    flex: 1;
}

.an-wf-faq-arrow {
    flex-shrink: 0;
    font-size: 0.7rem;
    margin-top: 3px;
}

.an-wf-faq-a {
    display: none;
    color: #fff;
    font-size: 0.87rem;
    line-height: 1.6;
    padding: 0.5rem 0 0 1.1rem;
}

.an-wf-faq-item.open .an-wf-faq-a {
    display: block;
}

/* CTA Button */
.an-wf-btn-wrap {
    text-align: center;
}

.an-wf-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 0.65rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

/* =========================================================
   STUDENT COMPLAINT PAGE
   ========================================================= */

.sc-page-wrap {
    background-color: #e8e8e8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 1rem;
}

.sc-title-wrap {
    padding: 2.5rem 2rem 2rem;
}

.sc-page-title {
    max-width: 1100px;
    margin: 50px auto 0;
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
}

.sc-content-section {
    padding: 3rem 2rem;
}

.sc-content-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* Left: Policy sections */
.sc-left {
    flex: 1;
    min-width: 0;
}

.sc-policy-section {
    margin-bottom: 1.5rem;
}

.sc-policy-section:first-child {
    margin-top: 0;
}

.sc-policy-heading {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 0 0.4rem;
    line-height: 1.4;
}

.sc-policy-content {
    font-size: 0.82rem;
    color: #ffffff;
    line-height: 1.6;
}

.sc-policy-content p,
.sc-policy-content li,
.sc-policy-content strong,
.sc-policy-content em,
.sc-policy-content a,
.sc-policy-content ol,
.sc-policy-content ul {
    color: #ffffff;
}

.sc-policy-content p {
    margin: 0 0 0.4rem;
}

.sc-policy-content ul,
.sc-policy-content ol {
    padding-left: 1.25rem;
    margin: 0.25rem 0 0;
}

.sc-policy-content li {
    margin-bottom: 0.3rem;
}

/* Right: Resource items */
.sc-right {
    flex: 0 0 42%;
    max-width: 42%;
}

.sc-res-item {
    margin-bottom: 1.75rem;
}

.sc-res-item:last-child {
    margin-bottom: 0;
}

.sc-res-title {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.45rem;
    line-height: 1.4;
}

.sc-res-row {
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.55;
    margin: 0 0 0.2rem;
}

.sc-res-label {
    font-weight: 500;
    color: #fff;
}

/* Phone numbers bold — all sc-* pages */
.sc-res-row strong,
.sc-policy-content strong {
    font-weight: 800;
    color: #ffffff;
}

/* Force all text white on all devices — iOS, Android, desktop */
.sc-page-wrap * {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
.sc-page-wrap a,
.sc-page-wrap a:visited,
.sc-page-wrap a:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* =========================================================
   STUDENT LIFE — CTA SECTION
   ========================================================= */

.sl-cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff !important;
    padding-bottom: 20px;
    margin-top: -11px;
}

.sl-cta-btn {
    display: inline-block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.7rem 2.5rem;
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    text-decoration: none;
    cursor: pointer;
}

/* =========================================================
   STUDENT LIFE — RESOURCES & SUPPORT SECTION
   ========================================================= */

.sl-res-section {
    padding: 4rem 2rem;
    background: #fff;
}

.sl-res-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sl-res-heading {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    margin: 0 0 2.5rem;
}

.sl-res-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 2rem;
}

.sl-res-item {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    box-sizing: border-box;
}

.sl-res-badge {
    display: inline-block;
    background: #084FA7;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.55rem 1.75rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
    width: 100%;
    max-width: 262px;
    border-bottom-left-radius: 0px;
}

.sl-res-desc {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   STUDENT LIFE — CLUBS & WELLNESS SECTION
   ========================================================= */

.sl-clubs-section {
    display: flex;
    width: 100%;
}

.sl-clubs-col {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4rem 3rem;
}

.sl-clubs-overlay {
    display: none;
}

.sl-clubs-content {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.sl-clubs-title {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.sl-clubs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sl-clubs-list li {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0.4rem 0 0.4rem 1.4rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.sl-clubs-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #fff;
}

.sl-clubs-list li strong {
    font-weight: 500;
}

/* =========================================================
   STUDENT LIFE — CAMPUS FACILITIES SECTION
   ========================================================= */

.sl-fac-section {
    padding: 4rem 2rem;
    background: #fff;
}

.sl-fac-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sl-fac-heading {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 500;
    color: #111;
    margin: 0 0 2.5rem;
    text-transform: uppercase;
}

.sl-fac-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.sl-fac-card {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-sizing: border-box;
}

.sl-fac-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
}

.sl-fac-card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.sl-fac-card-body {
    flex: 1;
}

.sl-fac-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.sl-fac-card-desc {
    font-size: 0.875rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   CAREER SERVICES — SERVICES OFFERED SECTION
   ========================================================= */

.career-offered-section {
    padding: 4rem 2rem;
    background: #fff;
}

.career-offered-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.career-offered-heading {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 500;
    color: #111;
    margin: 0 0 2.5rem;
    text-transform: uppercase;
}

.career-offered-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.career-offered-card {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    background: #F5F5F5;
    padding: 2rem 1.5rem;
    text-align: center;
    box-sizing: border-box;
}

.career-offered-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.25rem;
}

.career-offered-card-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.career-offered-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.career-offered-card-desc {
    font-size: 0.875rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   CAREER SERVICES — CAREER DEVELOPMENT APPROACH SECTION
   ========================================================= */
.career-dev-section {
    padding: 5rem 2rem;
    background: #ffffff;
}
.career-dev-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}
.career-dev-left {
    flex: 0 0 45%;
    max-width: 45%;
}
.career-dev-left-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}
.career-dev-right {
    flex: 1;
    min-width: 0;
}
.career-dev-right--full {
    flex: 0 0 100%;
    max-width: 100%;
}
.career-dev-title {
    font-size: 1.9rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}
.career-dev-title strong {
    font-weight: 500;
}
.career-dev-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #555555;
    margin-bottom: 0.6rem;
}
.career-dev-intro,
.career-dev-pillars-intro {
    font-size: 0.95rem;
    font-weight: 400;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.career-dev-pillars {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.career-dev-pillar {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.career-dev-pillar-badge {
    flex-shrink: 0;
    width: 67px;
    height: 71px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.career-dev-pillar-badge img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0 !important;
}
.career-dev-pillar-num {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
}
.career-dev-pillar-body {
    flex: 1;
    min-width: 0;
}
.career-dev-pillar-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #111111;
    margin-bottom: 0.4rem;
}
.career-dev-pillar-desc {
    font-size: 0.9rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 900px) {
    .career-dev-inner {
        flex-direction: column;
        gap: 2.5rem;
    }
    .career-dev-left {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* =========================================================
   CAREER SERVICES — HOW CAREER SERVICES SUPPORT STUDENTS SECTION
   ========================================================= */
.career-si-wrap {
    background-color: transparent;
}
.career-sup-section {
    padding: 5rem 2rem;
    background: transparent;
}
.career-sup-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.career-sup-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #EE253A;
    margin-bottom: 0.75rem;
}
.career-sup-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}
.career-sup-intro {
    font-size: 1rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.career-sup-list-intro {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.career-sup-closing {
    font-size: 0.95rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.8;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}
.career-sup-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.career-sup-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: #f7f9fcc7;
    border-left: 3px solid #084FA7;
    padding: 1rem 1.25rem;
}
.career-sup-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #084FA7;
    color: #ffffff;
    border-radius: 50%;
}
.career-sup-item-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    padding-top: 0.2rem;
}
@media (max-width: 768px) {
    .career-sup-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =========================================================
   CAREER SERVICES — INDUSTRY CONNECTIONS SECTION
   ========================================================= */
.career-ind-section {
    padding: 5rem 2rem;
    background: transparent;
}
.career-ind-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.career-ind-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #EE253A;
    margin-bottom: 0.75rem;
}
.career-ind-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}
.career-ind-intro {
    font-size: 1rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.career-ind-list-intro {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.career-ind-closing {
    font-size: 0.95rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.8;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}
.career-ind-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.career-ind-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: #ffffff8f;
    border-left: 3px solid #EE253A;
    padding: 1rem 1.25rem;
}
.career-ind-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #EE253A;
    color: #ffffff;
    border-radius: 50%;
}
.career-ind-item-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    padding-top: 0.2rem;
}
@media (max-width: 768px) {
    .career-ind-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .career-ind-right {
        order: -1;
    }
}

/* =========================================================
   CAREER SERVICES — STUDENT SUCCESS MINDSET SECTION
   ========================================================= */
.career-mc-outer {
    background: #EE253A;
}
.career-mc-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "mind  mind  image"
        "cta   cta   image";
    align-items: stretch;
    padding: 0 2rem;
    box-sizing: border-box;
}
.career-mind-section {
    grid-area: mind;
}
.career-mc-image {
    grid-area: image;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.career-mc-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: bottom right;
}
.career-mind-section {
    grid-area: mind;
    padding: 5rem 2rem 2rem;
    background: transparent;
}
.career-mind-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}
.career-mind-title {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}
.career-mind-divider {
    width: 50px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}
.career-mind-para {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.85;
    margin-bottom: 0.75rem;
}
.career-mind-para:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .career-mc-wrap {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "mind  mind"
            "text  text"
            "btns  image";
        align-items: end;
        padding: 0;
    }
    .career-mind-section {
        grid-area: mind;
        padding: 2.5rem 1.5rem 1rem;
    }
    /* flatten section so children become direct grid items */
    .career-cta-section {
        display: contents;
    }
    .career-cta-text {
        grid-area: text;
        padding: 0.5rem 1.5rem 1rem;
    }
    .career-cta-buttons {
        grid-area: btns;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 0.75rem 2rem 1.25rem;
        align-items: stretch;
    }
    .career-cta-btn {
        width: 100%;
        text-align: center;
    }
    .career-mc-image {
        grid-area: image;
        height: 220px;
        align-items: flex-end;
        justify-content: flex-end;
        overflow: hidden;
    }
    .career-mc-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: bottom right;
    }
}

/* =========================================================
   CAREER SERVICES — FINAL CTA SECTION
   ========================================================= */
.career-cta-section {
    grid-area: cta;
    padding: 0 2rem 5rem;
    background: transparent;
}
.career-cta-title {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}
.career-cta-para {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.career-cta-para:last-of-type {
    margin-bottom: 0;
}
.career-cta-btn-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    margin: 1.75rem 0 1rem;
}
.career-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.career-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 30px 30px 30px 0;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.career-cta-btn--outline {
    background: #ffffff;
    color: #EE253A;
    border: 2px solid #ffffff;
}
.career-cta-btn--outline:hover {
    background: transparent;
    color: #ffffff;
    text-decoration: none;
}
.career-cta-btn--primary {
    background: #084FA7;
    color: #ffffff;
    border: 2px solid #084FA7;
}
.career-cta-btn--primary:hover {
    background: #063d82;
    border-color: #063d82;
    color: #ffffff;
    text-decoration: none;
}
@media (max-width: 768px) {
    .career-cta-buttons {
        flex-direction: column;
    }
    .career-cta-btn {
        text-align: center;
    }
}

/* =========================================================
   NON-VOCATIONAL PROGRAMS PAGE — HERO SECTION
   ========================================================= */

.nvp-hero-section {
    position: relative;
    background-color: #1565C0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 5.5rem 2rem 5rem;
    min-height: 520px;
}

.nvp-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 479px;
    gap: 3rem;
    align-items: center;
}

/* ---- Left Content ---- */
.nvp-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nvp-hero-title {
    font-size: 2.2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 1rem;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.nvp-hero-subtitle {
    font-size: 14px;
    color: #000000;
    line-height: 1.75;
    margin: 0 0 1.75rem;
}

/* ---- Icon + Box ---- */
.nvp-hero-box-wrap {
    position: relative;
    padding-top: 28px;
}

.nvp-hero-box-icon {
    position: absolute;
    top: 0;
    left: -4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    z-index: 2;
}

.nvp-hero-box-icon svg,
.nvp-hero-box-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.nvp-hero-box {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 2.25rem 1.5rem 1.5rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.nvp-hero-box-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* ---- Right: Circular Image ---- */
.nvp-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nvp-hero-img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .nvp-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .nvp-hero-image {
        display: none;
    }

    .nvp-hero-title {
        font-size: 1.7rem;
    }
}

/* =========================================================
   ACCA TESTING PAGE — ABOUT / EXAMS SECTION
   ========================================================= */

.acca-about-section {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    overflow: hidden;
}

/* Left image column */
.acca-about-left {
    flex: 0 0 36%;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.acca-about-left img {
    width: 100%;
    display: block;
    object-fit: contain;
    object-position: bottom center;
}

/* Right content column */
.acca-about-right {
    flex: 1;
    padding: 3rem 2rem 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}


.acca-about-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    margin: 0 0 1.2rem;
}

.acca-about-para {
    font-size: 14px;
    color: #333333;
    line-height: 1.7;
    margin: 0 0 0.9rem;
    max-width: 100%;
}

.acca-about-exams-heading {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111111;
    margin: 1.5rem 0 1.2rem;
}

/* Cards grid */
.acca-about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6.8rem;
}

.cael-about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.acca-about-card {
    position: relative;
    margin-top: 22px;
}

/* Bordered box — title only */
.acca-about-card-head {
    position: relative;
    border: 1.5px solid #f0a0a8;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    padding: 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 5rem;
}

/* Icon at top-left corner of title box */
.acca-about-card-dot {
    position: absolute;
    top: -22px;
    left: -22px;
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.acca-about-card-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #111111;
    margin: 0;
    line-height: 1.35;
}

/* Exam list */
.acca-about-card-list {
    list-style: none;
    padding: 0;
    margin: 0.9rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.acca-about-card-list li {
    font-size: 13px;
    color: #222222;
    line-height: 1.5;
    position: relative;
    padding-left: 16px;
}

.acca-about-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000000;
}

.acca-about-item-code,
.acca-about-item-sep,
.acca-about-item-desc {
    display: inline;
}

.acca-about-item-code {
    font-weight: 700;
    color: #084FA7;
}

/* Card description — inside the bordered box, below the title */
.accup-card-desc {
    font-size: 13px;
    color: #444444;
    line-height: 1.6;
    margin: 0.6rem 0 0;
}

/* ACCUPLACER cards — 2-col grid to handle up to 6 */
.accup-cards {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 6.8rem;
}

.acca-about-item-sep {
    color: #555555;
}

.acca-about-item-desc {
    color: #333333;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .acca-about-left {
        flex: 0 0 260px;
    }

    .acca-about-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .acca-about-section {
        flex-direction: column;
    }

    .acca-about-left {
        display: none;
    }

    .acca-about-right {
        padding: 2rem 1.5rem;
    }

    .acca-about-title {
        font-size: 1.3rem;
    }
}

/* =========================================================
   ACCA TESTING PAGE — WHY CHOOSE & HOW TO BOOK SECTION
   ========================================================= */

.acca-wc-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.acca-wc-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto 5rem;
}

.acca-wc-block:last-child {
    margin-bottom: 0;
}

/* Block 2: reverse the order so content is left, image is right */
.acca-wc-block--2 {
    flex-direction: row;
}

/* Image column */
.acca-wc-img-col {
    flex: 0 0 46%;
}

.acca-wc-img-col img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Content column */
.acca-wc-content-col {
    flex: 1;
}

.acca-wc-title {
    font-size: 1.9rem;
    font-weight: 500;
    color: #111111;
    line-height: 1.2;
    margin: 0 0 1.5rem;
}

/* List */
.acca-wc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.acca-wc-list li {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    position: relative;
    padding-left: 18px;
}

.acca-wc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000000;
}

.acca-wc-item-label {
    font-weight: 700;
    color: #084FA7;
}

.acca-wc-item-sep,
.acca-wc-item-desc {
    display: inline;
}

.acca-wc-title-para,
.acca-wc-para {
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.6;
    margin: 0.6rem 0 0;
}

.acca-prep-title-para,
.acca-prep-list-para {
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.6;
    margin: 0.6rem 0 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {

    .acca-wc-block,
    .acca-wc-block--2 {
        flex-direction: column;
        gap: 2rem;
    }

    .acca-wc-img-col {
        flex: none;
        width: 100%;
    }

    .acca-wc-block--2 .acca-wc-img-col {
        order: -1;
    }

    .acca-wc-title {
        font-size: 1.4rem;
    }
}

/* =========================================================
   ACCA TESTING PAGE — PREPARE FOR YOUR EXAM SECTION
   ========================================================= */

.acca-prep-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem 5rem;
    background: #ffffff;
}

.acca-prep-img-col {
    flex: 0 0 46%;
}

.acca-prep-img-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.acca-prep-content-col {
    flex: 1;
}

.acca-prep-title {
    font-size: 2rem;
    font-weight: 500;
    color: #111111;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}

.acca-prep-subtitle {
    font-size: 0.95rem;
    color: #444444;
    margin: 0 0 1.25rem;
}

.acca-prep-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.acca-prep-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: #222222;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.acca-prep-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000000;
}

.acca-prep-btn {
    display: inline-block;
    background: #e8003d;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border-bottom-left-radius: 0;
    text-decoration: none;
    transition: background 0.2s;
}

.acca-prep-btn:hover {
    background: #c0002e;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .acca-prep-section {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .acca-prep-img-col {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .acca-prep-title {
        font-size: 1.5rem;
    }
}

/* =========================================================
   ACCA TESTING PAGE — DECORATIVE IMAGES
   ========================================================= */

.acca-page-wrap {
    position: relative;
    overflow: hidden;
}

.acca-deco {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.acca-deco img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Before image — top 25% from the top */
.acca-deco--before {
    bottom: 15%;
    left: 0;
}

/* After image — top 25% from the top */
.acca-deco--after {
    top: 25%;
    right: 0;
}

@media (max-width: 768px) {
    .acca-deco {
        display: none;
    }
}

/* =========================================================
   ETS — TWO COLUMN BACKGROUND IMAGE SECTION
   ========================================================= */

.ets-twocol-section {
    display: flex;
    width: 100%;
    background: #0b3973;
}

.ets-twocol-col {
    flex: 1;
    background-size: cover;
    background-position: center;
    padding: 4rem 3rem;
}

.ets-twocol-content {
    max-width: 520px;
}

.ets-twocol-title {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.ets-twocol-para {
    font-size: 0.95rem;
    color: #fff;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.ets-twocol-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.ets-twocol-list li {
    color: #fff;
    font-size: 0.95rem;
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
    line-height: 1.4;
}

.ets-twocol-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #fff;
}

.ets-twocol-col { transition: box-shadow 0.3s ease; }
.ets-twocol-col:hover { box-shadow: inset 0 0 0 3px rgba(232,0,61,0.35); }

/* =========================================================
   ETS PAGE — WHAT TO BRING ON TEST DAY SECTION
   Desktop: image left | text right
   Mobile:  image top  | text bottom
   ========================================================= */

.ets-bring-section {
    display: flex;
    align-items: stretch;
    background: #fff;
    overflow: hidden;
}

.ets-bring-image {
    flex: 0 0 42%;
    overflow: hidden;
}

.ets-bring-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.ets-bring-content {
    flex: 1;
    padding: 3.5rem 3rem 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ets-bring-title {
    font-size: 1.9rem;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.ets-bring-para {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

.ets-bring-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ets-bring-list li {
    font-size: 0.95rem;
    color: #333;
    padding: 0.4rem 0 0.4rem 1.6rem;
    position: relative;
    line-height: 1.5;
}

.ets-bring-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #e8003d;
}

/* =========================================================
   ACCA TESTING PAGE — CTA BANNER SECTION
   ========================================================= */

.acca-cta-section {
    display: flex;
    width: 100%;
}

.acca-cta-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 2.5rem 2rem;
    min-height: 190px;
    text-align: center;
}

.acca-cta-panel--title {
    flex: 0 0 28%;
    justify-content: flex-start;
    padding-left: 3rem;
    text-align: left;
}

.acca-cta-title {
    font-size: 1.9rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
}

.acca-cta-desc {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    max-width: 340px;
}

.acca-cta-panel--btn {
    flex: 0 0 26%;
    text-decoration: none;
    cursor: pointer;
}

.acca-cta-btn {
    display: inline-block;
    background: #EE253A;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border-bottom-left-radius: 0;
    text-decoration: none;
    transition: background 0.2s;
}

.acca-cta-panel--btn:hover .acca-cta-btn {
    background: #c0002e;
}

@media (max-width: 768px) {
    .acca-cta-section {
        flex-direction: column;
    }

    .acca-cta-panel--title {
        flex: none;
        width: 100%;
        padding: 2rem 1.5rem;
        justify-content: center;
        text-align: center;
    }

    .acca-cta-title {
        font-size: 1.4rem;
    }
}

/* =========================================================
   ACCA TESTING PAGE — HERO SECTION
   ========================================================= */

.acca-hero-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    background-color: #1a3a5c;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.acca-hero-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.acca-hero-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Title row: title text + circular badge */
.acca-hero-title-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.acca-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin: 0;
    flex: 1;
}

.acca-hero-badge {
    flex-shrink: 0;
}

.acca-hero-badge img {
    width: 170px;
    height: 147px;
    object-fit: contain;
    border-radius: 0;
}

/* Icon + description box */
.acca-hero-box-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.acca-hero-box-icon {
    flex-shrink: 0;
    color: #ffffff;
    opacity: 0.85;
    margin-top: 2px;
}

.acca-hero-box-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.acca-hero-box {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 2.25rem 1.5rem 1.5rem;
    background: transparent;
    width: 535px;
}

.acca-hero-box-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.65;
    margin: 0 0 0.6rem;
}

.acca-hero-box-text:last-child {
    margin-bottom: 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .acca-hero-section {
        min-height: 320px;
    }

    .acca-hero-badge img {
        width: 136px;
        height: 156px;
    }

    .acca-hero-title-row {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .acca-hero-section .acca-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        text-align: center;
    }
}

/* =========================================================
   COURSE STORE PAGE — HERO SECTION
   ========================================================= */

.cs-hero-section {
    position: relative;
    background-color: #1a3a6b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    z-index: 1;
}

.cs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.cs-hero-icon {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-hero-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.cs-hero-title {
    font-size: 2.6rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 1.1rem;
    line-height: 1.15;
    letter-spacing: 1px;
}

.cs-hero-subtitle {
    font-size: 15px;
    color: #111111;
    line-height: 1.75;
    margin: 0;
    max-width: 640px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .cs-hero-section {
        min-height: 260px;
    }

    .cs-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 7rem 2rem;
        max-width: 800px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .cs-hero-title {
        font-size: 1.85rem;
    }

    .cs-hero-subtitle {
        font-size: 14px;
    }
}

/* =========================================================
   COURSE STORE PAGE — ACCOUNT BANNER SECTION
   ========================================================= */

.cs-acc-section {
    background: #d42b40;
    min-height: 160px;
}

.cs-acc-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 3.5rem;
    gap: 1.5rem;
    text-align: center;
}

.cs-acc-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.cs-acc-btn {
    display: inline-block;
    background-color: #EE253A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    border-bottom-left-radius: 0;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.2s ease;
    white-space: nowrap;
    text-align: center;
}

a.cs-acc-btn:hover {
    background-color: #a01226;
    color: #ffffff;
}

@media (max-width: 640px) {
    .cs-acc-single {
        padding: 2rem 1.5rem;
    }

    .cs-acc-btn {
        width: 100%;
    }
}

/* =========================================================
   COURSE STORE PAGE — COURSES GRID SECTION
   ========================================================= */

.cs-courses-section {
    position: relative;
    background-color: #ffffff00;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0rem 2rem 4rem 5rem;
    overflow: hidden;
    margin-top: -8%;
}

.cs-courses-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* ---- Grid ---- */
.cs-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ---- Card ---- */
.cs-course-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

a.cs-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
}

.cs-course-card-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.cs-course-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px 14px 0 0;
}

.cs-course-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: #e8edf3;
}

.cs-course-card-label {
    padding: 0.9rem 1rem;
    background: #f5f6f8;
    text-align: center;
}

.cs-course-card-label span {
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    line-height: 1.4;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .cs-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 560px) {
    .cs-courses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cs-courses-section {
        position: relative;
        background-color: #ffffff00;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 0rem 2rem 3rem 2rem;
        overflow: hidden;
        margin-top: -8%;
    }
}

/* =========================================================
   COURSE STORE PAGE — ECWID STORE SECTION
   ========================================================= */
.cs-store-section {
    background: #fff;
    padding: 3rem 2rem 5rem;
}

.cs-store-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================================
   NON-VOCATIONAL PROGRAMS PAGE — OUR PROGRAMS SECTION
   ========================================================= */
.nvp-prog-section {
    background: #ffffff;
    padding: 4rem 2rem 5rem;
}

.nvp-prog-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.nvp-prog-section-title {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    color: #0d1b2a;
    text-transform: uppercase;
    margin: 0 0 3.5rem;
}

/* ---- Each Program Row ---- */
.nvp-prog-item {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.nvp-prog-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Reversed row: image on right */
.nvp-prog-item--reverse {
    grid-template-columns: 1fr 460px;
}

.nvp-prog-item--reverse .nvp-prog-left {
    order: 2;
}

.nvp-prog-item--reverse .nvp-prog-right {
    order: 1;
}

/* ---- Left: Image + Caption ---- */
.nvp-prog-left {
    position: relative;
}

.nvp-prog-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
}

.nvp-prog-caption--red {
    background: #EE253A !important;
}

.nvp-prog-caption-left {
    background: #1565C0;
    padding: 0.9rem 1.25rem;
    border-radius: 8px 8px 8px 0;
    width: 80%;
    margin-left: 24%;
    margin-top: -11%;
    z-index: 9;
    position: relative;
}

.nvp-prog-caption-left span {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    display: block;
}

.nvp-prog-caption-right {
    background: #1565C0;
    padding: 0.9rem 1.25rem;
    border-radius: 8px 8px 0px 8px;
    width: 80%;
    margin-left: -19px;
    margin-top: -10%;
    z-index: 9;
    position: relative;
}

.nvp-prog-caption-right span {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    display: block;
}

/* ---- Right: Content ---- */
.nvp-prog-right {
    padding-top: 0.25rem;
}

.nvp-prog-desc {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    line-height: 1.75;
    margin: 0 0 1rem;
}

.nvp-prog-desc:last-child {
    margin-bottom: 0;
}

/* ---- List Items ---- */
.nvp-prog-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.nvp-prog-list li {
    padding-left: 1.4rem;
    position: relative;
    margin-bottom: 1rem;
}

.nvp-prog-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000000;
}

.nvp-prog-item-name {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #084FA7;
    margin-bottom: 0.25rem;
}

.nvp-prog-item-desc {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {

    .nvp-prog-item,
    .nvp-prog-item--reverse {
        grid-template-columns: 1fr;
    }

    .nvp-prog-item--reverse .nvp-prog-left,
    .nvp-prog-item--reverse .nvp-prog-right {
        order: unset;
    }

    .nvp-prog-img {
        height: 260px;
    }
}

/* =========================================================
   ACCA PAGE — HERO SECTION
   ========================================================= */
.acca-hero-section {
    position: relative;
    background-color: #1565C0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 5.5rem 2rem 5rem;
    min-height: 520px;
}

.acca-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

/* ---- Left Content ---- */
.acca-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.acca-hero-title {
    font-size: 2.2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 1rem;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.acca-hero-subtitle {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0 0 1.75rem;
}

/* ---- Icon + Box ---- */
.acca-hero-box-wrap {
    position: relative;
    padding-top: 28px;
}

.acca-hero-box-icon {
    position: absolute;
    top: 0;
    left: -4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    z-index: 2;
}

.acca-hero-box-icon svg,
.acca-hero-box-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.acca-hero-box {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 2.25rem 1.5rem 1.5rem;
    background: transparent;
}

.acca-hero-box-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* ---- Right: Logo Image ---- */
.acca-hero-logo-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.acca-hero-logo-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .acca-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .acca-hero-logo-col {
        justify-content: flex-start;
    }

    .acca-hero-section .acca-hero-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .acca-hero-section {
        padding: 3rem 1.25rem 2.5rem;
        min-height: unset;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .acca-hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgb(96 94 94 / 45%);
        z-index: 1;
    }

    .acca-hero-wrapper {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .acca-hero-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .acca-hero-section .acca-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .acca-hero-subtitle {
        font-size: 13px;
        margin-bottom: 1.25rem;
        word-break: break-word;
    }

    .acca-hero-box-wrap {
        padding-top: 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .acca-hero-box {
        padding: 1.75rem 1.25rem 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }

    .acca-hero-box-text {
        font-size: 12.5px;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .acca-hero-logo-col {
        justify-content: center;
        width: 100%;
    }

    .acca-hero-logo-img {
        max-width: 200px;
        width: 100%;
        height: auto;
    }
}

/* =========================================================
   ISC2 CERTIFICATION PAGE — HERO SECTION
   ========================================================= */

.isc2-hero-section {
    position: relative;
    background-color: #0d2241;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.isc2-hero-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 3.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

/* ---- Left Content ---- */
.isc2-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.isc2-hero-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.3;
    margin: 0 0 0.25rem;
}

.isc2-hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 1.6;
    margin: 0 0 0.5rem;
}

/* ---- Info Box ---- */
.isc2-hero-box-wrap {
    position: relative;
    padding-top: 28px;
}

.isc2-hero-box-icon {
    position: absolute;
    top: 0;
    left: -4px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.isc2-hero-box-icon svg,
.isc2-hero-box-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.isc2-hero-box {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 1.1rem 1.2rem 1rem 1.4rem;
    background: rgba(255, 255, 255, 0.06);
}

.isc2-hero-box-heading {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.isc2-hero-box-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin: 0;
}

/* ---- Right Column ---- */
.isc2-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    min-width: 260px;
}

.isc2-partner-badge img {
    width: 160px;
    height: auto;
    object-fit: contain;
    display: block;
}

.isc2-cert-strip img {
    max-width: 360px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .isc2-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .isc2-hero-right {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .isc2-hero-title {
        font-size: 1.7rem;
    }

    .isc2-cert-strip img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .isc2-hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgb(96 94 94 / 45%);
        z-index: 1;
    }

    .isc2-hero-wrapper {
        position: relative;
        z-index: 2;
    }

    .isc2-hero-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 50px;
    }
}

@media (max-width: 480px) {
    .isc2-hero-title {
        font-size: 1.4rem;
    }

    .isc2-hero-right {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .isc2-partner-badge,
    .isc2-cert-strip {
        display: flex;
        justify-content: center;
    }
}

/* =========================================================
   ISC2 CERTIFICATION PAGE — WHY CHOOSE & BENEFITS SECTION
   ========================================================= */

.isc2-why-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.isc2-why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* ---- Shared row layout ---- */
.isc2-why-row,
.isc2-benefits-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

/* ---- Images ---- */
.isc2-why-img img,
.isc2-benefits-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* ---- Why Choose: right column ---- */
.isc2-why-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0 0 1.5rem;
}

.isc2-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.isc2-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 13px;
    color: #444444;
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.isc2-why-list li::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.isc2-why-label {
    font-weight: 700;
    color: var(--color-primary);
}

/* ---- Benefits: left column ---- */
.isc2-benefits-left {
    position: relative;
}

.isc2-benefits-deco {
    display: none;
}

.isc2-benefits-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    line-height: 1.3;
    margin: 0 0 1.5rem;
}

.isc2-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.isc2-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 13px;
    color: #444444;
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.isc2-benefits-list li::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000000;
    flex-shrink: 0;
    margin-top: 4px;
}

.isc2-benefits-label {
    font-weight: 700;
    color: var(--color-primary);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {

    .isc2-why-row,
    .isc2-benefits-row {
        grid-template-columns: 1fr;
    }

    .isc2-benefits-row .isc2-benefits-img {
        order: -1;
    }

    .isc2-why-title,
    .isc2-benefits-title {
        font-size: 1.3rem;
    }

    .isc2-why-img img,
    .isc2-benefits-img img {
        height: 220px;
    }

    .isc2-benefits-left {
        padding-left: 0;
    }
}

/* =========================================================
   ISC2 CERTIFICATION PAGE — COURSE OFFERINGS SECTION
   ========================================================= */

.isc2-courses-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

@media (max-width: 480px) {
    .isc2-courses-section {
        margin-top: 2rem;
    }
}

.isc2-courses-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.isc2-courses-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 3rem;
}

.isc2-courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3.5rem;
}

/* ---- Course Card ---- */
.isc2-course-card {
    display: flex;
    flex-direction: column;
}

.isc2-course-badge-wrap {
    position: relative;
    padding-top: 24px;
    padding-left: 20px;
    margin-bottom: 1.1rem;
}

.isc2-course-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e53935;
    z-index: 2;
}

.isc2-course-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    object-fit: contain;
    z-index: 2;
    flex-shrink: 0;
}

.isc2-course-tag {
    display: block;
    background: #ffffff;
    border: 1.5px solid #e53935;
    border-radius: 12px;
    padding: 19px 14px 17px 14px;
    font-size: 13px;
    font-weight: 400;
    color: #333333;
    line-height: 1.45;
    width: 250px;
    border-bottom-left-radius: 0px;
}

.isc2-course-desc {
    font-size: 13px;
    color: #444444;
    line-height: 1.65;
    margin: 0 0 0.75rem;
}

.isc2-course-label {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 0.35rem;
}

.isc2-course-list {
    list-style: disc;
    padding-left: 1.3rem;
    margin: 0 0 0.75rem;
}

.isc2-course-list li {
    font-size: 13px;
    color: #444444;
    line-height: 1.65;
    margin-bottom: 0.2rem;
}

.isc2-course-ideal {
    font-size: 13px;
    color: #333333;
    line-height: 1.65;
    margin: 0;
}

/* ---- Features Panel ---- */
.isc2-features-card {
    display: flex;
    flex-direction: column;
}

.isc2-features-title {
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    margin: 0 0 1.1rem;
}

.isc2-features-row {
    font-size: 13px;
    color: #444444;
    line-height: 1.65;
    margin: 0 0 0.8rem;
}

.isc2-features-row strong {
    color: #111111;
    font-weight: 700;
}

.isc2-features-list {
    list-style: disc;
    padding-left: 1.3rem;
    margin: 0.3rem 0 0;
}

.isc2-features-list li {
    font-size: 13px;
    color: #444444;
    line-height: 1.65;
    margin-bottom: 0.2rem;
}

/* ---- CCSP centered bottom card ---- */
.isc2-courses-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.isc2-course-card-centered {
    max-width: 520px;
    width: 100%;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .isc2-courses-grid {
        grid-template-columns: 1fr;
    }

    .isc2-courses-bottom {
        grid-column: 1;
        justify-content: flex-start;
    }

    .isc2-course-card-centered {
        max-width: 100%;
    }

    .isc2-courses-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .isc2-courses-grid {
        grid-template-columns: 1fr;
        gap: 5.5rem;
    }
}

/* =========================================================
   ISC2 CERTIFICATION PAGE — ENROL & ENROLL SECTION
   ========================================================= */

/* ISC2 enroll section reuses comptia-out-* classes — no additional styles needed. */

/* =========================================================
   ISC2 CERTIFICATION PAGE — CTA BANNER SECTION
   ========================================================= */

.isc2-cta-section {
    background: #d42b40;
    min-height: 120px;
}

.isc2-cta-col--single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 3.5rem;
    gap: 1.5rem;
    text-align: center;
}

.isc2-cta-phone {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.isc2-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.isc2-cta-btn {
    display: inline-block;
    background-color: #e53935;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.65rem 1.8rem;
    border-radius: 25px;
    border-bottom-left-radius: 0;
    text-decoration: none;
    transition: background 0.2s ease;
    min-width: 160px;
    text-align: center;
}

.isc2-cta-btn:hover {
    background-color: #c62828;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 640px) {
    .isc2-cta-col--single {
        padding: 2rem 1.5rem;
    }

    .isc2-cta-btn {
        width: 100%;
    }

    .isc2-cta-heading {
        font-size: 1.2rem;
        text-align: center;
    }
}

/* =========================================================
   ISC2 CC PAGE — LEARN SECTION ROW 1 CONTENT
   ========================================================= */

.isc2cc-r1-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #084FA7;
    margin-bottom: 0.4rem;
}

.isc2cc-r1-heading {
    font-size: 16px;
    font-weight: 500;
    color: #0d1b2a;
    text-transform: uppercase;
    margin: 0 0 0.6rem;
    letter-spacing: 0.03em;
}

.isc2cc-r1-para {
    font-size: 14px;
    color: #333;
    line-height: 1.65;
    margin: 0 0 1.2rem;
}

.isc2cc-r1-sec {
    margin-bottom: 1.2rem;
}

.isc2cc-r1-sec-title {
    font-size: 15px;
    font-weight: 500;
    color: #084FA7;
    margin: 0 0 0.4rem;
}

.isc2cc-r1-sec-text {
    font-size: 14px;
    color: #333;
    line-height: 1.65;
    margin: 0 0 0.5rem;
}

.isc2cc-r1-sublist {
    list-style: disc;
    padding-left: 1.4rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.isc2cc-r1-sublist li {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* =========================================================
   ISC2 CC PAGE — ABOUT / TOPICS / EXAM SECTION
   ========================================================= */

.isc2cc-about-section {
    background-color: #0d1b3e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
}

.isc2cc-about-top {
    max-width: 860px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.isc2cc-about-title {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 1.2rem;
    line-height: 1.2;
}

.isc2cc-about-para {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
}

.isc2cc-about-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left: Topics */
.isc2cc-topics-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    line-height: 1.25;
}

.isc2cc-topics-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.isc2cc-topics-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

.isc2cc-topics-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #ffffff;
}

/* Right: Exam info */
.isc2cc-exam-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 1rem;
    line-height: 1.25;
}

.isc2cc-exam-notice {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.7;
    margin: 0 0 1.2rem;
}

.isc2cc-exam-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.isc2cc-exam-list li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

.isc2cc-exam-list li::before {
    content: '•';
    display: none;
}

.isc2cc-exam-label {
    font-size: 14px;
    color: #ffffff;
}

.isc2cc-exam-value {
    font-size: 14px;
    color: #ffffff;
}

@media (max-width: 900px) {
    .isc2cc-about-bottom {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .isc2cc-about-title {
        font-size: 1.5rem;
    }

    .isc2cc-topics-title,
    .isc2cc-exam-title {
        font-size: 1.2rem;
    }
}

/* =========================================================
   ISC2 CC PAGE — EXAMINATION WEIGHTS SECTION
   ========================================================= */

.isc2cc-weights-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.isc2cc-weights-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    color: #0d1b2a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 3rem;
}

.isc2cc-weights-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2.5rem;
    align-items: stretch;
}

.isc2cc-weight-card {
    position: relative;
    border: 2px solid #e0353a;
    border-radius: 12px 12px 12px 0px;
    padding: 1.4rem 1.2rem 1.2rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    height: 100%;
    box-sizing: border-box;
}

.isc2cc-weight-dot {
    position: absolute;
    top: -22px;
    left: -22px;
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.isc2cc-weight-label {
    font-size: 20px;
    font-weight: 500;
    color: #0d1b2a;
    line-height: 1.45;
}

.isc2cc-weight-pct {
    font-size: 20px;
    color: #333;
}

@media (max-width: 900px) {
    .isc2cc-weights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .isc2cc-weights-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ISC2 CC PAGE — APPLICATION PROCESS SECTION
   ========================================================= */

.isc2cc-apply-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.isc2cc-apply-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.isc2cc-apply-heading {
    font-size: 2rem;
    font-weight: 500;
    color: #0d1b2a;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 1.8rem;
}

.isc2cc-apply-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.isc2cc-apply-intro {
    font-size: 14px;
    color: #333;
    line-height: 1.75;
    margin: 0 0 1.4rem;
}

.isc2cc-apply-sub-title {
    font-size: 15px;
    font-weight: 500;
    color: #084FA7;
    margin: 0 0 0.6rem;
}

.isc2cc-apply-sub-text {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 0.8rem;
}

.isc2cc-apply-list {
    list-style: disc;
    padding-left: 1.4rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.isc2cc-apply-list li {
    font-size: 14px;
    color: #333;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .isc2cc-apply-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .isc2cc-apply-heading {
        font-size: 1.5rem;
    }
}

/* =========================================================
   ISC2 CC PAGE — WHAT TO EXPECT / HOW TO ENROLL SECTION
   ========================================================= */

/* Reuses comptia-out-* classes — no additional styles needed. */

/* =========================================================
   SSCP PAGE — LEARN SECTION
   ========================================================= */

.sscp-learn-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

@media (max-width: 480px) {
    .sscp-learn-section {
        margin-top: 2rem;
    }
}

.sscp-learn-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.sscp-learn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Row with img-right: swap column order */
.sscp-learn-row--img-right .sscp-learn-content-col {
    order: 1;
}

.sscp-learn-row--img-right .sscp-learn-img-col {
    order: 2;
}

.sscp-learn-img-col .sscp-learn-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.sscp-learn-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.sscp-learn-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #084FA7;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    padding: 0.7rem 1rem;
}
.cgrc-learn-section .sscp-learn-row--img-right .sscp-learn-img-label {
    background: #EE253A;
}

.sscp-learn-title {
    font-size: 15px;
    font-weight: 500;
    color: #0d1b2a;
    margin: 0 0 1.2rem;
    line-height: 1.4;
}

.sscp-learn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sscp-learn-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 14px;
    color: #084FA7;
    line-height: 1.6;
}

.sscp-learn-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #084FA7;
}

@media (max-width: 900px) {
    .sscp-learn-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sscp-learn-row--img-right .sscp-learn-content-col {
        order: 1;
    }

    .sscp-learn-row--img-right .sscp-learn-img-col {
        order: 2;
    }

    .cgrc-learn-section .sscp-learn-row--img-right .sscp-learn-img-col {
        order: 1;
    }

    .cgrc-learn-section .sscp-learn-row--img-right .sscp-learn-content-col {
        order: 2;
    }

    .sscp-learn-section .sscp-learn-row--img-right .sscp-learn-img-col {
        order: 1;
    }

    .sscp-learn-section .sscp-learn-row--img-right .sscp-learn-content-col {
        order: 2;
    }
}

/* =========================================================
   SSCP PAGE — ABOUT / TOPICS / EXAM SECTION
   ========================================================= */

.sscp-about-section {
    background-color: #0d1b3e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 2rem;
}

.sscp-about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.sscp-about-col-title {
    font-size: 2.4rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 0.8rem;
    line-height: 1.15;
}

.sscp-about-col-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1.2rem;
}

.sscp-about-col-para {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0;
}

.sscp-about-domain-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sscp-about-domain-list li {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .sscp-about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sscp-about-col-title {
        font-size: 1.7rem;
    }
}

/* =========================================================
   SSCP PAGE — EXAMINATION WEIGHTS SECTION
   ========================================================= */

.sscp-weights-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.sscp-weights-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    color: #0d1b2a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 1rem;
}

.sscp-weights-para {
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.75;
    max-width: 860px;
    margin: 0 auto 3rem;
}

.sscp-weights-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2.5rem;
    align-items: stretch;
}

.sscp-weight-card {
    position: relative;
    border: 2px solid #e0353a;
    border-radius: 12px 12px 12px 0px;
    padding: 1.4rem 1.2rem 1.2rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    height: 100%;
    box-sizing: border-box;
}

.sscp-weight-dot {
    position: absolute;
    top: -22px;
    left: -22px;
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.sscp-weight-label {
    font-size: 20px;
    font-weight: 500;
    color: #0d1b2a;
    line-height: 1.45;
}

.sscp-weight-pct {
    font-size: 14px;
    color: #333;
}

@media (max-width: 900px) {
    .sscp-weights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .sscp-weights-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SSCP PAGE — INFO SECTION (Experience / Exam Info / Weights)
   ========================================================= */

.sscp-info-section {
    background: #e0353a;
    padding: 5rem 2rem;
}

.sscp-info-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.sscp-info-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sscp-info-block-title {
    font-size: 1.9rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 0.8rem;
    line-height: 1.2;
}

.sscp-info-block-sub {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 0.5rem;
}

.sscp-info-block-para {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0 0 0.6rem;
}

.sscp-info-block-para:last-child {
    margin-bottom: 0;
}

/* Exam details list */
.sscp-info-exam-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sscp-info-exam-list li {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0.5rem;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.55;
}

.sscp-info-exam-label {
    font-weight: 500;
}

/* Weights list */
.sscp-info-wt-list {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sscp-info-wt-list li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.55;
}

.sscp-info-wt-label {
    font-weight: 500;
}

.sscp-info-wt-pct {
    font-weight: 500;
    flex-shrink: 0;
    margin-left: 1rem;
}

.sscp-info-wt-total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0.6rem 0 0;
    padding-left: 1.2rem;
}

.sscp-info-pol-sub {
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .sscp-info-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sscp-info-block-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sscp-info-block-para,
    .sscp-info-block-sub,
    .sscp-info-exam-label,
    .sscp-info-exam-value,
    .sscp-info-wt-label,
    .sscp-info-wt-pct {
        font-size: 15px;
    }
}

/* =========================================================
   SSCP PAGE — APPLICATION PROCESS SECTION
   ========================================================= */

.sscp-apply-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.sscp-apply-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.sscp-apply-heading {
    font-size: 2rem;
    font-weight: 500;
    color: #0d1b2a;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 1.8rem;
}

.sscp-apply-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.sscp-apply-intro {
    font-size: 14px;
    color: #333;
    line-height: 1.75;
    margin: 0 0 1.4rem;
}

.sscp-apply-sub-title {
    font-size: 15px;
    font-weight: 500;
    color: #084FA7;
    margin: 0 0 0.6rem;
}

.sscp-apply-sub-text {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 0.8rem;
}

.sscp-apply-list {
    list-style: disc;
    padding-left: 1.4rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sscp-apply-list li {
    font-size: 14px;
    color: #333;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .sscp-apply-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sscp-apply-heading {
        font-size: 1.5rem;
    }
}

/* =========================================================
   SSCP PAGE — WHAT TO EXPECT / HOW TO ENROLL SECTION
   ========================================================= */

.sscp-enroll-section {
    background: #F5F5F5;
    padding: 4rem 2rem;
}

.sscp-enroll-wrapper {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.sscp-enroll-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sscp-enroll-col-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: #084FA7;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    line-height: 1.25;
}

.sscp-enroll-list {
    list-style: none;
    padding-left: 1.4rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sscp-enroll-list li {
    font-size: 14px;
    color: #333;
    line-height: 1.65;
}

.sscp-enroll-para {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.sscp-enroll-para:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .sscp-enroll-wrapper {
        gap: 2rem;
    }
}

/* =========================================================
   CGRC PAGE — LEARN SECTION
   ========================================================= */

.cgrc-learn-eyebrow {
    font-size: 0.85rem;
    font-weight: 500;
    color: #084FA7;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 6px;
}

.cgrc-learn-subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    color: #084FA7;
    text-transform: uppercase;
    margin: 0 0 14px;
    line-height: 1.3;
}

.cgrc-learn-para {
    font-size: 0.93rem;
    color: #333;
    line-height: 1.7;
    margin: 0 0 16px;
}

.cgrc-learn-expect-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #084FA7;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 10px;
}

.cgrc-learn-domain-list {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cgrc-learn-domain-list li {
    font-size: 0.9rem;
    color: #222;
    line-height: 1.55;
}

/* =========================================================
   COMPTIA CERTIFICATION TRAINING PAGE — HERO SECTION
   ========================================================= */

.comptia-hero-section {
    position: relative;
    background-color: #0d1b3e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3.5rem 2rem;
    min-height: 520px;
}

.comptia-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: center;
}

/* ---- Left Content ---- */
.comptia-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 56px;
}

.comptia-hero-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #000000;
    text-transform: none;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.comptia-hero-subtitle {
    font-size: 20px;
    color: #111111;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    font-weight: 500;
}

/* ---- Icon + Box ---- */
.comptia-hero-box-wrap {
    position: relative;
    padding-top: 28px;
}

.comptia-hero-box-icon {
    position: absolute;
    top: 0;
    left: -4px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #ffffff;
}

.comptia-hero-box-icon svg,
.comptia-hero-box-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.comptia-hero-box {
    border: 1px solid #ffffff;
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 1rem 1.25rem 1rem 3.5rem;
    background: transparent;
}

.comptia-hero-box-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.comptia-hero-box-text {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

/* =========================================================
   ISO TRAINING COURSES PAGE — HERO SECTION
   ========================================================= */

.iso-hero-section {
    position: relative;
    background-color: #0d1b3e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3.5rem 2rem;
    min-height: 520px;
}

.iso-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1440px) {
    .iso-hero-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 15rem;
        align-items: center;
    }
}

/* ---- Left Content ---- */
.iso-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 56px;
}

.iso-hero-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #000000;
    text-transform: none;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.iso-hero-subtitle {
    font-size: 20px;
    color: #111111;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    font-weight: 500;
}

/* ---- Icon + Box ---- */
.iso-hero-box-wrap {
    position: relative;
    padding-top: 28px;
}

.iso-hero-box-icon {
    position: absolute;
    top: 0;
    left: -4px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #ffffff;
}

.iso-hero-box-icon svg,
.iso-hero-box-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.iso-hero-box {
    border: 1px solid #ffffff;
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 1rem 1.25rem 1rem 3.5rem;
    background: transparent;
}

.iso-hero-box-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.iso-hero-box-text {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

/* ---- Right: Logo Image ---- */
.iso-hero-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.iso-hero-logo-box {
    background: #ffffff00;
    padding: 1rem;
    border-radius: 50%;
    width: 215px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.iso-hero-logo-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .iso-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .iso-hero-box-icon {
        left: 50%;
        transform: translateX(-50%);
    }

    .iso-hero-box {
        padding: 4rem 1.25rem 1rem;
    }
}

@media (max-width: 640px) {
    .iso-hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgb(96 94 94 / 45%);
        z-index: 1;
    }

    .iso-hero-wrapper {
        position: relative;
        z-index: 2;
    }

    .iso-offering-badge {
        width: 93%;
    }

    .iso-faq-section {
        padding: 0rem 2rem;
        background: #ffffff;
        margin-bottom: 5rem;
    }
}

/* =========================================================
   ISO TRAINING COURSES PAGE — OFFERINGS SECTION
   ========================================================= */
.iso-offerings-section {
    padding: 6rem 0;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.iso-offerings-container {


    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.iso-offerings-title {
    font-size: 32px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.iso-offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 6rem;
}

.iso-offering-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Header with Dot & Badge */
.iso-offering-header {
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
}

.iso-offering-dot {
    position: absolute;
    left: 5px;
    top: 8%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: #E8213A;
    border-radius: 51%;
    z-index: 2;
    /* border-bottom-left-radius: 0px; */
}

.iso-offering-icon {
    position: absolute;
    left: 5px;
    top: 8%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    object-fit: contain;
    z-index: 2;
    flex-shrink: 0;
}

.iso-offering-badge {
    background: #ffffff;
    border: 1px solid #E8213A;
    border-radius: 12px;
    padding: 0.8rem 1.5rem 0.8rem 2.8rem;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 0px;
}


/* Body Content */
.iso-offering-body {
    padding-left: 1.5rem;
}

.iso-offering-heading {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.iso-offering-desc {
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.iso-offering-ideal {
    font-size: 13.5px;
    color: #000000;
    line-height: 1.5;
}


.iso-offering-ideal strong {
    font-weight: 700;
}

/* Staggered 5th item */
.iso-offering-card:nth-child(5) {
    grid-column: 1 / span 2;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .iso-offerings-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .iso-offering-card:nth-child(5) {
        grid-column: 1;
        max-width: 100%;
    }
}

/* =========================================================
   ISO TRAINING COURSES PAGE — CTA SECTION
   ========================================================= */
.iso-cta-section {
    background: #d42b40;
    min-height: 160px;
}

.iso-cta-col--single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 3.5rem;
    gap: 1.5rem;
    text-align: center;
}

.iso-cta-desc {
    font-size: 13.5px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 0.8rem;
    max-width: 700px;
}

.iso-cta-desc:last-child {
    margin-bottom: 0;
}

.iso-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.iso-cta-btn {
    display: inline-block;
    background: #E8213A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    text-align: center;
    min-width: 160px;
}

.iso-cta-btn:hover {
    background: #a01226;
    color: #ffffff;
}

@media (max-width: 640px) {
    .iso-cta-col--single {
        padding: 2rem 1.5rem;
    }

    .iso-cta-btn {
        width: 100%;
    }
}



.comptia-hero-logo-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.comptia-hero-logo-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comptia-hero-logo-img {
    max-width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .comptia-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .comptia-hero-logo-col {
        justify-content: flex-start;
    }

    .comptia-hero-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 640px) {
    .comptia-hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgb(96 94 94 / 45%);
        z-index: 1;
    }

    .comptia-hero-wrapper {
        position: relative;
        z-index: 2;
    }
}

/* =========================================================
   A+ CERTIFICATION TRAINING PAGE — HERO SECTION
   ========================================================= */

.aplus-hero-section {
    position: relative;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aplus-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;
}

.aplus-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 0.5rem 2rem 2rem;
    text-align: center;
}

/* Title + inline badge */
.aplus-hero-title-wrap {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.aplus-hero-title {
    font-size: 2rem;
    font-weight: 500;
    color: #0d1b2a;
    line-height: 1.25;
    margin: 0;
    padding-top: 30px;
}

.aplus-hero-badge {
    height: 72px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Hero badge visibility: desktop shows inline badge, mobile shows badge after desc */
.hero-badge-mobile {
    display: none;
}

@media (max-width: 480px) {
    .hero-badge-desktop {
        display: none;
    }

    .hero-badge-mobile {
        display: block;
        margin: 1rem auto 0;
    }
}

.aplus-hero-desc {
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.85;
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
}

/* Feature bar */
.aplus-hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 75%;
    margin: 0 auto;
    margin-top: -60px;
    z-index: 10;
    position: relative;
}

.aplus-hero-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: default;
}
.aplus-hero-feat:hover {
    filter: brightness(1.25);
    transform: translateY(-4px);
}

.aplus-hero-feat:last-child {
    border-right: none;
}

.aplus-hero-feat:nth-child(1) {
    background: #084FA7;
}

.aplus-hero-feat:nth-child(2) {
    background: #0855B6;
}

.aplus-hero-feat:nth-child(3) {
    background: #125DBA;
}

.aplus-hero-feat:nth-child(4) {
    background: #1F67C0;
}

.aplus-hero-feat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aplus-hero-feat-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.aplus-hero-feat-icon svg {
    width: 44px;
    height: 44px;
}

.aplus-hero-feat-title {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .aplus-hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .aplus-hero-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 500px) {
    .aplus-hero-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .aplus-hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgb(96 94 94 / 45%);
        z-index: 1;
    }

    .aplus-hero-content {
        position: relative;
        z-index: 2;
        max-width: 860px;
        margin: 0 auto;
        padding: 0.5rem 2rem 2rem;
        text-align: center;
        padding-top: 83px;
        padding-bottom: 79px;
    }

    .aplus-hero-desc {
        font-size: 14px;
        color: #ffffff;
        line-height: 1.85;
        margin: 0 auto;
        max-width: 760px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .aplus-hero-title-wrap {
        flex-direction: column;
        align-items: center;
    }
}

/* =========================================================
   COMPTIA PAGE — CHOOSE YOUR PATH SECTION
   ========================================================= */

.comptia-path-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.comptia-path-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: start;
}

.comptia-path-left {
    display: flex;
    align-items: flex-start;
}

.comptia-path-side-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.comptia-path-right {
    display: flex;
    flex-direction: column;
}

.comptia-path-title {
    font-size: 2rem;
    font-weight: 500;
    color: #0d1b2a;
    margin: 0 0 0.75rem;
    letter-spacing: 0.5px;
}

.comptia-path-subtitle {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0 0 2rem;
}

.comptia-path-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
}

.comptia-path-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comptia-path-card--center {
    grid-column: 1 / -1;
    max-width: calc(50% - 1.25rem);
    margin: 0 auto;
}

.comptia-path-card-header {
    position: relative;
    padding-left: 0;
}

.comptia-path-card-dot {
    display: block;
    width: 28px;
    height: 28px;
    background: #E8213A;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 2;
}

.comptia-path-card-icon {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: absolute;
    top: -25px;
    left: -28px;
    z-index: 2;
    flex-shrink: 0;
}

.comptia-path-card-title-box {
    border: 1.5px solid #f08090;
    border-radius: 50px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    padding: 0.75rem 1.25rem 0.75rem 1.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.comptia-path-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #0d1b2a;
    line-height: 1.35;
    width: 50%;
}

.comptia-path-card-desc {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
    margin: 0;
    padding: 0 0.25rem;
}

@media (max-width: 900px) {
    .comptia-path-wrapper {
        grid-template-columns: 1fr;
    }

    .comptia-path-left {
        display: none;
    }

    .comptia-path-cards-grid {
        grid-template-columns: 1fr;
    }

    .comptia-path-card--center {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }
}

/* =========================================================
   COMPTIA PAGE — WHY CHOOSE US SECTION
   ========================================================= */

.comptia-why-section {
    position: relative;
    padding: 4rem 2rem;
    background-color: #c0392b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comptia-why-overlay {
    position: absolute;
    inset: 0;
    background: rgb(200 50 60 / 6%);
    z-index: 1;
}

.comptia-why-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.comptia-why-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 2.5rem;
    letter-spacing: 0.5px;
}

/* 5 cards: 3 in row 1, 2 centered in row 2 */
.comptia-why-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.comptia-why-card {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px 30px 30px 0;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.comptia-why-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comptia-why-card-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.comptia-why-card-icon svg {
    width: 44px;
    height: 44px;
}

.comptia-why-card-body {
    flex: 1;
}

.comptia-why-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 0.4rem;
    line-height: 1.4;
    width: 90%;
}

.comptia-why-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .comptia-why-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 600px) {
    .comptia-why-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* =========================================================
   COMPTIA PAGE — WHO IS IT FOR & CAREER OUTCOMES SECTION
   ========================================================= */

.comptia-out-section {
    background: #F5F5F5;
    height: 800px;
    overflow: hidden;
}

.comptia-out-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    height: 100%;
    align-items: stretch;
    padding: 0 2rem;
}

.comptia-out-col {
    display: flex;
    flex-direction: column;
}

.comptia-out-col--top {
    justify-content: flex-start;
    padding-top: 4rem;
}

.comptia-out-col--bottom {
    justify-content: flex-end;
    padding-bottom: 4rem;
}

.comptia-out-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comptia-out-center-img {
    width: 100%;
    height: 67%;
    object-fit: cover;
    display: block;
}

.comptia-out-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #084FA7;
    margin: 0 0 1.5rem;
    letter-spacing: 0.3px;
}

.comptia-out-intro {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.comptia-out-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comptia-out-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.comptia-out-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #333;
}

@media (max-width: 768px) {
    .comptia-out-section {
        height: auto;
        padding: 3rem 1.5rem;
    }
    .comptia-out-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .comptia-out-center-img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .comptia-out-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        height: 100%;
        align-items: stretch;
        padding: 0 1.5rem;
    }
}

/* =========================================================
   COMPTIA PAGE — CTA SECTION
   ========================================================= */

.comptia-cta-section {
    background: #d42b40;
    min-height: 160px;
}

.comptia-cta-col--single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 3.5rem;
    gap: 1.5rem;
    text-align: center;
}

.comptia-cta-desc {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0 0 0.5rem;
    max-width: 700px;
}

.comptia-cta-desc:last-child {
    margin-bottom: 0;
}

.comptia-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.comptia-cta-btn {
    display: inline-block;
    background: #EE253A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    width: 201px;
    text-align: center;
}

.comptia-cta-btn:hover {
    background: #a01226;
    color: #ffffff;
}

@media (max-width: 640px) {
    .comptia-cta-col--single {
        padding: 2rem 1.5rem;
    }

    .comptia-cta-btn {
        width: 100%;
    }
}

/* =========================================================
   ACCA PAGE — WHY STUDY & WHAT WE OFFER SECTION
   ========================================================= */
.acca-why-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.acca-why-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* ---- Left: Side Image ---- */
.acca-why-left {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.acca-why-side-img {
    width: 100%;
    max-width: 340px;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    padding-top: 10px;
}

/* ---- Right: Content ---- */
.acca-why-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* ---- Why Study Block ---- */
.acca-why-title {
    font-size: 2rem;
    font-weight: 400;
    color: #0d1b2a;
    text-transform: uppercase;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.acca-why-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin: 0;
    font-weight: 400;
}

/* ---- What We Offer Block ---- */
.acca-offer-title {
    font-size: 2rem;
    font-weight: 400;
    color: #0d1b2a;
    text-transform: uppercase;
    margin: 0 0 1.75rem;
    line-height: 1.2;
}

/* ---- 2x2 Cards Grid ---- */
.acca-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
}

.acca-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.acca-card-header {
    position: relative;
    padding-left: 0;
}

.acca-card-dot {
    display: block;
    width: 28px;
    height: 28px;
    background: #E8213A;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 2;
}

.acca-card-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: absolute;
    top: -27px;
    left: -24px;
    z-index: 2;
    flex-shrink: 0;
}

.acca-card-title-box {
    border: 1.5px solid #f08090;
    border-radius: 50px;
    border-bottom-left-radius: 0;
    padding: 0.75rem 1.25rem 0.75rem 1.5rem;
    display: inline-block;
    min-height: 60px;
    display: flex;
    align-items: center;
    border-top-left-radius: 0px;
}

.acca-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #0d1b2a;
    line-height: 1.35;
}

.acca-card-desc {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
    margin: 0;
    padding: 0 0.25rem;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .acca-why-wrapper {
        grid-template-columns: 1fr;
    }

    .acca-why-left {
        display: none;
    }

    .acca-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ACCA PAGE — CBE / BENEFITS SECTION
   ========================================================= */

.acca-cbe-section {
    background: #fff;
    padding: 4rem 2rem;
}

.acca-cbe-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    align-items: start;
}

/* Left column */
.acca-cbe-col.acca-cbe-col--left {
    position: relative;
}

.acca-cbe-left-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.acca-cbe-banner {
    position: absolute;
    top: 60%;
    left: 0px;
    width: 100%;
    background: rgba(8, 79, 167, 0.85);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0px;
    box-sizing: border-box;
}

.acca-cbe-banner-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.acca-cbe-banner-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.acca-cbe-banner-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Middle column */
.acca-cbe-col--mid {
    display: flex;
    flex-direction: column;
}

.acca-cbe-mid-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 1.5rem;
}

.acca-cbe-ben-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: #111;
    margin: 0 0 0.8rem;
}

.acca-cbe-ben-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acca-cbe-ben-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0px;
}

.acca-cbe-ben-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3em;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000000;
}

/* Right column */
.acca-cbe-col--right {
    display: flex;
    flex-direction: column;
}

.acca-cbe-right-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.acca-cbe-right-heading {
    font-size: 1.05rem;
    font-weight: 500;
    color: #111;
    margin: 0 0 0.8rem;
    line-height: 1.4;
}

.acca-cbe-right-text {
    font-size: 0.9rem;
    color: #444;
    margin: 0 0 1.3rem;
    line-height: 1.6;
}

.acca-cbe-right-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width: 900px) {
    .acca-cbe-section {
        background: #fff;
        padding: 2rem 2rem;
    }

    .acca-cbe-wrapper {
        grid-template-columns: 1fr;
    }

    .acca-cbe-col--left {
        order: -1;
    }

    .acca-cbe-mid-img,
    .acca-cbe-right-img {
        display: none;
    }

    .acca-cbe-left-img {
        height: 260px;
    }
}

/* =========================================================
   ACCA PAGE — CTA SECTION
   ========================================================= */
.acca-cta-section {
    background: #d42b40;
    min-height: 160px;
}

.acca-cta-col--single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 3.5rem;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
}

.acca-cta-desc {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0;
    max-width: 700px;
}

.acca-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.acca-cta-btn {
    display: inline-block;
    background: #EE253A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    width: 255px;
    text-align: center;
}

.acca-cta-btn:hover {
    background: #a01226;
    color: #ffffff;
}

@media (max-width: 640px) {
    .acca-cta-col--single {
        padding: 2rem 1.5rem;
    }

    .acca-cta-btn {
        width: 100%;
    }
}

/* =========================================================
   NON-VOCATIONAL PROGRAMS PAGE — CTA SECTION
   ========================================================= */
.nvp-cta-section {
    background: #d42b40;
    min-height: 160px;
}

.nvp-cta-col--single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 3.5rem;
    gap: 1.5rem;
    text-align: center;
}

.nvp-cta-desc {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0;
    max-width: 700px;
}

.nvp-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.nvp-cta-btn {
    display: inline-block;
    background: #EE253A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    width: 201px;
    text-align: center;
}

.nvp-cta-btn:hover {
    background: #a01226;
    color: #ffffff;
}

@media (max-width: 640px) {
    .nvp-cta-col--single {
        padding: 2rem 1.5rem;
    }

    .nvp-cta-btn {
        width: 100%;
    }
}

/* =========================================================
   HOSPITALITY MANAGEMENT PAGE — SHARED OVERVIEW + CAREERS WRAPPER
   ========================================================= */
.hm-ov-ca-outer {
    position: relative;
    background: #ffffff;
}

.hm-ov-ca-deco-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.hm-ov-ca-deco-right img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: right center;
}

/* =========================================================
   HOSPITALITY MANAGEMENT PAGE — PROGRAM OVERVIEW SECTION
   ========================================================= */
.hm-ov-section {
    position: relative;
    background: transparent;
    padding: 4rem 2rem 3rem;
    overflow: visible;
    z-index: 2;
}

.hm-ov-deco {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
    z-index: 0;
}

.hm-ov-deco--left {
    left: 0;
}

.hm-ov-deco--right {
    right: 0;
    height: 172%;
}

.hm-ov-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hm-ov-title {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    color: #0d1b2a;
    margin: 0 0 2.5rem;
}

.hm-ov-cards-row {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 1.75rem;
}

.hm-ov-row-2 {
    padding-left: 0;
    justify-content: center;
}

.hm-ov-card {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex: 0 0 calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    position: relative;
}

.hm-ov-dot {
    width: 28px;
    height: 30px;
    min-width: 30px;
    background: #EE253A;
    border-radius: 50%;
    margin-top: -9px;
    margin-right: -14px;
    z-index: 2;
    position: relative;
}

.hm-ov-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-top: -23px;
    margin-right: -22px;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.hm-ov-box {
    border: 1.5px solid #ee253a;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    padding: 2rem 1rem 1.75rem 1.25rem;
    background: #ffffff;
    flex: 1;
}

.hm-ov-label {
    font-size: 14px;
    font-weight: 600;
    color: #0d1b2a;
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

.hm-ov-value {
    font-size: 13px;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .hm-ov-cards-row {
        flex-direction: column;
        align-items: center;
    }

    .hm-ov-row-2 {
        padding-left: 0;
    }

    .hm-ov-card {
        max-width: 100%;
        width: 100%;
    }
}

/* =========================================================
   HOSPITALITY MANAGEMENT PAGE — CAREER OPPORTUNITIES SECTION
   ========================================================= */
.hm-ca-section {
    background: transparent;
    padding: 3rem 2rem 4rem;
    position: relative;
    z-index: 2;
}

.hm-ca-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 3rem;
    align-items: start;
}

.hm-ca-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #1565C0;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.hm-ca-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #0d1b2a;
    margin: 0 0 0.85rem;
    line-height: 1.5;
}

.hm-ca-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hm-ca-list li {
    font-size: 13px;
    color: #333;
    line-height: 1.65;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.6rem;
}

.hm-ca-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000000;
}

.hm-ca-col--center {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hm-ca-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    display: block;
}

.hm-ca-col--right .hm-ca-subtitle {
    margin-top: 2.5rem;
}

@media (max-width: 900px) {
    .hm-ca-wrapper {
        grid-template-columns: 1fr;
    }

    .hm-ca-col--center {
        order: -1;
    }

    .hm-ca-col--right .hm-ca-subtitle {
        margin-top: 0;
    }
}

/* =========================================================
   HOSPITALITY MANAGEMENT PAGE — ACADEMIC & WHY CHOOSE
   ========================================================= */

.hm-ac-section {
    background: #fff;
}

.hm-ac-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    align-items: center;
}

.hm-ac-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.hm-ac-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.hm-ac-intro {
    font-size: 0.95rem;
    color: #444;
    margin: 0 0 1rem;
    line-height: 1.6;
}

.hm-ac-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.hm-ac-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.65;
    margin-bottom: 0.6rem;
}

.hm-ac-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #111;
}

.hm-ac-desc {
    font-size: 0.9rem;
    color: #444;
    margin: 0.5rem 0 0;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .hm-ac-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hm-ac-row--why .hm-ac-col--img {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hm-ac-row {
        display: grid;
        max-width: 1200px;
        margin: 0 auto;
        gap: 4rem;
        align-items: center;
        padding: 4rem 2rem !important;
    }
}

/* =========================================================
   HOSPITALITY MANAGEMENT PAGE — CURRICULUM STRUCTURE
   ========================================================= */

.hm-cs-section {
    background: #084FA7;
}

.hm-cs-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
}

.hm-cs-title {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 0.7rem;
}

.hm-cs-subtitle {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.hm-cs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    width: 100%;
}

.hm-cs-cell {
    position: relative;
    background-color: #1a3a6b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 20px;
    overflow: hidden;
}

.hm-cs-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hm-cs-label {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    width: 75%;
    padding-left: 48px;
}

@media (max-width: 900px) {
    .hm-cs-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
}

@media (max-width: 480px) {
    .hm-cs-section {
        background: #084FA7;
        margin-bottom: 2rem;
    }

    .hm-cs-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px);
    }

    .hm-cs-label {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.4;
        width: 75%;
        padding-left: 0px;
    }
}

/* =========================================================
   HOSPITALITY MANAGEMENT PAGE — PROGRAM HIGHLIGHTS
   ========================================================= */

.hm-hl-section {
    background: #F5F5F5;
    padding: 4rem 2rem;
}

.hm-hl-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.hm-hl-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hm-hl-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #111;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.hm-hl-title-reg {
    font-weight: 400;
}

.hm-hl-title-bold {
    font-weight: 500;
}

.hm-hl-desc {
    font-size: 0.95rem;
    color: #444;
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

.hm-hl-intro {
    font-size: 0.95rem;
    color: #444;
    margin: 0;
    line-height: 1.6;
}

.hm-hl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hm-hl-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hm-hl-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hm-hl-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hm-hl-card-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .hm-hl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hm-hl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hm-hl-title {
        font-size: 1.6rem;
    }
}

/* =========================================================
   HOSPITALITY MANAGEMENT PAGE — ADMISSION REQUIREMENTS
   ========================================================= */

.hm-ad-section {
    background: #fff;
    padding: 4rem 2rem;
}

.hm-ad-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    align-items: start;
}

/* Left column */
.hm-ad-col.hm-ad-col--left {
    position: relative;
}

.hm-ad-left-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    display: block;
}

.hm-ad-banner {
    position: absolute;
    top: 60%;
    left: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #084FA7;
    padding: 18px 22px;
    border-radius: 0px;
}

.hm-ad-banner-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hm-ad-banner-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hm-ad-banner-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Middle column */
.hm-ad-col--mid {
    display: flex;
    flex-direction: column;
}

.hm-ad-mid-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 1.5rem;
}

.hm-ad-elp-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: #111;
    margin: 0 0 0.6rem;
}

.hm-ad-elp-intro {
    font-size: 0.9rem;
    color: #444;
    margin: 0 0 0.9rem;
    line-height: 1.6;
}

.hm-ad-elp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hm-ad-elp-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.65;
    margin-bottom: 0.7rem;
}

.hm-ad-elp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #111;
}

/* Right column */
.hm-ad-col--right {
    display: flex;
    flex-direction: column;
}

.hm-ad-right-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.hm-ad-right-heading {
    font-size: 1.05rem;
    font-weight: 500;
    color: #111;
    margin: 0 0 0.4rem;
    line-height: 1.4;
}

.hm-ad-right-text {
    font-size: 0.9rem;
    color: #444;
    margin: 0 0 1.3rem;
    line-height: 1.6;
}

.hm-ad-right-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width: 900px) {
    .hm-ad-wrapper {
        grid-template-columns: 1fr;
    }

    .hm-ad-mid-img,
    .hm-ad-right-img {
        display: none;
    }
}

/* =========================================================
   HOSPITALITY MANAGEMENT PAGE — HERO SECTION
   ========================================================= */
.hm-hero-section {
    position: relative;
    min-height: 540px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1565C0;
    display: flex;
    align-items: center;
}

.hm-hero-overlay {
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 2rem 11rem;
}

.hm-hero-content {
    max-width: 530px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hm-hero-title {
    font-size: 2.4rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #0d1b2a;
    margin: 0 0 0.85rem;
    line-height: 1.15;
}

.hm-hero-subtitle {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.6;
    margin: 0 0 1.75rem;
}

/* ---- Icon + Box ---- */
.hm-hero-box-wrap {
    position: relative;
    padding-top: 28px;
}

.hm-hero-box-icon {
    position: absolute;
    top: 0;
    left: -4px;
    color: #0d1b2a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    z-index: 2;
}

.hm-hero-box-icon svg,
.hm-hero-box-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.hm-hero-box {
    border: 1px solid rgb(255 255 255 / 72%);
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 2.25rem 1.5rem 1.5rem;
    background: rgb(255 255 255 / 0%);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hm-hero-box-text {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 900px) {
    .hm-hero-overlay {
        background: rgba(255, 255, 255, 0.88);
        padding: 3rem 1.5rem;
    }

    .hm-hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hm-hero-overlay {
        background: rgb(255 255 255 / 0%);
        padding: 3rem 1.5rem;
    }
    .hm-hero-title {
        font-size: 1.8rem;
        margin-top: 75px;
    }
}

/* =========================================================
   VOCATIONAL PROGRAMS PAGE — CTA SECTION
   ========================================================= */
.vp-cta-section {
    background: #d42b40;
    min-height: 160px;
}

.vp-cta-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3.5rem;
}

.vp-cta-col--single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 3.5rem;
    gap: 1.5rem;
    text-align: center;
}

.vp-cta-desc {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0;
    max-width: 700px;
}

.vp-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.vp-cta-btn {
    display: inline-block;
    background: #EE253A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    width: auto;
    text-align: center;
}

.vp-cta-btn:hover {
    background: #a01226;
    color: #ffffff;
}

@media (max-width: 640px) {
    .vp-cta-col--single {
        padding: 2rem 1.5rem;
    }

    .vp-cta-btn {
        width: 100%;
    }
}

/* =========================================================
   VOCATIONAL PROGRAMS PAGE — PROGRAMS SECTION
   ========================================================= */
.vp-prog-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.vp-prog-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.vp-prog-section-title {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    color: #0d1b2a;
    text-transform: uppercase;
    margin: 0 0 3rem;
}

/* ---- Each Program Row ---- */
.vp-prog-item {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 10.5rem;
    align-items: start;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e8e8e8;
}

.vp-prog-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* ---- Left: Image + Info Box ---- */
.vp-prog-left {
    position: relative;
}

.vp-prog-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px 8px 8px 0px;
    display: block;
}

.vp-prog-info-box {
    position: absolute;
    bottom: -26px;
    left: 185px;
    right: -100px;
    background: #1565C0;
    padding: 1rem 1.25rem;
    border-radius: 8px 8px 8px 0px;
    overflow: visible;
}

.vp-prog-campus,
.vp-prog-credential {
    font-size: 13px;
    color: #ffffff;
    margin: 0 0 0.25rem;
    line-height: 1.5;
}

.vp-prog-campus strong,
.vp-prog-credential strong {
    font-size: 15px;
}

.vp-prog-campus:last-child,
.vp-prog-credential:last-child {
    margin-bottom: 0;
}

/* ---- Right: Content ---- */
.vp-prog-right {
    padding-top: 0.5rem;
}

.vp-prog-title {
    font-size: 20px;
    font-weight: 700;
    color: #1565C0;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.vp-prog-desc {
    font-size: 13px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 0.85rem;
}

.vp-prog-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.vp-prog-list li {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.vp-prog-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000000;
}

.vp-prog-career-title {
    font-size: 18px;
    font-weight: 700;
    color: #1565C0;
    margin: 0 0 0.65rem;
}

.vp-prog-careers li::before {
    color: #000000;
}

@media (max-width: 900px) {
    .vp-prog-item {
        grid-template-columns: 1fr;
    }

    .vp-prog-img {
        height: 260px;
    }

    .vp-prog-info-box {
        position: absolute;
        bottom: -26px;
        left: 50px;
        right: -2px;
        background: #1565C0;
        padding: 1rem 1.25rem;
        border-radius: 8px 8px 8px 0px;
        overflow: visible;
    }
}

/* =========================================================
   ABOUT PAGE — CORE VALUES SECTION
   ========================================================= */

/* Outer wrapper so image can be absolutely positioned across both sections */
.about-cv-ms-outer {
    position: relative;
}

.about-cv-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.about-cv-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-cv-title {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: #0d1b2a;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.about-cv-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-cv-grid--top {
    grid-template-columns: repeat(3, 1fr);
}

.about-cv-grid--bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66%;
    margin-left: auto;
    margin-right: auto;
}

/* --- Red numbered card (01, 02) --- */
.about-cv-card--red {
    position: relative;
    background: #e41d34;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    overflow: visible;
}

.about-cv-num {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 54px;
    height: 48px;
    border-radius: 62%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    overflow: visible;
    z-index: 2;
}

.about-cv-num-icon {
    width: 58px;
    height: 52px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}


.about-cv-card--red .about-cv-card-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.about-cv-card--red .about-cv-card-content {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* --- Outline card (03, 04, 05) --- */
.about-cv-card--outline {
    border: 1.5px solid #cccccc;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    padding: 1.5rem;
    background: #ffffff;
    transition: box-shadow 0.2s, opacity 0.7s ease, transform 0.7s ease;
}

.about-cv-card--outline:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.about-cv-card--outline .about-cv-card-title {
    color: #084FA7;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.about-cv-card--outline .about-cv-card-content {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.about-cv-card-body {
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {

    .about-cv-grid--top,
    .about-cv-grid--bottom {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }
}

@media (max-width: 600px) {

    .about-cv-grid--top,
    .about-cv-grid--bottom {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .about-cv-title {
        font-size: 1.4rem;
    }
}

/* =========================================================
   ABOUT PAGE — MILESTONE ACHIEVEMENT SECTION
   ========================================================= */

.about-ms-section {
    padding: 3rem 2rem 3rem 2rem;
    background: #ffffff;
}

.about-ms-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.about-ms-label {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0d1b2a;
    margin-bottom: 0.75rem;
}

.about-ms-title {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    color: #0d1b2a;
    line-height: 1.2;
    margin-top: 64px;
    margin-bottom: 0.4rem;
}

.about-ms-year {
    font-family: 'Italianno', cursive;
    font-size: 96px;
    /* font-style: italic; */
    font-weight: 500;
    color: #EE253A;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: right;
    width: 50%;
}

.about-ms-text {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 0.75rem;
    width: 60%;
}

@media (max-width: 900px) {
    .about-ms-year {
        font-size: 72px;
        width: 100%;
    }

    .about-ms-text {
        width: 100%;
    }

    .about-ms-title {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .about-ms-label {
        font-size: 1.3rem;
    }
}

@media (max-width: 540px) {
    .about-ms-year {
        font-size: 56px;
    }

    .about-ms-title {
        font-size: 1.25rem;
    }

    .about-ms-label {
        font-size: 1.1rem;
    }
}

/* =========================================================
   ABOUT PAGE — BRIEF HISTORY SECTION
   ========================================================= */

.about-bh-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 431px;
}

.about-bh-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.about-bh-title {
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.about-bh-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

/* =========================================================
   ABOUT PAGE — GROWTH & COMMUNITY IMPACT SECTION
   ========================================================= */

.about-gc-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.about-gc-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-gc-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-gc-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-gc-title {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-gc-intro {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-gc-item {
    margin-bottom: 1.2rem;
}

.about-gc-badge {
    display: inline-block;
    background: #1565C0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 0.50rem 2.3rem;
    border-radius: 50px;
    margin: 0.5rem;
    border-bottom-left-radius: 0px;
}

.about-gc-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .about-gc-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-gc-title {
        font-size: 1.5rem;
    }
}

/* =========================================================
   ABOUT PAGE — OUR LEARNING APPROACH SECTION
   ========================================================= */

.about-la-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.about-la-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-la-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-la-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.about-la-title {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    color: #0d1b2a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-la-intro {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-la-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.about-la-bullets li {
    font-size: 14px;
    color: #333;
    line-height: 1.75;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-la-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000000;
}

.about-la-closing {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .about-la-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-la-title {
        font-size: 1.5rem;
    }
}

/* Outer wrapper for Growth + Learning — holds decorative image */
.about-gc-la-outer {
    position: relative;
    background: #ffffff;
}

/* Transparent so deco image shows through from behind */
.about-gc-section,
.about-la-section {
    background: transparent;
    position: relative;
}

/* Content wrappers sit above the deco image */
.about-gc-wrapper,
.about-la-wrapper {
    position: relative;
    z-index: 2;
}

.about-gc-la-deco {
    position: absolute;
    right: 0;
    top: -132px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 40%;
}

.about-gc-la-deco img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: right center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    position: relative;
    background-color: #111827;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 0;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: none;
    z-index: 0;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

/* ---- Contact Col ---- */
.footer-contact-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.footer-company-name {
    font-style: italic;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.footer-addresses {
    list-style: disc;
    padding-left: 1.25rem;
    color: #ffffff;
    font-size: 13px;
    line-height: 2;
    margin: 0;
}

.footer-addresses li {
    margin-bottom: 0.25rem;
}

/* ---- Nav Cols ---- */
.footer-nav-col .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col .footer-nav-list li {
    margin-bottom: 0rem;
}

.footer-nav-col .footer-nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-nav-col .footer-nav-list a:hover {
    color: #cccccc;
    text-decoration: none;
}

/* ---- Contact Details Col ---- */
.footer-contact-details-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 14px;
}

.footer-phone p {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    margin: 0;
    line-height: 1.7;
    font-size: 14px;
}

/* iOS auto-detects phone numbers as links — force white */
.footer-phone p a,
.footer-phone a {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-decoration: none !important;
}

.footer-email a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.7;
}

.footer-email a:hover {
    color: #cccccc;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s;
}

.footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
}

/* ---- Footer Bottom ---- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.25rem;
    text-align: right;
    font-size: 13px;
    color: #ffffff;
}

.footer-bottom p {
    margin: 0;
    color: #fff !important;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn,
.button,
input[type="submit"],
button[type="submit"] {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    line-height: 1.4;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

/* =========================================================
   CARDS (reusable)
   ========================================================= */
.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

/* =========================================================
   FORMS
   ========================================================= */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--color-dark);
}

/* =========================================================
   SECTIONS — utility spacing
   ========================================================= */
.section {
    padding: 4rem 0;
}

.section-light {
    background-color: var(--color-light);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
    margin: 0.5rem auto 0;
}

.section-title p {
    color: var(--color-muted);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* =========================================================
   POSTS / BLOG
   ========================================================= */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.post-entry {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.post-entry:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-body {
    padding: 1.25rem;
}

.post-meta {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.post-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.post-excerpt {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    transition: all 0.2s;
}

.pagination a:hover,
.pagination span.current {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    text-decoration: none;
}

/* =========================================================
   SINGLE POST / PAGE
   ========================================================= */
.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 2rem;
}

.entry-meta {
    color: var(--color-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.entry-content {
    max-width: 780px;
}

.entry-content p,
.entry-content li {
    font-size: 1rem;
    line-height: 1.8;
}

/* =========================================================
   SIDEBAR
   ========================================================= */
.content-sidebar-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}

.sidebar .widget {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.sidebar .widget-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

/* =========================================================
   404 PAGE
   ========================================================= */
.error-404 {
    text-align: center;
    padding: 5rem 1rem;
}

.error-404 .error-code {
    font-size: 7rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-404 h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.error-404 p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
/* Hide mobile sub-menu toggle on desktop */
.sub-menu-toggle {
    display: none;
}

@media (max-width: 960px) {
    .content-sidebar-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    /* Show hamburger, hide inline nav */
    .nav-toggle {
        display: flex;
    }

    .main-navigation {
        display: none;
        padding-top: 0;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        transform: none;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid var(--color-border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        padding: 0.75rem 1.25rem 1.25rem;
        z-index: 999;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .main-navigation.open {
        display: block;
    }

    /* Stack links vertically — left-aligned, full width */
    .main-navigation>ul,
    .main-navigation #primary-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    /* All nav li items: full width */
    .main-navigation ul li {
        width: 100%;
        display: block;
    }

    .main-navigation ul li a {
        padding: 0.65rem 0.75rem;
        font-size: 14px;
        text-align: left;
        display: block;
        width: 100%;
    }

    /* Sub-menu on mobile */
    .main-navigation ul .sub-menu {
        position: static;
        display: none;
        flex-direction: column;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--color-primary);
        border-radius: 0;
        padding: 0 0 0 0.5rem;
        margin-left: 0.75rem;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        width: auto;
        min-width: 0;
    }

    .main-navigation ul li.open > .sub-menu {
        display: flex;
    }

    .main-navigation ul .sub-menu li {
        width: 100%;
        position: relative;
    }

    .main-navigation ul .sub-menu li a {
        font-size: 13px;
        padding: 0.5rem 0.5rem;
    }

    /* Parent li with children: relative + flex row for link + toggle */
    .main-navigation ul li.menu-item-has-children {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        position: relative;
        width: 100%;
    }

    /* Link: takes all width minus toggle button */
    .main-navigation ul li.menu-item-has-children > a {
        flex: 1;
        min-width: 0;
        width: auto;
        padding-right: 0.75rem;
    }

    /* Sub-menu: full width on its own row */
    .main-navigation ul li.menu-item-has-children > .sub-menu {
        flex: 0 0 100%;
        width: 100%;
    }

    /* Hide desktop caret — toggle button replaces it */
    .main-navigation ul li.menu-item-has-children > a::after {
        display: none;
    }

    /* Toggle button: fixed-width flex item, full row height */
    .sub-menu-toggle {
        flex: 0 0 44px;
        width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgb(9, 101, 215);
        border: none;
        border-left: 1px solid rgba(0, 0, 0, 0.08);
        cursor: pointer;
        color: #ffffff;
        position: static;
        min-height: 36px;
        padding: 0;
        margin-top: 2px;
    }

    .sub-menu-toggle:active {
        background: rgba(1, 85, 158, 0.2);
    }

    .sub-menu-toggle svg {
        transition: transform 0.2s ease;
        pointer-events: none;
        flex-shrink: 0;
    }

    .sub-menu-toggle.open svg {
        transform: rotate(180deg);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-contact-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .footer-contact-col {
        grid-column: auto;
    }

    .footer-bottom {
        text-align: center;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .post-grid {
        grid-template-columns: 1fr;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   HOME PAGE - HERO SECTION
   ========================================================= */
.hero-section {
    position: relative;
    background-color: #ccddf5;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100svh;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
}

.hero-left {
    max-width: 550px;
    animation: heroLeftSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-btn {
    opacity: 0;
    animation: btnZoomIn 1.3s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}

@keyframes heroLeftSlideIn {
    0% {
        transform: translateX(-60px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-right {
    flex-shrink: 0;
}

.hero-student-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-top: 16%;
    animation: heroImgZoomOut 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform-origin: center center;
    margin-bottom: -53px;
    z-index: 999;
}

@keyframes heroImgZoomOut {
    0% {
        transform: scale(0.82);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000;
}

.hero-title .text-red {
    color: #EE253A;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333333;
}

.hero-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: #084FA7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px 50px 50px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #063a7d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 79, 167, 0.3);
    text-decoration: none;
    color: #ffffff;
}

.hero-about-section {
    background: linear-gradient(to right, #084FA7 60%, #ffffff 60%);
    color: #ffffff;
    padding: 1rem;
    position: relative;
    margin-top: auto;
    width: 100%;
}

@keyframes heroAboutZoomIn {
    0% {
        transform: scale(0.75);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-about-section .about-badge,
.hero-about-section .about-title,
.hero-about-section .about-content {
    animation: heroAboutZoomIn 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

@media (min-width: 961px) {
    .hero-about-section {
        width: 100%;
        padding-left: 10%;
        height: 159px;
        overflow: visible;
    }
}

.hero-about-section .about-badge {
    position: absolute;
    top: -31px;
    left: 10%;
    display: inline-flex;
    background-color: transparent;
    border-radius: 50%;
}

.hero-about-section .about-title {
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-about-section .about-title .about-arrow {
    display: inline-block;
    vertical-align: middle;
}

.hero-about-section .about-content {
    max-width: 49% !important;
    margin: 0px;
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
}

@media (max-width: 960px) {
    .hero-section {
        background-size: cover !important;
        background-position: center top !important;
        min-height: auto;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 0 1.25rem 2rem;
    }

    .hero-left {
        max-width: 100%;
        order: 2;
        padding-bottom: 2rem;
    }

    .hero-right {
        order: 1;
    }

    .hero-student-img {
        max-width: 300px;
        margin-top: 72px; /* clear fixed header */
        margin-bottom: 1.5rem;
    }

    .hero-about-section {
        width: 100%;
        margin-top: 0;
        background: #084FA7;
        padding: 2rem 1.25rem 1.5rem;
    }

    .hero-about-section .about-title {
        margin-top: 0;
    }

    .hero-about-section .about-content {
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-size: cover !important;
        background-position: center top !important;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-student-img {
        max-width: 240px;
        margin-top: 5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0 0rem;
    }

    .hero-student-img {
        max-width: 200px;
        margin-top: 5rem;
    }

    .hero-title {
        font-size: 28px;
    }
}

/* =========================================================
   HOME PAGE - ABOUT SECTION
   ========================================================= */
.about-section {
    background-color: #084FA7;
    color: #ffffff;
    padding: 3rem 1.25rem;
    text-align: center;
    position: relative;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
}

/* Responsive adjustments for home page */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding: 4rem 0 3rem;
    }

    .hero-container {
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image {
        max-width: 350px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-content {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0 2rem;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 15px;
    }

    .hero-image {
        max-width: 280px;
    }

    .about-title {
        font-size: 22px;
    }
}


/* =========================================================
   CAREER SECTION
   ========================================================= */
.career-section {
    padding: 4rem 0;
    background: #ffffff;
    margin-top: 80px;
}

.career-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.career-left {
    flex: 1;
    position: relative;
}

.career-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.career-img {
    width: auto;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.career-img-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 72%;
}

.career-img-2 {
    grid-column: 2;
    grid-row: 1;
}

.career-img-3 {
    grid-column: 2;
    grid-row: 2;
}

.career-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background-color: #084FA7;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px 50px 50px 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Italianno', cursive;
    font-size: 24px;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(8, 79, 167, 0.3);
}

.career-right {
    flex: 1;
}

.career-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
}

.career-content .text-red {
    color: #EE253A;
    font-weight: 600;
}

/* ── Career Section Animations ── */
@keyframes careerFromLeft {
    0%   { opacity: 0; transform: translateX(-100px) scale(0.9); }
    60%  { opacity: 1; transform: translateX(10px) scale(1.01); }
    80%  { transform: translateX(-4px) scale(1); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes careerFromTop {
    0%   { opacity: 0; transform: translateY(-80px) scale(0.9); }
    65%  { opacity: 1; transform: translateY(10px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes careerFromBottom {
    0%   { opacity: 0; transform: translateY(80px) scale(0.9); }
    65%  { opacity: 1; transform: translateY(-10px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes careerBadgePop {
    0%   { opacity: 0; transform: scale(0.2) rotate(-20deg); }
    45%  { opacity: 1; transform: scale(1.25) rotate(6deg); }
    65%  { transform: scale(0.9) rotate(-3deg); }
    80%  { transform: scale(1.08) rotate(1deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes careerTextUp {
    0%   { opacity: 0; transform: translateY(50px); filter: blur(6px); }
    60%  { filter: blur(0px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0px); }
}
@keyframes careerLineGrow {
    0%   { transform: scaleX(0); opacity: 0; }
    100% { transform: scaleX(1); opacity: 1; }
}

/* initial hidden states */
.career-img-1,
.career-img-2,
.career-img-3,
.career-badge,
.career-content p {
    opacity: 0;
}

/* triggered when section is visible */
.career-section.career-visible .career-img-1 {
    animation: careerFromLeft 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.career-section.career-visible .career-img-2 {
    animation: careerFromTop 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
.career-section.career-visible .career-img-3 {
    animation: careerFromBottom 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}
.career-section.career-visible .career-badge {
    animation: careerBadgeSlide 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
}

@keyframes careerBadgeSlide {
    0%   { opacity: 0; transform: translateX(-80px); }
    100% { opacity: 1; transform: translateX(0); }
}
.career-section.career-visible .career-content p:nth-child(1) {
    animation: careerTextUp 1.2s ease-out 0.3s forwards;
}
.career-section.career-visible .career-content p:nth-child(2) {
    animation: careerTextUp 1.2s ease-out 0.6s forwards;
}
.career-section.career-visible .career-content p:nth-child(3) {
    animation: careerTextUp 1.2s ease-out 0.9s forwards;
}
.career-section.career-visible .career-content p:nth-child(4) {
    animation: careerTextUp 1.2s ease-out 1.2s forwards;
}

@media (max-width: 960px) {
    .career-container {
        flex-direction: column;
        gap: 3rem;
    }

    .career-images {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .career-img-1 {
        grid-column: 1 / -1;
        grid-row: auto;
        height: auto;
        width: 100%;
        border-radius: 16px;
    }

    .career-img-2 {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        height: auto;
    }

    .career-img-3 {
        grid-column: 2;
        grid-row: auto;
        width: 100%;
        height: auto;
    }

    .career-badge {
        position: static;
        margin-top: 1.5rem;
        display: inline-flex;
        border-radius: 50px;
        font-size: 30px;
        font-weight: 500;
        font-family: 'Italianno', cursive;
    }

    .career-left {
        text-align: center;
    }

    .career-right {
        text-align: center;
    }

    .career-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .career-images {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .career-img-2,
    .career-img-3 {
        display: none;
    }

    .career-img-1 {
        grid-column: 1;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
}


/* =========================================================
   SHARED SCROLL ANIMATION KEYFRAMES
   ========================================================= */

@keyframes btnZoomIn {
    0%   { opacity: 0; transform: scale(0.75); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes clipRevealUp {
    0%   { clip-path: inset(0 0 100% 0); transform: translateY(30px); opacity: 0; }
    60%  { clip-path: inset(0 0 0% 0);   transform: translateY(-4px); opacity: 1; }
    100% { clip-path: inset(0 0 0% 0);   transform: translateY(0);    opacity: 1; }
}

@keyframes blurFadeIn {
    0%   { opacity: 0; filter: blur(18px); transform: scale(0.9) translateY(16px); }
    60%  { filter: blur(2px); }
    100% { opacity: 1; filter: blur(0px);  transform: scale(1) translateY(0); }
}

@keyframes flipUp3D {
    0%   { opacity: 0; transform: perspective(900px) rotateX(55deg) translateY(60px) scale(0.88); }
    60%  { opacity: 1; transform: perspective(900px) rotateX(-4deg) translateY(-6px) scale(1.02); }
    100% { opacity: 1; transform: perspective(900px) rotateX(0deg)  translateY(0)    scale(1); }
}

@keyframes slideRight {
    0%   { opacity: 0; transform: translateX(90px) scale(0.94); }
    65%  { opacity: 1; transform: translateX(-8px) scale(1.01); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideLeft {
    0%   { opacity: 0; transform: translateX(-90px) scale(0.94); }
    65%  { opacity: 1; transform: translateX(8px) scale(1.01); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes popBounce {
    0%  { opacity: 0; transform: scale(0.4) translateY(50px); }
    50% { opacity: 1; transform: scale(1.12) translateY(-12px); }
    70% { transform: scale(0.94) translateY(5px); }
    85% { transform: scale(1.04) translateY(-3px); }
    100%{ opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeSlideDown {
    0%   { opacity: 0; transform: translateY(-50px) scale(0.94); }
    65%  { opacity: 1; transform: translateY(6px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes rotateFadeIn {
    0%   { opacity: 0; transform: rotate(-15deg) scale(0.7) translateY(40px); }
    55%  { opacity: 1; transform: rotate(4deg) scale(1.04) translateY(-8px); }
    75%  { transform: rotate(-2deg) scale(0.98) translateY(3px); }
    100% { opacity: 1; transform: rotate(0deg)  scale(1) translateY(0); }
}

/* =========================================================
   WHY CHOOSE SECTION — Animations
   ========================================================= */

.why-title,
.why-subtitle {
    opacity: 0;
}

.why-box {
    opacity: 0;
}

.why-choose-section.why-visible .why-title {
    animation: clipRevealUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.why-choose-section.why-visible .why-subtitle {
    animation: blurFadeIn 1.3s ease-out 0.55s forwards;
}

/* col 1 — slide from left */
.why-choose-section.why-visible .why-box:nth-child(1) { animation: slideLeft  1.3s cubic-bezier(0.25,0.46,0.45,0.94) 0.2s  forwards; }
.why-choose-section.why-visible .why-box:nth-child(4) { animation: slideLeft  1.3s cubic-bezier(0.25,0.46,0.45,0.94) 0.5s  forwards; }
/* col 2 — zoom in */
.why-choose-section.why-visible .why-box:nth-child(2) { animation: btnZoomIn  1.3s cubic-bezier(0.25,0.46,0.45,0.94) 0.35s forwards; }
.why-choose-section.why-visible .why-box:nth-child(5) { animation: btnZoomIn  1.3s cubic-bezier(0.25,0.46,0.45,0.94) 0.65s forwards; }
/* col 3 — slide from right */
.why-choose-section.why-visible .why-box:nth-child(3) { animation: slideRight 1.3s cubic-bezier(0.25,0.46,0.45,0.94) 0.5s  forwards; }
.why-choose-section.why-visible .why-box:nth-child(6) { animation: slideRight 1.3s cubic-bezier(0.25,0.46,0.45,0.94) 0.8s  forwards; }

/* =========================================================
   PROGRAM HIGHLIGHT SECTION — Animations
   ========================================================= */

.ph-title {
    opacity: 0;
}

.ph-card {
    opacity: 0;
}

.ph-btn {
    opacity: 0;
}

.program-highlight-section.ph-visible .ph-title {
    animation: clipRevealUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.program-highlight-section.ph-visible .ph-card:nth-child(1) { animation: slideLeft 1.2s cubic-bezier(0.25,0.46,0.45,0.94) 0.2s  forwards; }
.program-highlight-section.ph-visible .ph-card:nth-child(2) { animation: slideLeft 1.2s cubic-bezier(0.25,0.46,0.45,0.94) 0.5s  forwards; }
.program-highlight-section.ph-visible .ph-card:nth-child(3) { animation: slideLeft 1.2s cubic-bezier(0.25,0.46,0.45,0.94) 0.8s  forwards; }
.program-highlight-section.ph-visible .ph-card:nth-child(4) { animation: slideLeft 1.2s cubic-bezier(0.25,0.46,0.45,0.94) 1.1s  forwards; }

.program-highlight-section.ph-visible .ph-btn {
    animation: btnZoomIn 1.3s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
}

/* =========================================================
   ADMISSIONS SECTION — Animations
   ========================================================= */

.admissions-title,
.admissions-subtitle,
.admissions-content,
.admissions-image,
.admissions-note,
.admissions-btn {
    opacity: 0;
}

.admissions-step {
    opacity: 0;
}

.admissions-section.adm-visible .admissions-title   { animation: slideLeft    1.3s cubic-bezier(0.22,1,0.36,1) 0.15s forwards; }
.admissions-section.adm-visible .admissions-subtitle{ animation: slideLeft    1.3s cubic-bezier(0.22,1,0.36,1) 0.4s  forwards; }
.admissions-section.adm-visible .admissions-content { animation: slideLeft    1.3s cubic-bezier(0.22,1,0.36,1) 0.65s forwards; }
.admissions-section.adm-visible .admissions-image   { animation: rotateFadeIn 1.5s cubic-bezier(0.22,1,0.36,1) 0.85s forwards; }
.admissions-section.adm-visible .admissions-note    { animation: blurFadeIn   1.2s ease-out               1.1s  forwards; }
.admissions-section.adm-visible .admissions-btn     { animation: btnZoomIn    1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.35s forwards; }

.admissions-section.adm-visible .admissions-step:nth-child(1) { animation: slideRight 1.2s cubic-bezier(0.22,1,0.36,1) 0.3s  forwards; }
.admissions-section.adm-visible .admissions-step:nth-child(2) { animation: slideRight 1.2s cubic-bezier(0.22,1,0.36,1) 0.55s forwards; }
.admissions-section.adm-visible .admissions-step:nth-child(3) { animation: slideRight 1.2s cubic-bezier(0.22,1,0.36,1) 0.80s forwards; }
.admissions-section.adm-visible .admissions-step:nth-child(4) { animation: slideRight 1.2s cubic-bezier(0.22,1,0.36,1) 1.05s forwards; }
.admissions-section.adm-visible .admissions-step:nth-child(5) { animation: slideRight 1.2s cubic-bezier(0.22,1,0.36,1) 1.30s forwards; }

/* =========================================================
   CAREER SERVICES SECTION — Animations
   ========================================================= */

.services-title,
.services-subtitle,
.services-description {
    opacity: 0;
}

.service-card,
.services-footer-cell,
.services-btn {
    opacity: 0;
}

.career-services-section.cs-visible .services-title       { animation: fadeSlideDown 1.3s cubic-bezier(0.22,1,0.36,1) 0.15s forwards; }
.career-services-section.cs-visible .services-subtitle    { animation: fadeSlideDown 1.3s cubic-bezier(0.22,1,0.36,1) 0.4s  forwards; }
.career-services-section.cs-visible .services-description { animation: fadeSlideDown 1.3s cubic-bezier(0.22,1,0.36,1) 0.65s forwards; }

.career-services-section.cs-visible .service-card:nth-child(1) { animation: flipUp3D 1.2s cubic-bezier(0.22,1,0.36,1) 0.3s  forwards; }
.career-services-section.cs-visible .service-card:nth-child(2) { animation: flipUp3D 1.2s cubic-bezier(0.22,1,0.36,1) 0.55s forwards; }
.career-services-section.cs-visible .service-card:nth-child(3) { animation: flipUp3D 1.2s cubic-bezier(0.22,1,0.36,1) 0.80s forwards; }
.career-services-section.cs-visible .service-card:nth-child(4) { animation: flipUp3D 1.2s cubic-bezier(0.22,1,0.36,1) 1.05s forwards; }
.career-services-section.cs-visible .service-card:nth-child(5) { animation: flipUp3D 1.2s cubic-bezier(0.22,1,0.36,1) 1.30s forwards; }
.career-services-section.cs-visible .services-footer-cell      { animation: blurFadeIn 1.3s ease-out 1.6s forwards; }
.career-services-section.cs-visible .services-btn              { animation: btnZoomIn  1.3s cubic-bezier(0.22,1,0.36,1) 1.9s forwards; }

/* =========================================================
   WHY CHOOSE SECTION
   ========================================================= */
.why-choose-section {
    padding: 4rem 2rem;
    background-color: #D93025;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(210, 30, 30, 0.72);
    z-index: 1;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-title {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.why-title .text-white {
    font-weight: 500;
    color: #ffffff;
}

.why-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3rem;
}

.why-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    margin-top: 3rem;
    padding-left: 32px;
}

.why-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 0 50px 50px 0;
    padding: 1.2rem 1.4rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    box-sizing: border-box;
    min-height: 110px;
    margin-left: 32px;
}

.why-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-box-icon-wrap {
    position: absolute;
    top: -28px;
    left: -28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.why-box-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.why-box-content-wrap {
    flex: 1;
    padding-top: 0.5rem;
}

.why-box-title {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.why-box-content {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 960px) {
    .why-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-boxes {
        grid-template-columns: 1fr;
    }

    .why-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .why-boxes {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem 7.5rem;
        margin-top: 3rem;
        padding-left: 0px;
    }
}

/* =========================================================
   PROGRAM HIGHLIGHT SECTION
   ========================================================= */
/* =========================================================
   PROGRAM HIGHLIGHT SECTION
   ========================================================= */
.program-highlight-section {
    padding: 5rem 2rem;
    background: #F5F5F5;
}

.ph-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ph-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ph-title {
    font-size: 36px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 0;
    line-height: 1.2;
}

.ph-title-thin {
    font-weight: 400;
    color: #444444;
}

.ph-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* ── Card ── */
.ph-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.ph-card:hover .ph-card-body {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* ── Image wrapper ── */
.ph-card-image-wrap {
    width: 100%;
    height: 260px;
    flex-shrink: 0;
}

.ph-card-img {
    width: 260px;
    height: 370px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.ph-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: #d0d8e4;
    border-radius: 0;
}

/* ── Card body — overlaps bottom half of image ── */
.ph-card-body {
    position: relative;
    background: #ffffff;
    margin-top: -81px;
    margin-left: 34px;
    border-radius: 16px 16px 16px 0;
    padding: 3.5rem 1.25rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

/* ── Red circular badge — right side, 20px from right ── */
.ph-card-badge {
    position: absolute;
    top: -28px;
    right: 20px;
    left: auto;
    transform: none;
    width: 56px;
    height: 56px;
    background: #EE253A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    z-index: 3;
    flex-shrink: 0;
}

.ph-card-badge-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.ph-card-title {
    font-size: 17px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.ph-card-title a {
    color: inherit;
    text-decoration: none;
}

.ph-card-title a:hover {
    color: #EE253A;
}

.ph-card-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
    margin: 0;
}

/* ── CTA button ── */
.ph-cta {
    text-align: center;
}

.ph-btn {
    display: inline-block;
    background: #084FA7;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.4px;
    border-bottom-left-radius: 0px;
}

.ph-btn:hover {
    background: #EE253A;
    transform: translateY(-2px);
    color: #ffffff;
}

/* ── Responsive ── */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .ph-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .ph-card-image-wrap {
        height: 280px;
    }

    .ph-card-img {
        width: 100%;
        height: 100%;
    }

    .ph-card-body {
        margin-top: -81px;
        margin-left: 24px;
    }
}

/* Small tablet: 2 columns, compact */
@media (max-width: 768px) {
    .program-highlight-section {
        padding: 3.5rem 1.5rem;
    }

    .ph-title {
        font-size: 28px;
    }

    .ph-header {
        margin-bottom: 2.5rem;
    }

    .ph-card-image-wrap {
        height: 240px;
    }

    .ph-card-body {
        margin-top: -70px;
        margin-left: 20px;
        padding: 3rem 1rem 1.5rem;
    }
}

/* Mobile: 1 column */
@media (max-width: 560px) {
    .ph-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-highlight-section {
        padding: 3rem 1rem;
    }

    .ph-title {
        font-size: 22px;
    }

    .ph-header {
        margin-bottom: 2rem;
    }

    .ph-card-image-wrap {
        height: 220px;
    }

    .ph-card-img {
        width: 100%;
        height: 100%;
    }

    .ph-card-body {
        margin-top: -60px;
        margin-left: 15px;
        padding: 2.75rem 1rem 1.25rem;
    }

    .ph-card-badge {
        right: 15px;
        width: 48px;
        height: 48px;
        top: -24px;
    }

    .ph-card-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ph-card-img {
        width: 350px;
        height: 329px;
        object-fit: fill;
        display: block;
        border-radius: 0;
    }
}

/* =========================================================
   ADMISSIONS SECTION
   ========================================================= */
.admissions-section {
    padding: 4rem 2rem;
    background: #ffffff;
    margin: 80px 0;
}

.admissions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.admissions-left {
    position: relative;
}

.admissions-header {
    position: relative;
    z-index: 10;
    margin-bottom: 1rem;
}

.admissions-title {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    padding: 0.5rem 1rem;
    display: inline-block;
    background: #ffffff;
    margin-bottom: 0.5rem;
}

.admissions-title .text-bold {
    font-weight: 700;
}

.admissions-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.admissions-content {
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.admissions-image {
    max-width: 94%;
    height: auto;
    margin: 50px 0px;
    position: relative;
    z-index: 1;
}

.admissions-note {
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.admissions-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #084FA7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border-bottom-left-radius: 0px;
}

.admissions-btn:hover {
    background-color: #063a7d;
    text-decoration: none;
    color: #ffffff;
}

.admissions-right {
    position: relative;
}

.admissions-steps-wrapper {
    background: #F5F5F5;
    border-radius: 20px;
    padding: 4rem 2rem 2rem;
    margin-top: -40px;
}

.admissions-step {
    margin-bottom: 1.5rem;
}

.admissions-step:last-child {
    margin-bottom: 0;
}

.step-title {
    background-color: #084FA7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    margin: 0 0 1rem 0;
    border-radius: 50px 50px 59px 0px;
    width: 55%;
    margin-left: -16%;
    z-index: 10;
    position: relative;
}

.step-content {
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    padding-left: 1rem;
}

.step-content p {
    margin: 0 0 0.5rem 0;
}

.step-content strong {
    color: #EE253A;
    font-weight: 600;
}

@media (max-width: 960px) {
    .admissions-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .admissions-title {
        font-size: 26px;
    }

    .admissions-subtitle {
        font-size: 18px;
    }

    .admissions-steps-wrapper {
        margin-top: 0;
    }

    .step-title {
        background-color: #084FA7;
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        padding: 0.85rem 1.5rem;
        margin: 0 0 1rem 0;
        border-radius: 50px 50px 59px 0px;
        width: 55%;
        margin-left: -5%;
        z-index: 10;
        position: relative;
    }

    .vp-prog-info-box {
        position: absolute;
        bottom: -26px;
        left: 138px;
        right: -28px;
        background: #1565C0;
        padding: 1rem 1.25rem;
        border-radius: 8px 8px 8px 0px;
        overflow: visible;
    }

}

@media (max-width: 640px) {
    .admissions-section {
        padding: 4rem 2rem;
        background: #ffffff;
        margin: 0px 0;
    }

    .admissions-title {
        font-size: 22px;
    }

    .step-title {
        background-color: #084FA7;
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        padding: 0.85rem 1.5rem;
        margin: 0 0 1rem 0;
        border-radius: 50px 50px 59px 0px;
        width: 95%;
        margin-left: -5%;
        z-index: 10;
        position: relative;
    }

    .admissions-steps-wrapper {
        padding: 3rem 1.5rem 1.5rem;
    }

    .admissions-left {
        text-align: center;
    }

    .admissions-btn {
        display: block;
        text-align: center;
    }

    .hero-about-section .about-title {
        padding-top: 15px;
    }

    .site-footer {
        background-image: url(http://localhost/akshar-academy/wp-content/uploads/2026/02/Group-35.png);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }

    .vp-prog-item {
        display: grid;
        gap: 4.5rem;
        align-items: start;
        margin-bottom: 4rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid #e8e8e8;
    }

    .vp-prog-info-box {
        position: absolute;
        bottom: -26px;
        left: 18px;
        right: -29px;
        background: #1565C0;
        padding: 1rem 1.25rem;
        border-radius: 8px 8px 8px 0px;
        overflow: visible;
    }

    .hm-ac-row {
        display: grid;
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem 2rem;
        gap: 4rem;
        align-items: center;
    }

    .nvp-prog-item {
        display: grid;
        gap: 2rem;
        align-items: start;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .nvp-prog-caption-left {
        background: #1565C0;
        padding: 0.9rem 1.25rem;
        border-radius: 8px 8px 8px 0;
        width: 87%;
        margin-left: 19%;
        margin-top: -11%;
        z-index: 9;
        position: relative;
    }

    .nvp-prog-caption-right {
        background: #1565C0;
        padding: 0.9rem 1.25rem;
        border-radius: 8px 8px 0px 8px;
        width: 90%;
        margin-left: -12px;
        margin-top: -10%;
        z-index: 9;
        position: relative;
    }

    .nvp-prog-caption-left {
        background: #1565C0;
        padding: 0.9rem 1.25rem;
        border-radius: 8px 8px 8px 0;
        width: 93%;
        margin-left: 12%;
        margin-top: -11%;
        z-index: 9;
        position: relative;
    }

    .student-exp-card {
        background: #ffffff;
        border-radius: 0 30px 30px 30px;
        padding: 1.75rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 1.25rem;
        box-shadow: 0 4px 20px rgba(8, 79, 167, 0.07);
        border: 1px solid rgba(8, 79, 167, 0.07);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        justify-content: center;
        flex-direction: column;
    }

    .service-image {
        width: 100% !important;
        height: auto;
        object-fit: cover;
        display: block;
        border-radius: 50px 50px 50px 0;
        margin-bottom: 0;
    }

    .service-title {
        position: absolute;
        bottom: -1rem;
        left: 1rem !important;
        background-color: #084FA7;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
        padding: 0.6rem 1.25rem;
        border-radius: 50px;
        border-bottom-left-radius: 0px;
        display: inline-block;
        margin: 0;
        max-width: calc(100% - 2rem);
        width: 100% !important;
        z-index: 10 !important;
    }
}

/* =========================================================
   CAREER SERVICES SECTION
   ========================================================= */
.career-services-section {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: visible;
}

.cs-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    max-width: 251px;
    top: 34%;
    transform: translateY(-50%);
}

.cs-deco-left  { left: 0; }
.cs-deco-right { right: 0; top: 73% !important; transform: none; z-index: 99999999; display: none; }

.career-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    font-size: 36px;
    font-weight: 500;
    color: #084FA7;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.services-description {
    font-size: 16px;
    color: #333333;
    margin-bottom: 3rem;
}

/* Transparent on desktop — cards fall directly into the grid */
.cs-cards-wrap {
    display: contents;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    grid-column: span 2;
    text-align: left;
}

/* Row 2: cards 4 & 5 centered (offset by 1 unit each side) */
.service-card:nth-child(4) {
    grid-column: 2 / 4;
}

.service-card:nth-child(5) {
    grid-column: 4 / 6;
}

/* Footer cell: always full width on its own row */
.services-footer-cell {
    grid-column: 1 / -1 !important;
}

.service-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    margin-bottom: 2rem;
}

.service-image {
    width: 100%;
    height: 275px;
    display: block;
    border-radius: 40px 40px 40px 0;
    margin-bottom: 0;
    object-fit: contain;
}

.service-title {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    background-color: #070707;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 1rem 1.25rem;
    border-radius: 0px;
    border-bottom-right-radius: 40px;
    display: inline-block;
    margin: 0;
    width: 100%;
    z-index: 10 !important;
    text-align: center;
}

.service-description {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    text-align: left;
    padding: 0 0.25rem;
}

.services-footer-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    gap: 1.5rem;
}

.services-footer-text {
    font-size: 16px;
    color: #333333;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.services-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #084FA7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-btn:hover {
    background-color: #063a7d;
    text-decoration: none;
    color: #ffffff;
}

@media (max-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        grid-column: span 1;
    }

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .services-title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: 1;
    }

    .services-title {
        font-size: 24px;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .career-services-section {
        padding: 3rem 1rem;
    }

    /* ── Mobile slider ── */
    .cs-cards-wrap {
        display: block;
        grid-column: 1 / -1;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .cs-slider-track {
        display: flex;
        will-change: transform;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .cs-slide {
        flex: 0 0 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 0 0.25rem;
    }

    .cs-slide .service-card {
        width: 100%;
    }

    .cs-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 1rem 0 0.25rem;
    }

    .cs-dot {
        display: inline-block;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(8, 79, 167, 0.25);
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .cs-dot.active {
        background: #084FA7;
        transform: scale(1.4);
    }

    .service-title {
        bottom: 0rem !important;
        left: 0px !important;
        color: #ffffff;
        max-width: 100%;
        width: 100% !important;
    }
}

/* =========================================================
   STUDENT EXPERIENCE SECTION — Animations
   ========================================================= */
.student-exp-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1), transform 1.2s cubic-bezier(0.22,1,0.36,1);
}

.student-exp-card {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1), transform 1.1s cubic-bezier(0.22,1,0.36,1);
}

.se-visible .student-exp-left {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

.se-visible .student-exp-card:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.se-visible .student-exp-card:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.45s;
}

.se-visible .student-exp-card:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.7s;
}

/* =========================================================
   STUDENT EXPERIENCE SECTION
   ========================================================= */
.student-exp-section {
    padding: 0;
    background: transparent;
    position: relative;
    overflow: visible;
}

.se-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    max-width: 214px;
    top: 50%;
    transform: translateY(-50%);
}

.se-deco-left  { left: 0; }
.se-deco-right { right: 0; top: 0; transform: none; }

.student-exp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 520px;
}

/* ── Left side — blue background + optional bg image ── */
.student-exp-left {
    background: linear-gradient(145deg, #084FA7 0%, #0a3d8f 60%, #062d6e 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}


.student-exp-label {
    display: inline;
    width: fit-content;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 0.35rem 1.1rem;
    border-radius: 4px 4px 4px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.25rem;
}

.student-exp-title {
    font-size: 34px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.student-exp-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.student-exp-sub {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.student-exp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.student-exp-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.student-exp-bullet {
    width: 7px;
    height: 7px;
    background: #ffffff;
    border-radius: 0;
    flex-shrink: 0;
    display: inline-block;
}

.student-exp-closing {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin: 0;
}

/* ── Right side — #F5F5F5 background ── */
.student-exp-right {
    background: #F5F5F5;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

/* ── Card ── */
.student-exp-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.student-exp-card-icon {
    position: relative;
    width: 90px;
    height: 90px;
    background: #EE253A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.student-exp-card:hover .student-exp-card-icon {
    transform: scale(1.06);
}

.student-exp-card-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    background: #ffffff;
    color: #EE253A;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.student-exp-card-content {
    flex: 1;
    padding-top: 0.5rem;
}

.student-exp-card-title {
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 0.5rem;
}

.student-exp-card-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.75;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .student-exp-container {
        grid-template-columns: 1fr;
    }

    .student-exp-left {
        padding: 3.5rem 2rem;
    }

    .student-exp-right {
        padding: 3rem 2rem;
    }

    .student-exp-title {
        font-size: 28px;
    }
}

@media (max-width: 560px) {
    .student-exp-left {
        padding: 3rem 1.5rem;
    }

    .student-exp-right {
        padding: 2.5rem 1.5rem;
    }

    .student-exp-card-icon {
        width: 70px;
        height: 70px;
    }
}

/* =========================================================
   COMPTIA PAGE — FAQ SECTION
   ========================================================= */
.comptia-faq-section {
    padding: 5rem 2rem;
    background: #ffffff;
}
.comptia-faq-container {
    max-width: 1100px;
    margin: 0 auto;
}
.comptia-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}
.comptia-faq-title {
    font-size: 32px;
    font-weight: 500;
    color: #111111;
}
.comptia-faq-title-red {
    color: #EE253A;
}
.comptia-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}
.comptia-faq-col {
    display: flex;
    flex-direction: column;
}
.comptia-faq-section .faq-answer ul {
    padding-left: 1.25rem;
    margin: 0.5rem 0;
}
.comptia-faq-section .faq-answer ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444444;
    list-style: disc;
}
@media (max-width: 768px) {
    .comptia-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ACCA PAGE — FAQ SECTION
   ========================================================= */
.acca-faq-section {
    padding: 5rem 2rem;
    background: #ffffff;
}
.acca-faq-container {
    max-width: 860px;
    margin: 0 auto;
}
.acca-faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.acca-faq-title {
    font-size: 32px;
    font-weight: 500;
    color: #111111;
}
.acca-faq-title-red {
    color: #EE253A;
    font-weight: 400;
}
.acca-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.acca-faq-item {
    border: 1.5px solid #EE253A;
    border-radius: 50px;
    overflow: hidden;
}
.acca-faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 1rem;
}
.acca-faq-question-text {
    font-size: 15px;
    font-weight: 500;
    color: #111111;
    text-align: left;
    line-height: 1.4;
}
.acca-faq-icon {
    font-size: 22px;
    font-weight: 400;
    color: #111111;
    flex-shrink: 0;
    line-height: 1;
}
.acca-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.acca-faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 14px;
    color: #444444;
    line-height: 1.7;
    margin: 0;
}
.acca-faq-item--open .acca-faq-question {
    border-bottom: 1px solid rgba(238, 37, 58, 0.15);
}

/* =========================================================
   ISO TRAINING COURSES PAGE — FAQ SECTION
   ========================================================= */
.iso-faq-section .acca-faq-answer ul {
    margin: 0.5rem 0 0 1.25rem;
    padding: 0;
}
.iso-faq-section .acca-faq-answer ul li {
    margin-bottom: 0.4rem;
    color: #444444;
    font-size: 0.95rem;
}

/* =========================================================
   ISC2 CERTIFICATION PAGE — FAQ SECTION
   Uses acca-faq-* classes — no additional styles needed.
   ========================================================= */

/* =========================================================
   LANGUAGE PROFICIENCY PAGE — FAQ SECTION
   ========================================================= */
.lp-faq-section {
    padding: 5rem 2rem;
    background: #ffffff;
}
.lp-faq-container {
    max-width: 1100px;
    margin: 0 auto;
}
.lp-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}
.lp-faq-title {
    font-size: 32px;
    font-weight: 500;
    color: #111111;
}
.lp-faq-title-red {
    color: #EE253A;
}
.lp-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}
.lp-faq-col {
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) {
    .lp-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   MAKEUP & BEAUTY PAGE — FAQ SECTION
   Uses acca-faq-* classes — no additional styles needed.
   ========================================================= */

/* =========================================================
   FACIAL & WAXING PAGE — FAQ SECTION
   Uses acca-faq-* classes — no additional styles needed.
   ========================================================= */

/* =========================================================
   RED CROSS FIRST AID PAGE — FAQ SECTION
   Uses acca-faq-* classes — no additional styles needed.
   ========================================================= */

/* =========================================================
   SECURITY SERVICES PAGE — FAQ SECTION
   Uses acca-faq-* classes — no additional styles needed.
   ========================================================= */

/* =========================================================
   HOSPITALITY PAGE — FAQ SECTION
   ========================================================= */
.hm-faq-section {
    padding: 5rem 2rem;
    background: #ffffff;
}
.hm-faq-container {
    max-width: 860px;
    margin: 0 auto;
}
.hm-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}
.hm-faq-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #111111;
}
.hm-faq-title-red {
    color: #EE253A;
}
.hm-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}
.hm-faq-col {
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) {
    .hm-faq-grid {
        grid-template-columns: 1fr;
    }
}
.hm-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hm-faq-section .faq-answer ul {
    padding-left: 1.25rem;
    margin: 0.5rem 0;
}
.hm-faq-section .faq-answer ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444444;
    list-style: disc;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-section .faq-header {
    text-align: center;
    margin-bottom: 3rem;
    background: transparent;
}

.faq-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.faq-section .faq-header:hover {
    background: #ffffff;
}

.faq-title-red {
    color: #EE253A;
}

.faq-title-blue {
    color: #084FA7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border: 1.5px solid #EE253A;
    border-radius: 0 14px 14px 14px;
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}

.faq-item--open {
    box-shadow: 0 6px 24px rgba(238, 37, 58, 0.1);
}

.faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 1.2rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    min-height: 70px;
}

.faq-question:hover {
    background: #ffffff;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 500;
    color: #111111;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 400;
    color: #111111;
    line-height: 1;
    width: 28px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-item--open .faq-icon {
    transform: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 1.6rem 1.4rem;
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin: 0;
    border-top: 1px solid rgba(238, 37, 58, 0.12);
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 26px;
    }

    .faq-question-text {
        font-size: 15px;
    }
}

/* =========================================================
   TESTIMONIAL SECTION — Animations
   ========================================================= */
.testi-header { opacity: 0; transform: translateY(-30px); transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1), transform 1.2s cubic-bezier(0.22,1,0.36,1); }
.testi-center { opacity: 0; transform: scale(0.88); transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1) 0.3s, transform 1.1s cubic-bezier(0.22,1,0.36,1) 0.3s; }
.testi-float-lt, .testi-float-lm, .testi-float-lb { opacity: 0; transform: translateX(-40px); transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.22,1,0.36,1); }
.testi-float-rt, .testi-float-rm, .testi-float-rb { opacity: 0; transform: translateX(40px);  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.22,1,0.36,1); }
.testi-ring, .testi-bubble       { opacity: 0; transition: opacity 1.4s ease; }

.testi-visible .testi-header    { opacity: 1; transform: translateY(0);  transition-delay: 0s; }
.testi-visible .testi-center    { opacity: 1; transform: scale(1);        transition-delay: 0.25s; }
.testi-visible .testi-float-lt  { opacity: 1; transform: translateX(0);   transition-delay: 0.10s; }
.testi-visible .testi-float-lm  { opacity: 1; transform: translateX(0);   transition-delay: 0.25s; }
.testi-visible .testi-float-lb  { opacity: 1; transform: translateX(0);   transition-delay: 0.40s; }
.testi-visible .testi-float-rt  { opacity: 1; transform: translateX(0);   transition-delay: 0.15s; }
.testi-visible .testi-float-rm  { opacity: 1; transform: translateX(0);   transition-delay: 0.30s; }
.testi-visible .testi-float-rb  { opacity: 1; transform: translateX(0);   transition-delay: 0.45s; }
.testi-visible .testi-ring,
.testi-visible .testi-bubble    { opacity: 0.7; transition-delay: 0.5s; }

/* =========================================================
   FAQ SECTION — Animations
   ========================================================= */
.faq-section .faq-header  { opacity: 0; transform: translateY(-24px); transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1), transform 1.2s cubic-bezier(0.22,1,0.36,1); }
.faq-section .faq-item    { opacity: 0; transform: translateY(30px);  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }

.faq-visible .faq-header  { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.faq-visible .faq-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.faq-visible .faq-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.faq-visible .faq-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.41s; }
.faq-visible .faq-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.54s; }
.faq-visible .faq-item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.67s; }
.faq-visible .faq-item:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.80s; }

/* =========================================================
   FINAL CTA SECTION — Animations
   ========================================================= */
.fcta-left  { opacity: 0; transform: translateX(-60px); transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1), transform 1.2s cubic-bezier(0.22,1,0.36,1); }
.fcta-right { opacity: 0; transform: translateX(60px);  transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1) 0.2s, transform 1.2s cubic-bezier(0.22,1,0.36,1) 0.2s; }

.fcta-visible .fcta-left  { opacity: 1; transform: translateX(0); }
.fcta-visible .fcta-right { opacity: 1; transform: translateX(0); }

/* =========================================================
   TESTIMONIAL SECTION
   ========================================================= */
.testi-section {
    padding: 5rem 2rem 4rem;
    background: #f5f5f5;
    text-align: center;
}

.testi-header {
    margin-bottom: 2rem;
}

.testi-label {
    font-size: 18px;
    font-weight: 500;
    color: #EE253A;
    margin: 0 0 6px;
}

.testi-title {
    font-size: 34px;
    font-weight: 500;
    color: #084FA7;
    letter-spacing: 1px;
    margin: 0;
}

/* Stage */
.testi-stage {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative rings */
.testi-ring {
    position: absolute;
    pointer-events: none;
    display: block;
}

.testi-ring svg { display: block; }

.testi-ring-tl { left: 2%;  top: 2%;   width: 74px; }
.testi-ring-tr { right: 18%; top: 0%;  width: 58px; }
.testi-ring-bl { left: 24%; bottom: 4%; width: 52px; }

/* Decorative chat bubbles */
.testi-bubble {
    position: absolute;
    pointer-events: none;
    display: block;
    opacity: 0.7;
}

.testi-bubble svg { display: block; }

.testi-bubble-1 { left: 13%;  top: 5%;   width: 36px; }
.testi-bubble-2 { left: 4%;   bottom: 12%; width: 32px; }
.testi-bubble-3 { right: 4%;  top: 5%;   width: 36px; }
.testi-bubble-4 { right: 10%; bottom: 12%; width: 30px; }

/* Floating side photos */
.testi-float {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.testi-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b3973, #1a5caa);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 50%;
    user-select: none;
}

.testi-avatar--main {
    font-size: 2.4rem;
}

.testi-float-lt .testi-avatar,
.testi-float-rb .testi-avatar {
    background: linear-gradient(135deg, #c8001f, #e8003d);
}

.testi-float-lt { width: 82px;  height: 82px;  left: 7%;  top: 8%;  }
.testi-float-lm { width: 90px;  height: 90px;  left: 3%;  top: 40%; }
.testi-float-lb { width: 100px; height: 100px; left: 9%;  top: 68%; }
.testi-float-rt { width: 100px; height: 100px; right: 7%; top: 12%; border: 3px solid #EE253A; }
.testi-float-rm { width: 88px;  height: 88px;  right: 3%; top: 44%; }
.testi-float-rb { width: 104px; height: 104px; right: 6%; top: 70%; }

/* Center active content */
.testi-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 440px;
    position: relative;
    z-index: 2;
}

.testi-main-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.testi-main-photo .testi-avatar {
    border-radius: 50%;
}

.testi-quote {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.testi-name {
    font-size: 15px;
    font-weight: 500;
    color: #EE253A;
    margin: 0;
}

.testi-nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

.testi-prev,
.testi-next {
    background: none;
    border: none;
    font-size: 22px;
    color: #EE253A;
}

.testi-prev {
    color: #084FA7;
    cursor: pointer;
    padding: 4px 8px;
    transition: transform 0.2s ease;
    line-height: 1;
}

.testi-prev:hover { transform: translateX(-3px); }
.testi-next:hover { transform: translateX(3px); }

@media (max-width: 900px) {
    .testi-float { display: none; }
    .testi-ring, .testi-bubble { display: none; }
    .testi-stage { min-height: unset; padding: 1rem 0; }
}

/* =========================================================
   FINAL CTA SECTION
   ========================================================= */
.fcta-section {
    background: #ffffff;
    overflow: hidden;
}

.fcta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "left  right"
        "btns  right";
    align-items: start;
    min-height: 420px;
}

.fcta-left {
    grid-area: left;
    padding: 4rem 3rem 1rem 2rem;
}

.fcta-buttons {
    grid-area: btns;
    padding: 0 3rem 4rem 2rem;
}

.fcta-label {
    display: inline-block;
    border: 1.5px solid #e41d34;
    color: #555555;
    font-size: 13px;
    font-weight: 400;
    padding: 0.35rem 1rem;
    border-radius: 4px 4px 4px 0;
    margin-bottom: 1.2rem;
}

.fcta-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.fcta-title-red {
    color: #EE253A;
    font-weight: 400;
}

.fcta-title-blk {
    color: #111111;
    font-weight: 500;
}

.fcta-subtitle {
    font-size: 15px;
    color: #444444;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.fcta-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 0.65rem;
}

.fcta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.fcta-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-bottom-left-radius: 0px;
}

.fcta-btn--red {
    background: #EE253A;
    color: #ffffff;
}

.fcta-btn--red:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    color: #ffffff;
}

.fcta-btn--blue {
    background: #084FA7;
    color: #ffffff;
}

.fcta-btn--blue:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    color: #ffffff;
}

.fcta-right {
    grid-area: right;
    position: relative;
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.fcta-img {
    display: block;
    max-height: 480px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.fcta-logo {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 140px;
    z-index: 3;
}

@media (max-width: 900px) {
    .fcta-container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "left  left"
            "btns  right";
        align-items: end;
    }

    .fcta-left {
        padding: 3rem 1.5rem 0rem;
    }

    .fcta-right {
        min-height: auto;
        height: 280px;
        justify-content: flex-end;
        align-items: flex-end;
        overflow: visible;
    }

    .fcta-img {
        height: 300px;
        max-height: 300px;
        width: 100%;
        object-fit: contain;
        object-position: bottom right;
    }

    .fcta-logo {
        left: 10%;
        top: 20%;
        transform: none;
        max-width: 90px;
    }

    .fcta-buttons {
        padding: 1.5rem 1rem 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-self: center;
        background: #ffffff;
        border-radius: 16px;
    }

    .fcta-btn {
        width: 100%;
        text-align: center;
    }

    .fcta-title {
        font-size: 32px;
    }
}


/* =====================================================
   WHY CHOOSE AKSHARBRIDGE ACADEMY — Section
   ===================================================== */
.about-wc-section {
    padding: 1rem 2rem 4rem;
    background: #ffffff;
}

.about-wc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-wc-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-wc-title {
    font-size: 32px;
    font-weight: 500;
    color: #0d1b2a;
    line-height: 1.2;
    margin: 0;
}

.about-wc-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.about-wc-bullets li {
    font-size: 14px;
    color: #333;
    line-height: 1.75;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-wc-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000000;
}

.about-wc-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-wc-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .about-wc-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-wc-title {
        font-size: 1.5rem;
    }
}

/* =====================================================
   STUDENT POLICIES AND COMPLIANCE — Section
   ===================================================== */
.about-sp-section {
    background: #084FA7;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-sp-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

.about-sp-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-sp-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-sp-block-title {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.about-sp-block-content {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
}

.about-sp-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.4);
    margin: 0;
}

.about-sp-right {
    flex-shrink: 0;
    width: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-sp-right-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom;
}

@media (max-width: 900px) {
    .about-sp-right {
        width: 260px;
    }
}

@media (max-width: 650px) {
    .about-sp-inner {
        flex-direction: column;
    }
    .about-sp-right {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .about-sp-block-title {
        font-size: 1.3rem;
    }
    .about-sp-right-img {
        width: 100%;
        height: 302px;
        display: block;
        object-fit: contain;
        object-position: bottom;
    }
}

/* =========================================================
   ABOUT — COMMITMENT TO STUDENT SUCCESS SECTION
   ========================================================= */
.about-com-section {
    background: #ffffff;
    padding: 5rem 2rem;
}
.about-com-container {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.about-com-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #084FA7;
    margin-bottom: 1.5rem;
}
.about-com-para {
    font-size: 1rem;
    font-weight: 400;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-com-para:last-child {
    margin-bottom: 0;
}

/* =========================================================
   A+ CERTIFICATION — LEARN SECTION
   ========================================================= */
.aplus-learn-section {
    padding: 5rem 0 5rem;
    background: #ffffff;
}

.aplus-learn-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 0 1.25rem;
}

.aplus-learn-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.aplus-learn-row:nth-child(even) {
    flex-direction: row-reverse;
}

.aplus-learn-img-col {
    flex: 1;
}

.aplus-learn-content-col {
    flex: 1.2;
}

.aplus-learn-img-wrap {
    position: relative;
    padding-bottom: 20px;
}

.aplus-learn-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 17px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.aplus-learn-img-wrap:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.aplus-learn-img-label {
    position: absolute;
    bottom: 20px;
    left: 21%;
    right: 0px;
    background: #084FA7;
    color: #fff;
    padding: 12px 8px;
    border-radius: 11px 0px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    z-index: 10;
}

.aplus-learn-row:nth-child(even) .aplus-learn-img-label {
    left: 0px;
    right: 20%;
    background: #EE253A;
}

.aplus-learn-intro {
    font-size: 15px;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.aplus-learn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aplus-learn-list li {
    position: relative;
    padding-left: 1.75rem;
}

.aplus-learn-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000;
}

.aplus-learn-bullet-title {
    display: block;
    font-weight: 500;
    color: #084FA7;
    margin-bottom: 0.2rem;
    font-size: 15px;
}

.aplus-learn-bullet-desc {
    display: block;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

@media (max-width: 991px) {

    .aplus-learn-row,
    .aplus-learn-row:nth-child(even) {
        flex-direction: column;
        gap: 4rem;
    }

    .aplus-learn-img-label {
        left: 5%;
        right: 5%;
        bottom: -20px;
        font-size: 18px;
        padding: 1.2rem 1.5rem;
    }
}

/* =========================================================
   A+ CERTIFICATION — ENROLL & OUTCOME SECTION
   ========================================================= */
.aplus-enroll-section {
    padding: 2rem 0 6rem;
    background: #ffffff;
}

.aplus-enroll-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.aplus-enroll-row {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.aplus-enroll-img-col {
    flex: 1;
}

.aplus-enroll-content-col {
    flex: 1.2;
}

.aplus-enroll-img-wrap {
    position: relative;
    padding-bottom: 20px;
}

.aplus-enroll-img-wrap img,
.aplus-placeholder-img {
    width: 100%;
    height: auto;
    border-radius: 17px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.aplus-enroll-img-wrap:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.aplus-enroll-img-label {
    position: absolute;
    bottom: 20px;
    left: 21%;
    right: 0px;
    background: #084FA7;
    color: #fff;
    padding: 12px 8px;
    border-radius: 11px 0px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    z-index: 10;
}

.aplus-enroll-intro {
    font-size: 15px;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.aplus-enroll-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aplus-enroll-list li {
    position: relative;
    padding-left: 1.75rem;
}

.aplus-enroll-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000;
}

.aplus-enroll-bullet-title {
    display: block;
    font-weight: 500;
    color: #084FA7;
    margin-bottom: 0.2rem;
    font-size: 15px;
}

.aplus-enroll-bullet-desc {
    display: block;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

.aplus-enroll-roles {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.aplus-enroll-roles li {
    padding-left: 0;
    font-size: 14px;
    color: #333;
}

.aplus-enroll-roles li::before {
    display: none;
}

/* ---- Outcome ---- */
.aplus-outcome-wrap {
    margin-top: 2rem;
}

.aplus-outcome-title {
    font-size: 24px;
    color: #084FA7;
    font-weight: 600;
    margin-bottom: 1rem;
}

.aplus-outcome-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .aplus-enroll-row {
        flex-direction: column;
        gap: 3rem;
    }

    .aplus-enroll-img-label {
        left: 5%;
        right: 5%;
        bottom: -20px;
    }
}

/* =========================================================
   A+ CERTIFICATION — CTA SECTION
   ========================================================= */
.aplus-cta-section {
    background: #d42b40;
    min-height: 160px;
}

.aplus-cta-col--single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 3.5rem;
    gap: 1.5rem;
    text-align: center;
}

.aplus-cta-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.aplus-cta-desc {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0 0 0.5rem;
    max-width: 700px;
}

.aplus-cta-desc:last-child {
    margin-bottom: 0;
}

.aplus-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.aplus-cta-btn {
    display: inline-block;
    background: #EE253A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    width: 201px;
    text-align: center;
}

.aplus-cta-btn:hover {
    background: #a01226;
    color: #ffffff;
}

.aplus-cta-btn--outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.aplus-cta-btn--outline:hover {
    background: #ffffff;
    color: #d42b40;
}

@media (max-width: 640px) {
    .aplus-cta-col--single {
        padding: 2rem 1.5rem;
    }

    .aplus-cta-btn,
    .aplus-cta-btn--outline {
        width: 100%;
    }
}

/* =========================================================
   NETWORK+ CERTIFICATION — HERO SECTION
   ========================================================= */
.network-hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.network-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.network-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 0.5rem 2rem 2rem;
    text-align: center;
}

.network-hero-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.network-hero-title {
    font-size: 2rem;
    font-weight: 500;
    color: #0d1b2a;
    line-height: 1.25;
    margin: 0;
    padding-top: 30px;
}

.network-hero-badge {
    height: 72px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.network-hero-desc {
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.85;
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
}

.network-hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 75%;
    margin: 0 auto;
    margin-top: -60px;
    z-index: 10;
    position: relative;
}

.network-hero-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: default;
}
.network-hero-feat:hover {
    filter: brightness(1.25);
    transform: translateY(-4px);
}

.network-hero-feat:last-child {
    border-right: none;
}

.network-hero-feat:nth-child(1) {
    background: #084FA7;
}

.network-hero-feat:nth-child(2) {
    background: #0855B6;
}

.network-hero-feat:nth-child(3) {
    background: #125DBA;
}

.network-hero-feat:nth-child(4) {
    background: #1F67C0;
}

.network-hero-feat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-hero-feat-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.network-hero-feat-icon svg {
    width: 44px;
    height: 44px;
}

.network-hero-feat-title {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .network-hero-section {
        min-height: 50vh;
    }

    .network-hero-features {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        margin-top: 0;
    }

    .network-hero-title {
        font-size: 1.6rem;
    }

    .network-hero-content {
        padding: 4rem 1.5rem 2rem;
    }

    .network-hero-badge {
        height: 56px;
    }
}

@media (max-width: 480px) {
    .network-hero-section {
        min-height: auto;
        padding-bottom: 0;
    }

    .network-hero-content {
        padding: 5rem 1.25rem 1.5rem;
    }

    .network-hero-title {
        font-size: 1.3rem;
        padding-top: 0;
    }

    .network-hero-title-wrap {
        flex-direction: column;
        gap: 0.75rem;
    }

    .network-hero-badge {
        height: 48px;
    }

    .network-hero-desc {
        font-size: 13px;
    }

    .network-hero-features {
        display: grid;
        grid-template-columns: 1fr;
        width: 75%;
        margin-top: 0;
    }

    .network-hero-feat {
        padding: 1.25rem 0.75rem;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .network-hero-feat-title {
        font-size: 15px;
        text-align: center;
        white-space: nowrap;
    }

    .network-hero-feat-icon,
    .network-hero-feat-icon img,
    .network-hero-feat-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* =========================================================
   NETWORK+ CERTIFICATION — LEARN SECTION
   ========================================================= */
.network-learn-section {
    padding: 5rem 0 5rem;
    background: #ffffff;
}

.network-learn-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 0 1.25rem;
}

.network-learn-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.network-learn-row:nth-child(even) {
    flex-direction: row-reverse;
}

.network-learn-img-col {
    flex: 1;
}

.network-learn-content-col {
    flex: 1.2;
}

.network-learn-img-wrap {
    position: relative;
    padding-bottom: 20px;
}

.network-learn-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 17px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.network-learn-img-wrap:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.network-learn-img-label {
    position: absolute;
    bottom: 20px;
    left: 21%;
    right: 0px;
    background: #084FA7;
    color: #fff;
    padding: 12px 8px;
    border-radius: 11px 0px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    z-index: 10;
}

.network-learn-row:nth-child(even) .network-learn-img-label {
    left: 0px;
    right: 20%;
    background: #EE253A;
}

.network-learn-intro {
    font-size: 15px;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.network-learn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.network-learn-list li {
    position: relative;
    padding-left: 1.75rem;
}

.network-learn-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000;
}

.network-learn-bullet-title {
    display: block;
    font-weight: 500;
    color: #084FA7;
    margin-bottom: 0.2rem;
    font-size: 15px;
}

.network-learn-bullet-desc {
    display: block;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

@media (max-width: 991px) {

    .network-learn-row,
    .network-learn-row:nth-child(even) {
        flex-direction: column;
        gap: 4rem;
    }

    .network-learn-img-label {
        left: 5%;
        right: 5%;
        bottom: -20px;
        font-size: 18px;
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .network-learn-section {
        margin-top: 20px;
    }
}

/* =========================================================
   NETWORK+ CERTIFICATION — ENROLL & OUTCOME SECTION
   ========================================================= */
.network-enroll-section {
    padding: 2rem 0 6rem;
    background: #ffffff;
}

.network-enroll-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.network-enroll-row {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.network-enroll-img-col {
    flex: 1;
}

.network-enroll-content-col {
    flex: 1.2;
}

.network-enroll-img-wrap {
    position: relative;
    padding-bottom: 20px;
}

.network-enroll-img-wrap img,
.network-placeholder-img {
    width: 100%;
    height: auto;
    border-radius: 17px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.network-enroll-img-wrap:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.network-enroll-img-label {
    position: absolute;
    bottom: 20px;
    left: 21%;
    right: 0px;
    background: #084FA7;
    color: #fff;
    padding: 12px 8px;
    border-radius: 11px 0px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    z-index: 10;
}

.network-enroll-intro {
    font-size: 15px;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.network-enroll-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.network-enroll-list li {
    position: relative;
    padding-left: 1.75rem;
}

.network-enroll-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000;
}

.network-enroll-bullet-title {
    display: block;
    font-weight: 500;
    color: #084FA7;
    margin-bottom: 0.2rem;
    font-size: 15px;
}

.network-enroll-bullet-desc {
    display: block;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

.network-enroll-roles {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.network-enroll-roles li {
    padding-left: 0;
    font-size: 14px;
    color: #333;
}

.network-enroll-roles li::before {
    display: none;
}

/* ---- Outcome ---- */
.network-outcome-wrap {
    margin-top: 2rem;
}

.network-outcome-title {
    font-size: 24px;
    color: #084FA7;
    font-weight: 600;
    margin-bottom: 1rem;
}

.network-outcome-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .network-enroll-row {
        flex-direction: column;
        gap: 3rem;
    }

    .network-enroll-img-label {
        left: 5%;
        right: 5%;
        bottom: -20px;
    }
}

/* =========================================================
   NETWORK+ CERTIFICATION — CTA SECTION
   ========================================================= */
.network-cta-section {
    background: #d42b40;
    min-height: 160px;
}

.network-cta-col--single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 3.5rem;
    gap: 1.5rem;
    text-align: center;
}

.network-cta-desc {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0 0 0.5rem;
    max-width: 700px;
}

.network-cta-desc:last-child {
    margin-bottom: 0;
}

.network-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.network-cta-btn {
    display: inline-block;
    background: #EE253A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    width: 201px;
    text-align: center;
}

.network-cta-btn:hover {
    background: #a01226;
    color: #ffffff;
}

@media (max-width: 640px) {
    .network-cta-col--single {
        padding: 2rem 1.5rem;
    }

    .network-cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .network-cta-desc {
        font-size: 13px;
        color: #ffffff;
        line-height: 1.75;
        margin: 0 0 0.5rem;
        max-width: 212px;
    }
}

/* =========================================================
   SECURITY+ CERTIFICATION — HERO SECTION
   ========================================================= */
.security-hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.security-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.security-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 0.5rem 2rem 2rem;
    text-align: center;
}

.security-hero-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-bottom: 1.25rem;
}

.security-hero-title {
    font-size: 2rem;
    font-weight: 500;
    color: #0d1b2a;
    line-height: 1.25;
    margin: 0;
    padding-top: 30px;
}

.security-hero-badge {
    height: 72px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.security-hero-desc {
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.85;
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
}

.security-hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 75%;
    margin: 0 auto;
    margin-top: -60px;
    z-index: 10;
    position: relative;
}

.security-hero-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: default;
}
.security-hero-feat:hover {
    filter: brightness(1.25);
    transform: translateY(-4px);
}

.security-hero-feat:last-child {
    border-right: none;
}

.security-hero-feat:nth-child(1) {
    background: #084FA7;
}

.security-hero-feat:nth-child(2) {
    background: #0855B6;
}

.security-hero-feat:nth-child(3) {
    background: #125DBA;
}

.security-hero-feat:nth-child(4) {
    background: #1F67C0;
}

.security-hero-feat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-hero-feat-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.security-hero-feat-icon svg {
    width: 44px;
    height: 44px;
}

.security-hero-feat-title {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .security-hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-hero-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .security-hero-section {
        min-height: unset;
        padding: 0 0 0;
    }

    .security-hero-content {
        padding: 7rem 1.25rem 2rem;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .security-hero-title-wrap {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .security-hero-title {
        font-size: 1.4rem;
        word-break: break-word;
        overflow-wrap: break-word;
        padding-top: 0;
    }

    .security-hero-badge {
        height: 56px;
        flex-shrink: 0;
    }

    .security-hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgb(96 94 94 / 45%);
        z-index: 1;
    }

    .security-hero-content {
        position: relative;
        z-index: 2;
    }

    .security-hero-desc {
        font-size: 13px;
        color: #ffffff;
    }

    .security-hero-features {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        margin-top: 0;
    }

    .security-learn-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        padding: 0 1.25rem;
    }

    .security-learn-section {
        padding: 5rem 0 2rem;
        background: #ffffff;
    }
}

@media (max-width: 500px) {
    .security-hero-features {
        grid-template-columns: 1fr;
        width: 75%;
    }
}

/* =========================================================
   SECURITY+ CERTIFICATION — LEARN SECTION
   ========================================================= */
.security-learn-section {
    padding: 5rem 0 5rem;
    background: #ffffff;
}

.security-learn-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 0 1.25rem;
}

.security-learn-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.security-learn-row:nth-child(even) {
    flex-direction: row-reverse;
}

.security-learn-img-col {
    flex: 1;
}

.security-learn-content-col {
    flex: 1.2;
}

.security-learn-img-wrap {
    position: relative;
    padding-bottom: 20px;
}

.security-learn-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 17px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.security-learn-img-wrap:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.security-learn-img-label {
    position: absolute;
    bottom: 20px;
    left: 21%;
    right: 0px;
    background: #084FA7;
    color: #fff;
    padding: 12px 8px;
    border-radius: 11px 0px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    z-index: 10;
}

.security-learn-row:nth-child(even) .security-learn-img-label {
    left: 0px;
    right: 20%;
}

.security-learn-intro {
    font-size: 15px;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.security-learn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-learn-list li {
    position: relative;
    padding-left: 1.75rem;
}

.security-learn-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000;
}

.security-learn-bullet-title {
    display: block;
    font-weight: 500;
    color: #084FA7;
    margin-bottom: 0.2rem;
    font-size: 15px;
}

.security-learn-bullet-desc {
    display: block;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

@media (max-width: 991px) {

    .security-learn-row,
    .security-learn-row:nth-child(even) {
        flex-direction: column;
        gap: 4rem;
    }

    .security-learn-img-label {
        left: 5%;
        right: 5%;
        bottom: -20px;
        font-size: 18px;
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .security-learn-wrapper {
        margin-top: 20px;
    }
}

/* =========================================================
   SECURITY+ CERTIFICATION — ENROLL & OUTCOME SECTION
   ========================================================= */
.security-enroll-section {
    padding: 2rem 0 6rem;
    background: #ffffff;
}

.security-enroll-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.security-enroll-row {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.security-enroll-img-col {
    flex: 1;
}

.security-enroll-content-col {
    flex: 1.2;
}

.security-enroll-img-wrap {
    position: relative;
    padding-bottom: 20px;
}

.security-enroll-img-wrap img,
.security-placeholder-img {
    width: 100%;
    height: auto;
    border-radius: 17px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-bottom-left-radius: 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.security-enroll-img-wrap:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.security-enroll-img-label {
    position: absolute;
    bottom: 20px;
    left: 21%;
    right: 0px;
    background: #084FA7;
    color: #fff;
    padding: 12px 8px;
    border-radius: 11px 0px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    z-index: 10;
}

.security-enroll-intro {
    font-size: 15px;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.security-enroll-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-enroll-list li {
    position: relative;
    padding-left: 1.75rem;
}

.security-enroll-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000;
}

.security-enroll-bullet-title {
    display: block;
    font-weight: 500;
    color: #084FA7;
    margin-bottom: 0.2rem;
    font-size: 15px;
}

.security-enroll-bullet-desc {
    display: block;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

.security-enroll-roles {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.security-enroll-roles li {
    padding-left: 0;
    font-size: 14px;
    color: #333;
}

.security-enroll-roles li::before {
    display: none;
}

/* ---- Outcome ---- */
.security-outcome-wrap {
    margin-top: 2rem;
}

.security-outcome-title {
    font-size: 24px;
    color: #084FA7;
    font-weight: 600;
    margin-bottom: 1rem;
}

.security-outcome-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .security-enroll-row {
        flex-direction: column;
        gap: 3rem;
    }

    .security-enroll-img-label {
        left: 5%;
        right: 5%;
        bottom: -20px;
    }
}

/* =========================================================
   SECURITY+ CERTIFICATION — CTA SECTION
   ========================================================= */
.security-cta-section {
    background: #d42b40;
    min-height: 160px;
}

.security-cta-br {
    display: none;
}

@media (max-width: 500px) {
    .security-cta-br {
        display: block;
    }
}

.security-cta-col--single {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 3.5rem;
    gap: 1.5rem;
    text-align: center;
}

.security-cta-desc {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0 0 0.5rem;
    max-width: 700px;
}

.security-cta-desc:last-child {
    margin-bottom: 0;
}

.security-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
}

.security-cta-btn {
    display: inline-block;
    background: #EE253A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    border-bottom-left-radius: 0px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    width: 201px;
    text-align: center;
}

.security-cta-btn:hover {
    background: #a01226;
    color: #ffffff;
}

@media (max-width: 640px) {
    .security-cta-col--single {
        padding: 2rem 1.5rem;
    }

    .security-cta-btn {
        width: 100%;
    }
}

/* =========================================================
   CONTACT US PAGE — HERO SECTION
   ========================================================= */
.contact-hero-section {
    position: relative;
    height: 430px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-wrapper {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-hero-title {
    display: none;
    /* Hide on desktop */
}

@media (max-width: 991px) {
    .contact-hero-section {
        height: 320px;
    }

    .contact-hero-title {
        display: block;
        /* Show on mobile */
        color: #ffffff;
        font-size: 2.4rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* =========================================================
   CONTACT US PAGE — CONTENT SECTION (FORM & FAQ)
   ========================================================= */
.contact-content-section {
    padding: 6rem 2rem;
    background: #ffffff;
}
.contact-content-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    max-width: 1240px;
    margin: 0 auto;
    align-items: start;
}

/* --- Left Side: Form --- */
.contact-form-card {
    background: #f8f8f8;
    border-radius: 40px 40px 40px 0px;
    padding: 4rem 3.5rem;
    border: 0px solid #eeeeee;
}

.contact-form-success {
    background: #e6f9ed;
    border: 1px solid #4caf50;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}
.contact-form-success p {
    color: #2e7d32;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}
.contact-form-error {
    background: #fdecea;
    border: 1px solid #f44336;
    border-radius: 6px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.25rem;
}
.contact-form-error p {
    color: #c62828;
    font-size: 0.9rem;
    margin: 0;
}
.contact-form-title {
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    color: #0d1b2a;
    margin: 0 0 3.5rem;
    letter-spacing: 0.05em;
}

.contact-us-form .form-group {
    margin-bottom: 15px;
}

.contact-us-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-us-form input[type="text"],
.contact-us-form input[type="email"],
.contact-us-form input[type="tel"],
.contact-us-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #000;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-us-form input:focus,
.contact-us-form textarea:focus {
    border-color: #01559E;
}

.contact-us-form input::placeholder,
.contact-us-form textarea::placeholder {
    color: #999;
}

.form-subtext {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.6rem;
    line-height: 1.4;
}

/* Phone input with flag */
.phone-input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid #000;
    transition: border-color 0.3s ease;
}

.phone-input-wrap:focus-within {
    border-color: #01559E;
}

.phone-input-wrap input {
    border-bottom: none !important;
}

.flag-select {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 0 0 10px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Form Submit Wrap */
.form-submit-wrap {
    text-align: right;
    margin-top: 2rem;
}

.contact-submit-btn {
    background: #01559E;
    color: #fff;
    border: none;
    padding: 0.75rem 2.75rem;
    border-radius: 50px 50px 50px 0 !important;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.contact-submit-btn:hover {
    background: #004085;
}

.contact-submit-btn:active {
    transform: translateY(2px);
}

/* --- Right Side: Info & FAQ --- */
/* Detail Items */
.contact-details-list {
    margin-bottom: 4rem;
}

.detail-block {
    margin-bottom: 2rem;
}

.detail-label {
    font-size: 1.25rem;
    font-weight: 500;
    color: #01559E;
    margin: 0 0 0.35rem;
}

.detail-link {
    font-size: 0.82rem;
    color: #333;
    text-decoration: underline;
    font-weight: 500;
}

.hours-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.hours-list li {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.35rem;
}

.contact-divider {
    border: 0;
    border-top: 2px solid #bbb;
    margin: 2.5rem 0 3.5rem;
}

/* FAQ Accordion */
.contact-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.faq-card {
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    width: 100%;
    background: #01559E;
    color: #fff;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    transition: background 0.3s;
}

.faq-header:hover {
    background: #004085;
}

.faq-body p {
    font-size: 0.82rem;
}

.faq-body a {
    font-size: 0.82rem;
}

.faq-body {
    background: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 1.5rem;
    border: 0 solid #01559E;
    border-top: none;
}

.faq-card.active .faq-body {
    max-height: 300px;
    /* Adjust according to content */
    padding: 1.5rem 1.5rem;
}

.faq-card.active .faq-chevron {
    transform: rotate(180deg);
}

.btn-apply-now {
    display: inline-block;
    background: #01559E;
    color: #fff;
    padding: 0.75rem 2.2rem;
    border-radius: 50px 50px 50px 0px;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 1.5rem;
    transition: background 0.2s;
}
.btn-apply-now:hover {
    color: #fff;
}

.contact-footer-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cta-msg {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1024px) {
    .contact-row {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info-col {
        order: -1;
    }
}

@media (max-width: 600px) {
    .contact-content-section {
        padding: 4rem 0rem;
        background: #ffffff;
    }

    .contact-form-card {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .contact-form-title {
        font-size: 1.8rem;
    }

    .contact-footer-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        text-align: center;
    }

    .btn-apply-now {
        margin-left: 0;
    }
}

/* CGRC Experience Section */
.cgrc-experience-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cgrc-experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 480px) {
    .cgrc-experience-container {
        padding: 0 22px;
    }
}

.cgrc-exp-top {
    text-align: center;
    margin-bottom: 80px;
}

.cgrc-exp-title {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cgrc-exp-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cgrc-exp-content p a {
    color: #ffffff;
}

.cgrc-exp-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.cgrc-exp-item {
    flex: 1;
}

.cgrc-exp-subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .cgrc-exp-grid {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .cgrc-experience-section {
        padding: 60px 0;
    }

    .cgrc-exp-title {
        font-size: 28px;
    }

    .cgrc-exp-subtitle {
        font-size: 22px;
    }
}

/* CGRC Exam Info Section */
.cgrc-exam-info-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.cgrc-exam-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cgrc-exam-info-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cgrc-exam-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.cgrc-exam-card {
    position: relative;
    padding: 25px 30px;
    border: 1px solid #EE253A;
    border-radius: 0 15px 15px 0;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.cgrc-exam-card-dot {
    position: absolute;
    top: -22px;
    left: -22px;
    width: 45px;
    height: 45px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cgrc-exam-card-content {
    display: flex;
    flex-direction: column;
}

.cgrc-exam-card-label {
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 5px;
}

.cgrc-exam-card-value {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
}

@media (max-width: 991px) {
    .cgrc-exam-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cgrc-exam-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cgrc-exam-card {
        margin-left: 20px;
    }

    .cgrc-exam-info-title {
        font-size: 24px;
        margin-bottom: 50px;
    }
}

/* CGRC Training Section */
.cgrc-training-section {
    background-color: #EE253A;
    padding: 100px 0;
    color: #ffffff;
}

.cgrc-training-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.cgrc-training-left {
    flex: 1;
}

.cgrc-training-right {
    flex: 1;
}

/* Training Block */
.cgrc-tr-block {
    margin-bottom: 80px;
}

.cgrc-tr-title,
.cgrc-ss-title,
.cgrc-ew-title {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.2;
}

.cgrc-tr-desc p,
.cgrc-ss-desc p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

.cgrc-tr-btn {
    display: inline-block;
    background: #ffffff;
    color: #EE253A;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.cgrc-tr-btn:hover {
    background: #f0f0f0;
    color: #EE253A;
    transform: scale(1.05);
}

/* Self-Study Block */
.cgrc-ss-list {
    list-style: none;
    padding: 0;
}

.cgrc-ss-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.cgrc-ss-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Weights Block */
.cgrc-ew-subtitle {
    font-size: 18px;
    margin-top: -15px;
    margin-bottom: 30px;
    color: #ffffff;
}

.cgrc-ew-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cgrc-ew-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

.cgrc-ew-percent {
    font-weight: 700;
    min-width: 50px;
    text-align: right;
}

.cgrc-ew-total {
    border-bottom: none;
    border-top: 1px solid #ffffff;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .cgrc-training-container {
        flex-direction: column;
        gap: 60px;
        padding: 0 30px;
    }
}

@media (max-width: 767px) {
    .cgrc-training-section {
        padding: 60px 0;
    }

    .cgrc-tr-title,
    .cgrc-ss-title,
    .cgrc-ew-title {
        font-size: 28px;
    }
}

/* CGRC Application Section */
.cgrc-application-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.cgrc-application-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.cgrc-app-main-title {
    font-size: 38px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 600px;
}

.cgrc-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.cgrc-app-img,
.cgrc-app-img-placeholder {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cgrc-app-right {
    display: flex;
    flex-direction: column;
}

.cgrc-app-para {
    font-size: 15px;
    line-height: 1.65;
    color: #333333;
    margin-bottom: 25px;
}

.cgrc-app-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #084FA7;
    /* ISC2 Blue */
    margin-bottom: 20px;
}

.cgrc-app-list {
    list-style: disc;
    padding-left: 20px;
}

.cgrc-app-list li {
    font-size: 15px;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .cgrc-app-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cgrc-app-main-title {
        font-size: 28px;
    }
}

/* CGRC How To Enroll Section */
.cgrc-enroll-section {
    background-color: #F5F5F5;
    padding: 100px 0;
}

.cgrc-enroll-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.cgrc-enroll-title {
    font-size: 28px;
    font-weight: 500;
    color: #084FA7;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cgrc-enroll-para {
    font-size: 15px;
    color: #333333;
    line-height: 1.65;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .cgrc-enroll-section {
        padding: 60px 0;
    }

    .cgrc-enroll-title {
        font-size: 22px;
    }
}

/* ── CSSLP Experience Section ─────────────────────────────────── */
.csslp-experience-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: #ffffff;
    position: relative;
}

.csslp-exp-inner {
    width: 100%;
}

.csslp-exp-top {
    text-align: center;
    margin-bottom: 60px;
}

.csslp-exp-bullet-list {
    list-style: disc;
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    padding-left: 20px;
    max-width: 700px;
}

.csslp-exp-bullet-list li {
    font-size: 15px;
    line-height: 1.65;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
}

.csslp-exp-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.csslp-exp-col--left {
    flex: 1 1 55%;
}

.csslp-exp-col--right {
    flex: 1 1 45%;
}

.csslp-exp-block {
    margin-bottom: 40px;
}

.csslp-exp-block:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .csslp-exp-grid {
        flex-direction: column;
        gap: 0;
    }

    .csslp-exp-col--left,
    .csslp-exp-col--right {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .csslp-experience-section {
        padding: 60px 0;
    }

    .csslp-exp-top {
        margin-bottom: 40px;
    }
}

/* ── Language Proficiency — Course Offerings Section ─────────── */
.lp-courses-section {
    background: #ffffff;
    padding: 80px 0;
}

.lp-courses-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.lp-courses-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 60px;
    line-height: 1.3;
}

.lp-courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 80px;
}

.lp-course-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(232,25,44,0.15);
}
.lp-course-card:hover .lp-course-card-label {
    background: #E8192C;
    color: #ffffff;
    border-color: #E8192C;
}
.lp-course-card:hover .lp-course-card-list li {
    color: #222222;
}

.lp-course-card-header {
    position: relative;
    padding-left: 6px;
}

.lp-course-card-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 1;
    flex-shrink: 0;
}

.lp-course-card-dot {
    width: 36px;
    height: 36px;
    background: #E8192C;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 1;
    flex-shrink: 0;
}

.lp-course-card-label {
    border: 1.5px solid #E8192C;
    border-radius: 10px 10px 10px 0px;
    padding: 14px 18px 14px 34px;
    font-size: 15px;
    color: #222222;
    line-height: 1.45;
    height: 95px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.lp-course-card-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.lp-course-card-list li {
    font-size: 14px;
    color: #444444;
    line-height: 1.65;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

@media (max-width: 767px) {
    .lp-courses-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lp-courses-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

/* ── Language Proficiency — Why Aksharbridge Academy Section ───────── */
.lp-why-section {
    background: #ffffff;
    padding: 80px 0;
}

.lp-why-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.lp-why-img-col {
    flex: 0 0 42%;
    overflow: hidden;
}

.lp-why-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    transition: transform 0.4s ease;
}
.lp-why-img-col:hover .lp-why-img {
    transform: scale(1.03);
}

.lp-why-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
    border-radius: 12px;
}

.lp-why-content-col {
    flex: 1;
}

.lp-why-title {
    font-size: 30px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 24px;
    line-height: 1.2;
}

.mb-outcomes-subtitle {
    font-size: 14px;
    color: #555555;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* ── Makeup & Beauty — Info Section ─────────────────────────────────── */
.mb-info-section {
    padding: 60px 40px;
    background-color: #c0535a;
    color: #ffffff;
}
.mb-info-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}
.mb-info-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.mb-info-block {
    padding: 20px;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.mb-info-block:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}
.mb-info-block-title {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
}
.mb-info-block-para {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.6;
}
.mb-info-bullet-list {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}
.mb-info-bullet-list li {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .mb-info-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mb-info-block-para,
    .mb-info-bullet-list li {
        font-size: 15px;
    }
}

/* ── Red Cross — Courses By Level Section ───────────────────────────── */
.rc-courses-section {
    padding: 60px 40px;
    background: #ffffff;
}
.rc-courses-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.rc-courses-img-col {
    overflow: hidden;
    border-radius: 12px;
}
.rc-courses-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.4s ease;
}
.rc-courses-img-col:hover .rc-courses-img {
    transform: scale(1.03);
}
.rc-courses-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e5e7eb;
    border-radius: 12px;
}
.rc-courses-title {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 24px;
}
.rc-courses-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.rc-courses-list li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.5;
}
.rc-courses-list li::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}
.rc-courses-note {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.6;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .rc-courses-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ── Red Cross — Online Certification Courses Section ───────────────── */
.rc-online-section {
    padding: 60px 40px;
    background: #ffffff;
}
.rc-online-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 48px;
}
.rc-online-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 40px;
    align-items: start;
}
.rc-online-cards-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.rc-online-card-wrap {
    position: relative;
    padding-left: 20px;
    padding-top: 18px;
}
.rc-online-card-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rc-online-card-box {
    border: 1.5px solid #EE253A;
    border-radius: 10px 10px 10px 0;
    padding: 0 16px 0 28px;
    font-size: 20px;
    color: #222222;
    line-height: 1.4;
    background: #ffffff;
    height: 90px;
    width: 250px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.rc-online-card-wrap:hover .rc-online-card-box {
    background: #EE253A;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(238, 37, 58, 0.2);
}
.rc-online-text-col {
    display: flex;
    align-items: center;
    height: 100%;
}
.rc-online-text {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .rc-online-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Red Cross — Programs Section ───────────────────────────────────── */
.rc-programs-section {
    background: #EE253A;
    padding: 60px 40px;
}
.rc-programs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 60px;
}
.rc-programs-block {
    padding: 24px;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}
.rc-programs-block:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.rc-programs-block-title {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.3;
}
.rc-programs-block-para {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 10px;
}
.rc-programs-block-label {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 6px;
}
.rc-programs-bullet-list {
    list-style: disc;
    padding-left: 18px;
    margin: 0 0 10px;
}
.rc-programs-bullet-list li {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.5;
}
.rc-programs-block-note {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .rc-programs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rc-programs-block-para,
    .rc-programs-block-label,
    .rc-programs-bullet-list li,
    .rc-programs-block-note {
        font-size: 15px;
    }
}

/* ── Red Cross — Training Locations & Why Choose Section ─────────────── */
/* RC locations section reuses comptia-out-* classes — no additional styles needed. */

/* ── Security Services Courses — Hero Section ───────────────────────── */
/* Security Services hero reuses iso-hero-* classes — no additional styles needed. */

/* ---- CPR AED Booking — Hero vertical centering override ---- */
.cpr-hero.iso-hero-section {
    display: flex;
    align-items: center;
}
.cpr-hero .iso-hero-content {
    padding-top: 0;
}

/* ---- CPR AED Booking — Bookeo Booking Section ---- */
.cpr-booking-section {
    padding: 4rem 2rem;
    background: #ffffff;
}
.cpr-booking-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Security Services — Courses Grid Section ───────────────────────── */
.ss-courses-section {
    padding: 60px 40px;
    background: #ffffff;
}
.ss-courses-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}
.ss-courses-title {
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 12px;
}
.ss-courses-subtitle {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.6;
}
.ss-courses-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    justify-items: center;
}
.ss-courses-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ss-courses-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}
.ss-courses-card:hover .ss-courses-card-label {
    background: #E8192C;
    transition: background 0.3s ease;
}
.ss-courses-card:hover .ss-courses-card-label p {
    color: #ffffff;
    transition: color 0.3s ease;
}
.ss-courses-card-label {
    transition: background 0.3s ease;
}
.ss-courses-card-label p {
    transition: color 0.3s ease;
}
.ss-courses-card-img {
    transition: transform 0.4s ease;
}
.ss-courses-card:hover .ss-courses-card-img {
    transform: scale(1.05);
}
.ss-courses-card-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.ss-courses-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ss-courses-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
}
.ss-courses-card-label {
    padding: 16px;
    background: #f9f9f9;
    text-align: center;
}
.ss-courses-card-label p {
    font-size: 0.92rem;
    color: #222222;
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .ss-courses-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .ss-courses-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Security Services — Province Courses Section ───────────────────── */
.ss-province-section {
    padding: 60px 40px;
    background: #ffffff;
}
.ss-province-outer {
    max-width: 1100px;
    margin: 0 auto;
}
.ss-province-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
}
.ss-province-title {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #111111;
}
.ss-province-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 768px) {
    .ss-province-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ss-province-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
@media (max-width: 480px) {
    .ss-province-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Manitoba mobile title — hidden on desktop, shown on mobile */
.ss-province-mb-title-mobile {
    display: none;
}

@media (max-width: 480px) {
    .ss-courses-section {
        padding: 60px 40px;
        background: #ffffff;
        margin-top: 2rem;
    }

    .ss-province-mb-title-mobile {
        display: block;
        width: 100%;
        padding-top: 6rem;
    }

    /* Hide Manitoba title from the title row on mobile (it shows inline in the grid instead) */
    .ss-province-title-row .ss-province-title:last-child {
        display: none;
    }
}

/* ── Security Services: Enroll / Career Outcomes ── */
.ss-enroll-section {
    background: #EE253A;
    padding: 72px 48px;
}
.ss-enroll-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.ss-enroll-title {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}
.ss-enroll-sub {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0 0 12px 0;
}
.ss-enroll-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.ss-enroll-list li {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .ss-enroll-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ss-enroll-section {
        padding: 48px 24px;
    }
}

/* ── Security Services: Why Choose Aksharbridge Academy ── */
.ss-why-section {
    padding: 72px 48px;
    background: #ffffff;
}
.ss-why-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.ss-why-img-col {
    overflow: hidden;
    border-radius: 12px;
}
.ss-why-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.4s ease;
}
.ss-why-img-col:hover .ss-why-img {
    transform: scale(1.03);
}
.ss-why-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e5e7eb;
    border-radius: 12px;
}
.ss-why-title {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #111111;
    margin: 0 0 28px 0;
    line-height: 1.2;
}
.ss-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ss-why-list li {
    display: flex;
    align-items: baseline;
    gap: 0;
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 14px;
    line-height: 1.5;
}
.ss-why-list li::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #084FA7;
    margin-right: 10px;
    flex-shrink: 0;
    position: relative;
    top: -1px;
}
.ss-why-label {
    color: #084FA7;
    font-weight: 500;
}
.ss-why-desc {
    color: #333333;
    font-weight: 400;
}
@media (max-width: 768px) {
    .ss-why-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .ss-why-section {
        padding: 48px 24px;
        margin-top: 4rem;
    }
}

/* ── Security Services: CTA Bar ── */
.ss-cta-section {
    background: #d42b40;
    min-height: 120px;
}
.ss-cta-col--single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 3.5rem;
    gap: 0.75rem;
    text-align: center;
}
.ss-cta-para {
    font-size: 0.92rem;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.6;
    max-width: 700px;
}
.ss-cta-contact-intro {
    font-size: 0.88rem;
    color: #ffffff;
    margin: 0.5rem 0 0;
}
.ss-cta-contact-line {
    font-size: 0.88rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}
.ss-cta-contact-label {
    font-weight: 400;
}
.ss-cta-contact-line strong {
    font-weight: 500;
    display: block;
}
@media (max-width: 640px) {
    .ss-cta-col--single {
        padding: 2rem 1.5rem;
    }
}

.lp-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 15px;
    color: #444444;
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.lp-why-list li::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

@media (max-width: 767px) {
    .lp-why-container {
        flex-direction: column;
        gap: 30px;
    }

    .lp-why-img-col {
        flex: none;
        width: 100%;
    }

    .lp-why-title {
        font-size: 24px;
    }
}

/* =========================================================
   RESPONSIVE FIXES — MISSING MEDIA QUERIES
   Comprehensive responsive CSS for all pages
   ========================================================= */

/* ── CompTIA Certification Hero — stack on tablet ─────── */
@media (max-width: 900px) {
    .comptia-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comptia-hero-content {
        padding-top: 2rem;
    }

    .comptia-hero-box-icon {
        left: 50%;
        transform: translateX(-50%);
    }

    .comptia-hero-box {
        padding: 4rem 1.25rem 1rem;
    }

    .comptia-hero-title {
        font-size: 1.7rem;
    }
}

/* ── Institutional Policies — Policies Section ────────── */
@media (max-width: 900px) {
    .ip-pol-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .ip-pol-left {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .ip-pol-img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .ip-pol-caption {
        position: static;
        width: 100%;
        border-radius: 0 8px 8px 0;
        margin-top: 0.5rem;
    }

    .ip-pol-right {
        width: 100%;
    }

    .ip-pol-badge {
        width: 100%;
        max-width: 100%;
    }
}

/* ── Apply Now — Why Choose & FAQ Section ─────────────── */
@media (max-width: 900px) {
    .an-wf-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── Apply Now — Steps Section Mobile ─────────────────── */
@media (max-width: 640px) {
    .an-steps-section {
        padding: 3rem 1rem;
        overflow: hidden;
    }

    .an-steps-inner {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .an-steps-list {
        width: 100%;
        box-sizing: border-box;
    }

    .an-steps-desc {
        margin-left: 1rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .an-steps-card {
        width: 100%;
        box-sizing: border-box;
    }
}

/* ── Student Complaint Page ───────────────────────────── */
@media (max-width: 900px) {
    .sc-content-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .sc-right {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .sc-page-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .sc-page-title {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }

    .sc-res-row {
        word-break: break-all;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .sc-right {
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .sc-left {
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ── Student Life — Resources & Support ──────────────── */
@media (max-width: 640px) {
    .sl-res-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sl-res-badge {
        width: 100%;
        max-width: 100%;
    }
}

/* ── Student Life — Clubs & Wellness ─────────────────── */
@media (max-width: 900px) {
    .sl-clubs-section {
        flex-direction: column;
    }

    .sl-clubs-col {
        padding: 3rem 1.5rem;
    }

    .sl-clubs-title {
        font-size: 1.5rem;
    }
}

/* ── Student Life — Campus Facilities ────────────────── */
@media (max-width: 640px) {
    .sl-fac-card {
        flex: 0 0 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sl-fac-card-icon {
        margin: 0 auto;
    }

    .sl-fac-card-body {
        text-align: center;
    }
}

/* ── Career Services — Services Offered Section ─────── */
@media (max-width: 900px) {
    .career-offered-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 600px) {
    .career-offered-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ── Testing / ACCA Testing / ACCUPLACER / CLEP — Hover Effects ─────── */

/* Testing services cards (dark bg — white-border lift) */
.testing-svc-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.testing-svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Testing why-choose image hover */
.testing-wc-image {
    overflow: hidden;
}
.testing-wc-image img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testing-wc-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

/* ACCA / ACCUPLACER / CLEP about cards */
.acca-about-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.acca-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(232, 0, 61, 0.12);
}

/* ACCA / ACCUPLACER / CLEP prepare image hover */
.acca-prep-img-col {
    overflow: hidden;
}
.acca-prep-img-col img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.acca-prep-img-col:hover img {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

/* ACCA / ACCUPLACER / CLEP why-choose image hover */
.acca-wc-img-col {
    overflow: hidden;
}
.acca-wc-img-col img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.acca-wc-img-col:hover img {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

/* ACCA about left image hover */
.acca-about-left {
    overflow: hidden;
}
.acca-about-left img {
    transition: transform 0.4s ease;
}
.acca-about-left:hover img {
    transform: scale(1.03);
}

/* ── CGRC / CSSLP Exam Info Cards + ISC2CC / SSCP Weight Cards — Hover ── */

/* CGRC / CSSLP exam info cards */
.cgrc-exam-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cgrc-exam-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(238, 37, 58, 0.15);
    border-color: #EE253A;
}

/* ISC2CC weight cards */
.isc2cc-weight-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.isc2cc-weight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(224, 53, 58, 0.15);
    background: rgba(224, 53, 58, 0.04);
}

/* SSCP weight cards */
.sscp-weight-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.sscp-weight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(224, 53, 58, 0.15);
    background: rgba(224, 53, 58, 0.04);
}

/* ── CGRC / CSSLP / ISC2CC / SSCP — Hover Effects ─────────────────── */

/* Experience items (cgrc-experience-section) */
.cgrc-exp-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cgrc-exp-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

/* Training weights row items */
.cgrc-ew-item {
    transition: background 0.25s ease, color 0.25s ease;
}
.cgrc-ew-item:hover:not(.cgrc-ew-total) {
    background: rgba(238,37,58,0.07);
}

/* Training + Self-Study blocks */
.cgrc-tr-block,
.cgrc-ss-block {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cgrc-tr-block:hover,
.cgrc-ss-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* sscp/cgrc/csslp learn image hover */
.sscp-learn-img-wrap {
    overflow: hidden;
}
.sscp-learn-img-wrap img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.sscp-learn-img-wrap:hover img {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}

/* SSCP about columns */
.sscp-about-col {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sscp-about-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}

/* SSCP info blocks */
.sscp-info-block {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sscp-info-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ISC2CC apply image hover */
.isc2cc-apply-img-wrap {
    overflow: hidden;
}
.isc2cc-apply-img-wrap img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.isc2cc-apply-img-wrap:hover img {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}

/* SSCP apply image hover */
.sscp-apply-img-wrap {
    overflow: hidden;
}
.sscp-apply-img-wrap img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.sscp-apply-img-wrap:hover img {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}

/* ── ETS — Two Column Background Image Section ───────── */
@media (max-width: 900px) {
    .ets-twocol-section {
        flex-direction: column;
    }

    .ets-twocol-col {
        padding: 3rem 1.5rem;
    }

    .ets-twocol-title {
        font-size: 1.5rem;
    }
}

/* ── ETS — Flip page-content columns (image left, text right) ── */
.page-template-template-ets .page-content-wrap .wp-block-columns {
    display: flex !important;
    flex-wrap: nowrap !important;
}
.page-template-template-ets .page-content-wrap .wp-block-columns .wp-block-column:first-child {
    order: 2 !important;
}
.page-template-template-ets .page-content-wrap .wp-block-columns .wp-block-column:last-child {
    order: 1 !important;
}

@media (max-width: 781px) {
    .page-template-template-ets .page-content-wrap .wp-block-columns {
        flex-wrap: wrap !important;
        flex-direction: column !important;
    }
    .page-template-template-ets .page-content-wrap .wp-block-columns .wp-block-column:first-child,
    .page-template-template-ets .page-content-wrap .wp-block-columns .wp-block-column:last-child {
        order: unset !important;
        width: 100% !important;
        flex-basis: 100% !important;
    }
}

/* ── ETS — What to Bring on Test Day ─────────────────── */
@media (max-width: 768px) {
    .ets-bring-section {
        flex-direction: column;
    }

    .ets-bring-image {
        flex: none;
        width: 100%;
        max-height: 280px;
    }

    .ets-bring-image img {
        height: 280px;
    }

    .ets-bring-content {
        padding: 2rem 1.5rem;
    }

    .ets-bring-title {
        font-size: 1.4rem;
    }
}

/* ── Career Services — Hover Effects ────────────────── */

/* Offered cards */
.career-offered-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.career-offered-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }

/* Development left image */
.career-dev-left { overflow: hidden; }
.career-dev-left img { transition: transform 0.4s ease; }
.career-dev-left:hover img { transform: scale(1.03); }

/* Development pillars */
.career-dev-pillar { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.career-dev-pillar:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

/* ── Student Life — Hover Effects ────────────────────── */

/* Facilities cards */
.sl-fac-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.sl-fac-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.10); }

/* Clubs columns (background-image cols) */
.sl-clubs-col { transition: box-shadow 0.3s ease; }
.sl-clubs-col:hover { box-shadow: inset 0 0 0 3px rgba(232,0,61,0.35); }

/* Resources items */
.sl-res-item { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.sl-res-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.09); }

/* ── Institutional Policies — Hover Effects ──────────── */

/* Policies image */
.ip-pol-img-wrap { overflow: hidden; }
.ip-pol-img-wrap img { transition: transform 0.4s ease; }
.ip-pol-img-wrap:hover img { transform: scale(1.03); }

/* Policies items */
.ip-pol-item { transition: transform 0.3s ease, background 0.3s ease; }
.ip-pol-item:hover { transform: translateY(-3px); background: rgba(232,0,61,0.04); }

/* Services grid items */
.ip-svc-item { transition: background 0.3s ease, transform 0.3s ease; }
.ip-svc-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* ── Student Complaint — Hover Effects ───────────────── */

/* Policy sections */
.sc-policy-section { transition: transform 0.3s ease, background 0.3s ease; }
.sc-policy-section:hover { transform: translateY(-2px); background: rgba(232,0,61,0.03); }

/* Resource items */
.sc-res-item { transition: transform 0.3s ease, background 0.3s ease; }
.sc-res-item:hover { transform: translateY(-2px); background: rgba(0,0,0,0.03); }

/* ── Contact Us — Hover Effects ──────────────────────── */

/* Form card */
.contact-form-card { transition: box-shadow 0.3s ease; }
.contact-form-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.10); }

/* Detail blocks */
.detail-block { transition: transform 0.3s ease; }
.detail-block:hover { transform: translateX(4px); }

/* FAQ cards */
.faq-card { transition: box-shadow 0.3s ease, background 0.3s ease; }
.faq-card:hover { background: rgba(232,0,61,0.04); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }

/* ── Apply Now — Hover Effects ───────────────────────── */

/* Step cards */
.an-steps-card { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.an-steps-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(238,37,58,0.14); border-color: rgba(238,37,58,0.7); }

/* Step badges */
.an-steps-badge { transition: transform 0.3s ease, background 0.3s ease; }
.an-steps-item:hover .an-steps-badge { transform: scale(1.1); }

/* FAQ items */
.an-wf-faq-item { transition: background 0.25s ease, padding-left 0.25s ease; }
.an-wf-faq-item:hover { background: rgba(255,255,255,0.07); padding-left: 0.5rem; }

.isc2-benefits-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
    text-decoration: NONE;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    line-height: 1.3;
    margin: 0 0 1.5rem;
}


/* =========================================================
   WORKPLACE COMMUNICATION PROGRAM PAGE — HERO SECTION
   ========================================================= */

.wcp-hero-section {
    position: relative;
    background-color: #1565C0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 5.5rem 2rem 5rem;
    min-height: 520px;
}

.wcp-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

.wcp-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wcp-hero-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #000000;
    margin: 0 0 1rem;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.wcp-hero-subtitle {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0 0 1.75rem;
}

.wcp-hero-box-wrap {
    position: relative;
    padding-top: 28px;
}

.wcp-hero-box-icon {
    position: absolute;
    top: 0;
    left: -4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    z-index: 2;
}

.wcp-hero-box-icon svg,
.wcp-hero-box-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.wcp-hero-box {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 2.25rem 1.5rem 1.5rem;
    background: transparent;
}

.wcp-hero-box-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.wcp-hero-logo-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.wcp-hero-logo-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 900px) {
    .wcp-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .wcp-hero-logo-col {
        justify-content: flex-start;
    }

    .wcp-hero-section .wcp-hero-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .wcp-hero-section {
        padding: 3rem 1.25rem 2.5rem;
        min-height: unset;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .wcp-hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgb(96 94 94 / 45%);
        z-index: 1;
    }

    .wcp-hero-wrapper {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .wcp-hero-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .wcp-hero-section .wcp-hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .wcp-hero-subtitle {
        font-size: 13px;
        margin-bottom: 1.25rem;
        word-break: break-word;
    }

    .wcp-hero-box-wrap {
        padding-top: 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .wcp-hero-box {
        padding: 1.75rem 1.25rem 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }

    .wcp-hero-box-text {
        font-size: 12.5px;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .wcp-hero-logo-col {
        justify-content: center;
        width: 100%;
    }

    .wcp-hero-logo-img {
        max-width: 200px;
        width: 100%;
        height: auto;
    }
}


/* =========================================================
   WORKPLACE COMMUNICATION PROGRAM PAGE — PROGRAM OVERVIEW SECTION
   ========================================================= */

.wcp-ov-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.wcp-ov-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: start;
}

/* ---- Left: Side Image ---- */
.wcp-ov-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.wcp-ov-side-img {
    width: 100%;
    max-width: 320px;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

/* ---- Right: Content ---- */
.wcp-ov-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wcp-ov-title {
    font-size: 2rem;
    font-weight: 500;
    color: #0d1b2a;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

/* ---- 2×2 Cards Grid ---- */
.wcp-ov-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
}

.wcp-ov-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wcp-ov-card-header {
    position: relative;
    padding-left: 24px;
}

.wcp-ov-card-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: #E8213A;
    border-radius: 50%;
    position: absolute;
    top: -14px;
    left: -14px;
    transform: none;
    z-index: 2;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
}

.wcp-ov-card-dot.has-icon {
    background: transparent;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
}

.wcp-ov-card-dot.has-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: none;
    display: block;
}

.wcp-ov-card-title-box {
    border: 1.5px solid #f08090;
    border-radius: 50px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    padding: 0.75rem 1.25rem 0.75rem 2.5rem;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.wcp-ov-card-title {
    font-size: 15px;
    font-weight: 500;
    color: #0d1b2a;
    line-height: 1.35;
}

.wcp-ov-card-desc {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
    margin: 0;
    padding: 0 0.25rem;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .wcp-ov-wrapper {
        grid-template-columns: 1fr;
    }

    .wcp-ov-left {
        display: none;
    }

    .wcp-ov-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .wcp-ov-section {
        padding: 3rem 1.25rem;
    }

    .wcp-ov-title {
        font-size: 1.5rem;
    }
}


/* =========================================================
   WORKPLACE COMMUNICATION PROGRAM PAGE — WHAT YOU WILL LEARN SECTION
   ========================================================= */

.wcp-learn-section {
    padding: 0;
    overflow: hidden;
}

.wcp-learn-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 360px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    background-color: #ffffff;
    padding: 0 0 3.5rem;
}

/* ---- Image ---- */
.wcp-learn-image {
    overflow: hidden;
    height: 100%;
    min-height: 320px;
}

.wcp-learn-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Content ---- */
.wcp-learn-content {
    padding: 3rem 3.5rem 3rem 5rem;
}

/* ---- Title ---- */
.wcp-learn-title {
    font-size: 1.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

/* ---- List ---- */
.wcp-learn-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.wcp-learn-list li {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: #222222;
    padding-left: 1.1rem;
    position: relative;
}

.wcp-learn-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #1a1a6e;
}

.wcp-learn-item-label {
    font-weight: 500;
    color: #084FA7;
}

.wcp-learn-item-sep {
    color: #222222;
    font-weight: 400;
}

.wcp-learn-item-desc {
    color: #333333;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .wcp-learn-block {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.25rem;
    }

    .wcp-learn-content {
        padding: 0 0 2rem;
    }

    .wcp-learn-image {
        min-height: 240px;
    }
}


/* =========================================================
   WORKPLACE COMMUNICATION PROGRAM — COURSE STRUCTURE SECTION
   ========================================================= */

.wcp-cs-section {
    padding: 5rem 0;
    background: #ffffff;
}

/* ---- Centred heading ---- */
.wcp-cs-heading-wrap {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1.25rem;
}

.wcp-cs-section-title {
    font-size: 2rem;
    font-weight: 500;
    color: #0d1b2a;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

/* ---- Wrapper ---- */
.wcp-cs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 0 1.25rem;
}

/* ---- Row ---- */
.wcp-cs-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.wcp-cs-row--reverse {
    flex-direction: row-reverse;
}

/* ---- Image col ---- */
.wcp-cs-img-col {
    flex: 1;
}

.wcp-cs-img-wrap {
    position: relative;
    padding-bottom: 20px;
}

.wcp-cs-img-wrap img,
.wcp-cs-img-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 17px;
    border-bottom-left-radius: 0;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #f0f4f8;
}

.wcp-cs-img-wrap:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.wcp-cs-img-label {
    position: absolute;
    bottom: 20px;
    left: 21%;
    right: 0;
    background: #084FA7;
    color: #fff;
    padding: 10px 12px;
    border-radius: 11px 0;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    z-index: 10;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.wcp-cs-row--reverse .wcp-cs-img-label {
    left: 0;
    right: 21%;
    background: #EE253A;
    border-radius: 0 11px;
}

.wcp-cs-img-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
}

/* ---- Content col ---- */
.wcp-cs-content-col {
    flex: 1.2;
}

.wcp-cs-intro {
    font-size: 15px;
    color: #333;
    margin: 0 0 0.75rem;
    line-height: 1.65;
    font-weight: 500;
}

.wcp-cs-sub {
    font-size: 14px;
    color: #555;
    margin: 0 0 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.wcp-cs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.wcp-cs-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

.wcp-cs-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #084FA7;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .wcp-cs-row,
    .wcp-cs-row--reverse {
        flex-direction: column;
        gap: 4rem;
    }

    .wcp-cs-img-label {
        left: 5%;
        right: 5%;
        bottom: -20px;
        font-size: 14px;
    }

    .wcp-cs-row--reverse .wcp-cs-img-label {
        left: 5%;
        right: 5%;
    }

    .wcp-cs-wrapper {
        gap: 5rem;
    }
}

@media (max-width: 600px) {
    .wcp-cs-section {
        padding: 3rem 0;
    }

    .wcp-cs-section-title {
        font-size: 1.5rem;
    }

    .wcp-cs-heading-wrap {
        margin-bottom: 2.5rem;
    }
}


/* =========================================================
   WORKPLACE COMMUNICATION PROGRAM — WHO SHOULD ENROLL SECTION
   ========================================================= */

.wcp-enroll-section {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 520px;
    background: #ffffff;
}

/* ---- Left Panel ---- */
.wcp-enroll-left {
    background: #EE253A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.wcp-enroll-left::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.wcp-enroll-left::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.wcp-enroll-left-inner {
    position: relative;
    z-index: 1;
}

.wcp-enroll-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1rem;
}

.wcp-enroll-title {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 1.25rem;
}

.wcp-enroll-intro {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin: 0 0 2rem;
}

.wcp-enroll-deco {
    display: flex;
    gap: 8px;
}

.wcp-enroll-deco span {
    display: block;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.6);
}

.wcp-enroll-deco span:nth-child(1) { width: 36px; }
.wcp-enroll-deco span:nth-child(2) { width: 20px; opacity: 0.6; }
.wcp-enroll-deco span:nth-child(3) { width: 10px; opacity: 0.3; }

/* ---- Right Cards Grid ---- */
.wcp-enroll-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* ---- Card ---- */
.wcp-enroll-card {
    padding: 2.25rem 1.75rem;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.2s ease;
    position: relative;
}

.wcp-enroll-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--card-accent, #084FA7);
    transition: width 0.3s ease;
}

.wcp-enroll-card:hover::after {
    width: 100%;
}

.wcp-enroll-card:hover {
    background: #fafbff;
}

.wcp-enroll-card:nth-child(3n) {
    border-right: none;
}

.wcp-enroll-card:nth-child(4),
.wcp-enroll-card:nth-child(5),
.wcp-enroll-card:nth-child(6) {
    border-bottom: none;
}

/* ---- Card Icon ---- */
.wcp-enroll-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--card-accent, #084FA7) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wcp-enroll-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--card-accent, #084FA7);
    stroke: var(--card-accent, #084FA7);
}

.wcp-enroll-card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* ---- Card Body ---- */
.wcp-enroll-card-title {
    font-size: 15px;
    font-weight: 500;
    color: #0d1b2a;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.wcp-enroll-card-desc {
    font-size: 13.5px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .wcp-enroll-section {
        grid-template-columns: 320px 1fr;
    }
}

@media (max-width: 900px) {
    .wcp-enroll-section {
        grid-template-columns: 1fr;
    }

    .wcp-enroll-left {
        padding: 3rem 1.5rem;
    }

    .wcp-enroll-right {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcp-enroll-card:nth-child(3n) {
        border-right: 1px solid #f0f0f0;
    }

    .wcp-enroll-card:nth-child(2n) {
        border-right: none;
    }

    .wcp-enroll-card:nth-child(5),
    .wcp-enroll-card:nth-child(6) {
        border-bottom: none;
    }

    .wcp-enroll-card:nth-child(4) {
        border-bottom: 1px solid #f0f0f0;
    }
}

@media (max-width: 560px) {
    .wcp-enroll-right {
        grid-template-columns: 1fr;
    }

    .wcp-enroll-card {
        border-right: none;
    }

    .wcp-enroll-card:nth-child(3n) {
        border-right: none;
    }

    .wcp-enroll-card:nth-child(2n) {
        border-right: none;
    }

    .wcp-enroll-card:last-child {
        border-bottom: none;
    }

    .wcp-enroll-card:nth-child(4),
    .wcp-enroll-card:nth-child(5) {
        border-bottom: 1px solid #f0f0f0;
    }
}


/* =========================================================
   WORKPLACE COMMUNICATION PROGRAM — PROGRAM OUTCOME SECTION
   ========================================================= */

.wcp-out-section {
    background: #ffffff;
    padding: 5rem 0;
}

/* ---- Centred header ---- */
.wcp-out-header {
    text-align: center;
    padding: 0 1.25rem 3.5rem;
}

.wcp-out-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.wcp-out-title {
    font-size: 2rem;
    font-weight: 500;
    color: #0d1b2a;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.wcp-out-intro {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 0.4rem;
}

.wcp-out-sub {
    font-size: 14px;
    font-weight: 500;
    color: #084FA7;
    margin: 0;
}

/* ---- Grid wrapper ---- */
.wcp-out-grid-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Rows ---- */
.wcp-out-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.wcp-out-row:last-child {
    margin-bottom: 0;
}

.wcp-out-row--3 .wcp-out-card { flex: 1; max-width: 380px; }
.wcp-out-row--2 .wcp-out-card { flex: 0 0 calc(33.333% - 0.75rem); max-width: 380px; }
.wcp-out-row--1 .wcp-out-card { flex: 0 0 calc(33.333% - 0.75rem); max-width: 380px; }

/* ---- Card ---- */
.wcp-out-card {
    background: #EE253A;
    border-radius: 16px;
    border-bottom-left-radius: 0;
    padding: 1.75rem 1.5rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(238, 37, 58, 0.2);
}

.wcp-out-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(238, 37, 58, 0.3);
}

/* ---- Number badge ---- */
.wcp-out-badge {
    position: absolute;
    top: -16px;
    left: -10px;
    width: 42px;
    height: 42px;
    background: #EE253A;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ---- Number badge — icon variant ---- */
.wcp-out-badge.has-icon {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: auto;
    height: auto;
    top: -8px;
    left: -8px;
}

.wcp-out-badge.has-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: none;
    display: block;
}

/* ---- Optional icon (body) ---- */
.wcp-out-card-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    margin-bottom: 0.25rem;
}

/* ---- Text ---- */
.wcp-out-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
}

.wcp-out-card-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.88);
    line-height: 1.65;
    margin: 0;
}

.wcp-out-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.wcp-out-card-list li {
    font-size: 13px;
    color: rgba(255,255,255,0.88);
    line-height: 1.55;
    padding-left: 1rem;
    position: relative;
}

.wcp-out-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid rgba(255,255,255,0.7);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .wcp-out-row {
        flex-wrap: wrap;
    }

    .wcp-out-row--3 .wcp-out-card,
    .wcp-out-row--2 .wcp-out-card,
    .wcp-out-row--1 .wcp-out-card {
        flex: 1 1 calc(50% - 0.75rem);
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .wcp-out-row--3 .wcp-out-card,
    .wcp-out-row--2 .wcp-out-card,
    .wcp-out-row--1 .wcp-out-card {
        flex: 1 1 100%;
    }

    .wcp-out-section {
        padding: 3rem 0;
    }

    .wcp-out-grid-wrap {
        padding: 0 1.25rem;
    }

    .wcp-out-title {
        font-size: 1.5rem;
    }
}

.wcp-out-badge.has-icon {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: auto;
    height: auto;
    top: -16px;
    left: -17px;
}

.wcp-enroll-card-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.wcp-enroll-card-icon {
    width: 89px;
    height: 86px;
    background: transparent;
}

.wcp-ov-side-img {
    width: 100%;
    max-width: 320px;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.wcp-ov-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .wcp-ov-wrapper {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   PROMETRIC PAGE — HERO SECTION
   ========================================================= */

.prometric-hero-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    background-color: #1a3a5c;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.prometric-hero-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.prometric-hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prometric-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin: 0;
}

.prometric-hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.65;
    margin: 0;
}

.prometric-hero-box-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.prometric-hero-box-icon {
    flex-shrink: 0;
    color: #ffffff;
    opacity: 0.85;
    margin-top: 2px;
}

.prometric-hero-box-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.prometric-hero-box {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 2.25rem 1.5rem 1.5rem;
    background: transparent;
    width: 100%;
}

.prometric-hero-box-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .prometric-hero-section {
        min-height: 320px;
    }

    .prometric-hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgb(96 94 94 / 45%);
        z-index: 1;
    }

    .prometric-hero-wrapper {
        position: relative;
        z-index: 2;
    }

    .prometric-hero-title {
        font-size: 1.4rem;
    }

    .prometric-hero-subtitle {
        font-size: 13px;
    }
}


/* =========================================================
   PROMETRIC PAGE — PROFESSIONAL ENVIRONMENT SECTION
   ========================================================= */

.prometric-env-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.prometric-env-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.prometric-env-img-col {
    flex: 0 0 46%;
}

.prometric-env-img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.prometric-env-content-col {
    flex: 1;
}

.prometric-env-title {
    font-size: 1.9rem;
    font-weight: 500;
    color: #111111;
    line-height: 1.2;
    margin: 0 0 1.5rem;
}

.prometric-env-para {
    font-size: 14px;
    color: #444444;
    line-height: 1.75;
    margin: 0 0 1rem;
}

.prometric-env-para:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .prometric-env-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .prometric-env-img-col {
        flex: none;
        width: 100%;
    }

    .prometric-env-title {
        font-size: 1.4rem;
    }
}

/* =========================================================
   PROMETRIC PAGE — HERO SECTION
   ========================================================= */

.prometric-hero-section {
    position: relative;
    background-color: #b8cfe8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center;
}

.prometric-hero-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.prometric-hero-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prometric-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.prometric-hero-subtitle {
    font-size: 14px;
    color: #111111;
    line-height: 1.75;
    margin: 0;
}

.prometric-hero-box-wrap {
    position: relative;
    padding-top: 24px;
}

.prometric-hero-box-icon {
    position: absolute;
    top: 0;
    left: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 2;
}

.prometric-hero-box-icon svg,
.prometric-hero-box-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.prometric-hero-box {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    border-bottom-left-radius: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(2px);
}

.prometric-hero-box-text {
    font-size: 13px;
    color: #111111;
    line-height: 1.75;
    margin: 0 0 0.85rem;
}

.prometric-hero-box-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .prometric-hero-title {
        font-size: 1.7rem;
    }
}

/* =========================================================
   PROMETRIC PAGE — PROFESSIONAL ENVIRONMENT SECTION
   ========================================================= */

.prometric-env-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.prometric-env-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prometric-env-img-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.prometric-env-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #111111;
    margin: 0 0 1.5rem;
    line-height: 1.3;
}

.prometric-env-para {
    font-size: 14px;
    color: #444444;
    line-height: 1.75;
    margin: 0 0 1rem;
}

.prometric-env-para:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .prometric-env-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =========================================================
   PROMETRIC PAGE — TESTS OFFERED SECTION
   ========================================================= */

.prometric-tests-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.prometric-tests-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prometric-tests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.prometric-test-card {
    position: relative;
    background: #084FA7;
    border-radius: 12px;
    padding: 2rem 1.5rem;
}

.prometric-test-card-header {
    position: relative;
    padding: 0 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.prometric-test-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.prometric-test-icon svg {
    stroke: #ffffff;
}

.prometric-test-card-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
}

.prometric-tests-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    margin: 0 0 1.2rem;
    text-align: center;
}

.prometric-tests-intro {
    font-size: 14px;
    color: #333333;
    line-height: 1.7;
    margin: 0 auto 2.5rem;
    text-align: center;
    max-width: 900px;
}

.prometric-test-desc {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0.9rem 0 0;
}

.prometric-test-label {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0.9rem 0 0.35rem;
}

.prometric-test-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.prometric-test-list li {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.5;
    position: relative;
    padding-left: 16px;
}

.prometric-test-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #ffffff;
}

.prometric-test-types {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.prometric-test-types li {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.5;
    position: relative;
    padding-left: 16px;
}

.prometric-test-types li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #ffffff;
}

.prometric-test-link {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0.9rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prometric-arrow {
    font-size: 16px;
    flex-shrink: 0;
}

.prometric-test-link a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

.prometric-test-link a:hover {
    color: #f0f0f0;
}

@media (max-width: 900px) {
    .prometric-tests-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .prometric-tests-section {
        padding: 2rem 1.5rem;
    }
    
    .prometric-test-card {
        padding: 1.5rem 1.2rem;
    }
    
    .prometric-tests-title {
        font-size: 1.3rem;
    }
}

/* =========================================================
   CELPIP PAGE — TESTS SECTION (TWO COLUMN LAYOUT)
   ========================================================= */

.celpip-tests-section {
    background: #ffffff;
    padding: 4rem 2rem 5rem;
}

.celpip-tests-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.celpip-tests-section-title {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    color: #0d1b2a;
    text-transform: uppercase;
    margin: 0 0 3.5rem;
}

.celpip-tests-item {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.celpip-tests-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.celpip-tests-item--reverse {
    grid-template-columns: 1fr 460px;
}

.celpip-tests-item--reverse .celpip-tests-left {
    order: 2;
}

.celpip-tests-item--reverse .celpip-tests-right {
    order: 1;
}

.celpip-tests-left {
    position: relative;
}

.celpip-tests-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
}

.celpip-tests-caption-left {
    background: #1565C0;
    padding: 0.9rem 1.25rem;
    border-radius: 8px 8px 8px 0;
    width: 80%;
    margin-left: 24%;
    margin-top: -11%;
    z-index: 9;
    position: relative;
}

.celpip-tests-caption-left span {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    display: block;
}

.celpip-tests-caption-right {
    background: #1565C0;
    padding: 0.9rem 1.25rem;
    border-radius: 8px 8px 0px 8px;
    width: 80%;
    margin-left: -19px;
    margin-top: -10%;
    z-index: 9;
    position: relative;
}

.celpip-tests-caption-right span {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    display: block;
}

.celpip-tests-right {
    padding-top: 0.25rem;
}

.celpip-tests-desc {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    line-height: 1.75;
    margin: 0 0 1rem;
}

.celpip-tests-desc:last-child {
    margin-bottom: 0;
}

.celpip-tests-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.celpip-tests-list li {
    padding-left: 1.4rem;
    position: relative;
    margin-bottom: 1rem;
}

.celpip-tests-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #000000;
}

.celpip-tests-item-name {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #084FA7;
    margin-bottom: 0.25rem;
}

.celpip-tests-item-desc {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .celpip-tests-item,
    .celpip-tests-item--reverse {
        grid-template-columns: 1fr;
    }
    
    .celpip-tests-item--reverse .celpip-tests-left,
    .celpip-tests-item--reverse .celpip-tests-right {
        order: unset;
    }
    
    .celpip-tests-img {
        height: 260px;
    }
}

/* =========================================================
   WHY CHOOSE AKSHAR SECTION
   ========================================================= */
.why-choose-section {
    padding: 4rem 1.5rem;
    background: rgb(227, 27, 51);
    position: relative;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 1rem;
    text-align: center;
}

.why-choose-intro {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.7;
    margin: 0 auto 3rem;
    text-align: center;
    max-width: 900px;
    font-weight: 500;
    opacity: 0.95;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-choose-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem 1.8rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    transform: translateY(-12px);
    background: #ffffff;
}

.why-choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgb(227, 27, 51);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(227, 27, 51, 0.3);
}

.why-choose-icon .checkmark {
    font-size: 40px;
    color: #ffffff;
    font-weight: 900;
}

.why-choose-item-title {
    font-size: 17px;
    font-weight: 800;
    color: rgb(227, 27, 51);
    margin: 0;
    line-height: 1.3;
}

.why-choose-item-desc {
    font-size: 14px;
    color: #444444;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .why-choose-item {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-choose-icon .checkmark {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .why-choose-title {
        font-size: 1.7rem;
    }
    
    .why-choose-item {
        padding: 1.5rem 1.2rem;
        gap: 1.2rem;
    }
    
    .why-choose-icon {
        width: 65px;
        height: 65px;
    }
    
    .why-choose-icon .checkmark {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 2.5rem 1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.8rem 1.2rem;
    }
    
    .why-choose-title {
        font-size: 1.5rem;
    }
    
    .why-choose-intro {
        font-size: 14px;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-choose-icon .checkmark {
        font-size: 28px;
    }
    
    .why-choose-item-title {
        font-size: 16px;
    }
    
    .why-choose-item-desc {
        font-size: 13px;
    }
}
    
    .why-choose-intro {
        font-size: 13px;
    }
    
    .why-choose-icon {
        width: 50px;
        height: 50px;
    }
    
    .why-choose-icon .checkmark {
        font-size: 24px;
    }


/* ==========================================================
   HAIRSTYLING PAGE — Hero Pointer Items
========================================================== */
.hs-hero-points {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hs-hero-points li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.5;
}

.hs-hero-points li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23084FA7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ==========================================================
   HAIRSTYLING PAGE — Course Structure Section extras
========================================================== */
.hs-cs-section {
    padding-top: 0;
    padding-bottom: 0;
}

.hs-cs-section .testing-wc-content {
    padding: 0;
}

.hs-cs-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #084FA7;
    margin: 0 0 0.6rem;
    line-height: 1.4;
}

.hs-cs-intro {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

/* ==========================================================
   HAIRSTYLING PAGE — Industry Collaboration Section
========================================================== */
.hs-collab-section {
    background-color: #084FA7;
    padding: 4rem 2rem;
    position: relative;
}

.hs-collab-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 21%);
    z-index: 0;
}

.hs-collab-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.hs-collab-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.3px;
}

.hs-collab-para {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.75;
    margin: 0;
}

.hs-collab-para strong {
    font-weight: 700;
    color: #ffffff;
}

/* Hairstyling — remove L/R padding on Academic & Enroll sections (desktop only) */
.hs-academic-wrap .hm-ac-row {
    padding-left: 0;
    padding-right: 0;
}

.hs-enroll-wrap .comptia-out-wrapper {
    padding-left: 0;
    padding-right: 0;
}

/* Override career-services global opacity:0 on services-btn */
.hs-collab-section .services-btn {
    opacity: 1;
    border-bottom-left-radius: 0;
}
