/* =========================================================
   GIT COMPUTER INSTITUTE
   FINAL STYLE SHEET
========================================================= */

:root {
    --navy: #061426;
    --dark-blue: #0a1d32;
    --blue: #168bff;
    --cyan: #19d7ff;
    --white: #f5f9ff;
    --muted: #91a4b8;

    --border: rgba(40, 150, 255, 0.20);
    --border-light: rgba(255, 255, 255, 0.07);

    --card: rgba(255, 255, 255, 0.025);

    --radius: 16px;
    --transition: 0.25s ease;

    --font: 'Inter',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}


body {
    font-family: var(--font);
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


img {
    max-width: 100%;
    display: block;
}


button,
input,
textarea {
    font-family: inherit;
}


button {
    -webkit-tap-highlight-color: transparent;
}


a {
    color: inherit;
}


/* =========================================================
   SELECTION
========================================================= */

::selection {
    background: rgba(25, 215, 255, 0.25);
    color: #fff;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 7px;
}


::-webkit-scrollbar-track {
    background: var(--navy);
}


::-webkit-scrollbar-thumb {
    background: rgba(22, 139, 255, 0.35);
    border-radius: 20px;
}


::-webkit-scrollbar-thumb:hover {
    background: rgba(25, 215, 255, 0.55);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(6, 20, 38, 0.86);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid var(--border);
}


.nav-inner {
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    min-width: 0;
}


.nav-logo-img {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    border-radius: 50%;

    object-fit: cover;

    border: 1px solid rgba(255, 255, 255, 0.10);

    background: rgba(255, 255, 255, 0.04);
}


.nav-logo-text {
    font-size: 17px;
    font-weight: 700;

    letter-spacing: -0.35px;

    white-space: nowrap;

    color: var(--white);
}


.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 20px;

    border-radius: 50px;

    background: var(--blue);

    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    border: 1px solid transparent;

    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}


.nav-cta:hover {
    background: var(--cyan);

    transform: translateY(-1px);

    box-shadow:
        0 7px 25px rgba(22, 139, 255, 0.20);
}


.nav-cta:active {
    transform: translateY(0);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 72vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 70px 0 80px;
}


/* Hero image wrapper */

.hero-bg {
    position: absolute;
    inset: 0;

    z-index: 0;

    overflow: hidden;

    background: #061426;
}


.hero-bg-img {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    opacity: 0.55;

    transform: scale(1.02);
}


/* Main overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(6, 20, 38, 0.96) 0%,
            rgba(6, 20, 38, 0.82) 35%,
            rgba(6, 20, 38, 0.55) 65%,
            rgba(6, 20, 38, 0.75) 100%
        ),
        linear-gradient(
            180deg,
            rgba(6, 20, 38, 0.35) 0%,
            rgba(6, 20, 38, 0.25) 55%,
            var(--navy) 100%
        );
}


/* Bottom fade */

.hero::after {
    content: '';

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 130px;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--navy)
        );
}


.hero-grid {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
}


.hero-content {
    max-width: 650px;
}


.hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 5px 14px;

    margin-bottom: 14px;

    border-radius: 50px;

    color: var(--cyan);

    background: rgba(25, 215, 255, 0.09);

    border: 1px solid rgba(25, 215, 255, 0.14);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.hero-title {
    font-size: clamp(38px, 5.5vw, 62px);

    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -1.8px;

    color: var(--white);
}


.hero-title .highlight {
    display: block;

    color: var(--blue);

    text-shadow:
        0 0 35px rgba(22, 139, 255, 0.15);
}


.hero-sub {
    margin-top: 12px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;

    line-height: 1.6;
}


.hero-tagline {
    margin-top: 7px;

    color: var(--white);

    font-size: 19px;

    font-weight: 600;

    letter-spacing: -0.2px;
}


.hero-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 27px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-primary,
.btn-secondary,
.btn-next,
.btn-skip,
.btn-edit {
    -webkit-tap-highlight-color: transparent;
}


.btn-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 25px;

    min-height: 46px;

    border-radius: 50px;

    border: 1px solid transparent;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
}


.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 35px rgba(22, 139, 255, 0.22);

    filter: brightness(1.05);
}


.btn-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding: 11px 23px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid var(--border);

    color: var(--white);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition),
        color var(--transition);
}


.btn-secondary:hover {
    border-color: rgba(25, 215, 255, 0.45);

    background: rgba(25, 215, 255, 0.06);

    color: var(--cyan);

    transform: translateY(-2px);
}


.btn-primary svg,
.btn-secondary svg,
.btn-next svg,
.btn-submit svg {
    flex-shrink: 0;
}


/* =========================================================
   SECTION COMMON
========================================================= */

.section-header {
    text-align: center;

    margin-bottom: 38px;
}


.section-tag {
    display: inline-flex;

    align-items: center;

    padding: 5px 14px;

    margin-bottom: 9px;

    border-radius: 50px;

    color: var(--cyan);

    background: rgba(25, 215, 255, 0.055);

    border: 1px solid rgba(25, 215, 255, 0.10);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.1px;

    text-transform: uppercase;
}


.section-title {
    color: var(--white);

    font-size: clamp(28px, 4vw, 40px);

    line-height: 1.15;

    font-weight: 750;

    letter-spacing: -0.8px;
}


.section-desc {
    margin-top: 6px;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   COURSES
========================================================= */

.courses {
    position: relative;

    padding: 75px 0;

    border-top: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(22, 139, 255, 0.035),
            transparent 50%
        );
}


.courses-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(145px, 1fr)
        );

    gap: 12px;
}


.course-card {
    position: relative;

    min-height: 122px;

    padding: 17px 11px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 7px;

    text-align: center;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    background: var(--card);

    color: var(--muted);

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    user-select: none;

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}


.course-card::before {
    content: '';

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--blue),
            var(--cyan),
            transparent
        );

    opacity: 0;

    transition: opacity var(--transition);
}


.course-card:hover {
    transform: translateY(-4px);

    color: var(--white);

    border-color:
        rgba(22, 139, 255, 0.55);

    background:
        rgba(22, 139, 255, 0.055);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);
}


.course-card:hover::before {
    opacity: 1;
}


.course-card:active {
    transform: translateY(-1px);
}


.course-icon {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 23px;

    filter:
        grayscale(0.25);

    opacity: 0.72;

    transition:
        transform var(--transition),
        opacity var(--transition);
}


.course-card:hover .course-icon {
    opacity: 1;

    transform: scale(1.08);
}


.course-card .cat {
    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    color:
        rgba(22, 139, 255, 0.55);
}


/* =========================================================
   ENQUIRY
========================================================= */

.enquiry {
    padding: 75px 0;

    border-top: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(22, 139, 255, 0.035),
            transparent 48%
        );
}


/* =========================================================
   PROGRESS
========================================================= */

.progress {
    width: 100%;

    max-width: 560px;

    margin: 0 auto 34px;
}


.progress-bar {
    height: 3px;

    margin-bottom: 13px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.06);
}


.progress-bar::after {
    content: '';

    display: block;

    width: 0%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

    transition:
        width 0.35s ease;
}


.progress-steps {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 2px;
}


.step-indicator {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.035);

    border: 1px solid var(--border);

    color: var(--muted);

    font-size: 12px;

    font-weight: 700;

    transition:
        all var(--transition);
}


.step-indicator.active {
    background: var(--blue);

    border-color: var(--blue);

    color: #fff;

    box-shadow:
        0 0 22px rgba(22, 139, 255, 0.20);
}


.step-indicator.done {
    background:
        rgba(22, 139, 255, 0.12);

    border-color:
        rgba(22, 139, 255, 0.30);

    color: var(--cyan);
}


.progress-label {
    margin-top: 9px;

    text-align: center;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   FORM
========================================================= */

.form-container {
    width: 100%;

    max-width: 560px;

    margin: 0 auto;
}


.form-step {
    display: none;

    animation:
        fadeSlide 0.28s ease;
}


.form-step.active {
    display: block;
}


@keyframes fadeSlide {

    from {
        opacity: 0;

        transform:
            translateY(8px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


.step-title {
    margin-bottom: 20px;

    color: var(--white);

    font-size: 20px;

    font-weight: 650;

    letter-spacing: -0.3px;
}


/* =========================================================
   FORM GROUPS
========================================================= */

.form-group {
    margin-bottom: 18px;
}


.form-group label {
    display: block;

    margin-bottom: 6px;

    color: var(--muted);

    font-size: 12px;

    font-weight: 600;
}


.required {
    color: var(--cyan);
}


.input-icon-wrap {
    position: relative;
}


.input-icon {
    position: absolute;

    left: 15px;

    top: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--muted);

    opacity: 0.35;

    transform:
        translateY(-50%);

    pointer-events: none;

    transition:
        opacity var(--transition),
        color var(--transition);
}


.input-icon-wrap:focus-within .input-icon {
    color: var(--cyan);

    opacity: 0.75;
}


.input-icon-wrap input,
.input-icon-wrap textarea,
.form-group > input,
.form-group > textarea {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    outline: none;

    background:
        rgba(255, 255, 255, 0.025);

    color: var(--white);

    font-size: 14px;

    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}


.input-icon-wrap input {
    min-height: 50px;

    padding:
        13px
        15px
        13px
        46px;
}


.input-icon-wrap textarea {
    min-height: 100px;

    padding: 14px 16px;

    resize: vertical;
}


.form-group > input {
    min-height: 50px;

    padding: 13px 15px;
}


.form-group > textarea {
    padding: 14px 15px;

    resize: vertical;
}


.input-icon-wrap input:focus,
.input-icon-wrap textarea:focus,
.form-group > input:focus,
.form-group > textarea:focus {
    border-color:
        rgba(22, 139, 255, 0.75);

    background:
        rgba(255, 255, 255, 0.035);

    box-shadow:
        0 0 0 3px
        rgba(22, 139, 255, 0.055);
}


input::placeholder,
textarea::placeholder {
    color: var(--muted);

    opacity: 0.30;
}


/* =========================================================
   CUSTOM SELECT
========================================================= */

.custom-select-wrapper {
    position: relative;

    width: 100%;
}


.custom-select-wrapper > input[type="text"] {
    width: 100%;

    min-height: 50px;

    padding: 13px 15px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    outline: none;

    background:
        rgba(255, 255, 255, 0.025);

    color: var(--white);

    font-size: 14px;

    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}


.custom-select-wrapper > input[type="text"]:focus {
    border-color:
        rgba(22, 139, 255, 0.75);

    background:
        rgba(255, 255, 255, 0.035);

    box-shadow:
        0 0 0 3px
        rgba(22, 139, 255, 0.055);
}


.custom-select-options {
    position: absolute;

    top: calc(100% + 7px);

    left: 0;
    right: 0;

    z-index: 100;

    display: none;

    max-height: 220px;

    overflow-y: auto;

    padding: 6px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background:
        rgba(10, 29, 50, 0.98);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(15px);
}


.custom-select-options.show {
    display: block;
}


.custom-select-options .opt {
    padding: 10px 13px;

    border-radius: 10px;

    color: var(--muted);

    font-size: 13px;

    cursor: pointer;

    transition:
        background var(--transition),
        color var(--transition);
}


.custom-select-options .opt:hover,
.custom-select-options .opt.highlighted {
    color: var(--white);

    background:
        rgba(22, 139, 255, 0.10);
}


.custom-select-options .opt.selected {
    color: #fff;

    background: var(--blue);
}


/* =========================================================
   FORM NAVIGATION
========================================================= */

.form-nav {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 8px;
}


.btn-next {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 45px;

    padding: 11px 25px;

    border: 1px solid transparent;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        opacity var(--transition);
}


.btn-next:hover {
    transform: translateY(-2px);

    box-shadow:
        0 9px 30px rgba(22, 139, 255, 0.18);
}


.btn-next:active {
    transform: translateY(0);
}


.btn-next:disabled {
    opacity: 0.55;

    cursor: not-allowed;

    transform: none;

    box-shadow: none;
}


.btn-skip {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 43px;

    padding: 10px 19px;

    border-radius: 50px;

    border: 1px solid var(--border);

    background: transparent;

    color: var(--muted);

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition);
}


.btn-skip:hover {
    color: var(--white);

    border-color:
        rgba(22, 139, 255, 0.55);

    background:
        rgba(22, 139, 255, 0.05);
}


/* =========================================================
   INLINE ERRORS
========================================================= */

.inline-error {
    color: #ff7777 !important;

    font-size: 12px !important;

    margin-top: 5px;

    font-weight: 500 !important;
}


/* =========================================================
   SUBMIT FEEDBACK
========================================================= */

.submit-feedback {
    display: none;

    margin-top: 16px;

    padding: 15px 17px;

    border-radius: var(--radius);

    font-size: 14px;

    line-height: 1.6;
}


.submit-feedback.success {
    display: block;

    color: var(--cyan);

    border:
        1px solid
        rgba(25, 215, 255, 0.12);

    background:
        rgba(25, 215, 255, 0.055);
}


.submit-feedback.error {
    display: block;

    color: #ff7777;

    border:
        1px solid
        rgba(255, 70, 70, 0.12);

    background:
        rgba(255, 70, 70, 0.055);
}


/* =========================================================
   SPINNER
========================================================= */

.spinner {
    width: 15px;
    height: 15px;

    display: inline-block;

    border-radius: 50%;

    border:
        2px solid
        rgba(255, 255, 255, 0.35);

    border-top-color: #fff;

    animation:
        spin 0.7s linear infinite;
}


@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   ABOUT
========================================================= */

.about {
    padding: 75px 0;

    border-top: 1px solid var(--border);
}


.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 35px;

    align-items: start;
}


.about-text p {
    margin-bottom: 11px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


.about-text strong {
    color: var(--white);
}


.about-text .tagline {
    margin-top: 15px;

    color: var(--blue);

    font-size: 18px;

    font-weight: 700;
}


.about-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    align-content: flex-start;
}


.about-tags span {
    display: inline-flex;

    padding: 8px 15px;

    border-radius: 50px;

    border: 1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.025);

    color: var(--muted);

    font-size: 12px;

    font-weight: 500;

    transition:
        border-color var(--transition),
        color var(--transition),
        background var(--transition);
}


.about-tags span:hover {
    color: var(--white);

    border-color:
        rgba(22, 139, 255, 0.45);

    background:
        rgba(22, 139, 255, 0.04);
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    padding: 75px 0;

    border-top: 1px solid var(--border);
}


.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 14px;
}


.contact-card {
    padding: 21px;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.022);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}


.contact-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(22, 139, 255, 0.38);

    background:
        rgba(22, 139, 255, 0.035);
}


.contact-card.full {
    grid-column: 1 / -1;
}


.contact-card .contact-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 9px;

    color: var(--blue);

    opacity: 0.75;
}


.contact-card h4 {
    margin-bottom: 3px;

    color: var(--muted);

    font-size: 12px;

    font-weight: 600;
}


.contact-card p {
    color: var(--white);

    font-size: 14px;

    line-height: 1.65;
}


.contact-card a {
    color: var(--blue);

    text-decoration: none;

    transition:
        color var(--transition);
}


.contact-card a:hover {
    color: var(--cyan);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 30px 0;

    border-top: 1px solid var(--border);

    text-align: center;

    background:
        rgba(0, 0, 0, 0.08);
}


.footer p {
    color: var(--muted);

    font-size: 12px;
}


.footer strong {
    color: var(--white);
}


.footer-small {
    margin-top: 4px;

    opacity: 0.45;

    font-size: 11px !important;
}


/* =========================================================
   FOCUS ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--cyan);

    outline-offset: 3px;
}


/* =========================================================
   MOBILE — 820px
========================================================= */

@media (max-width: 820px) {

    .hero {
        min-height: auto;

        padding:
            65px 0
            75px;
    }


    .hero-grid {
        grid-template-columns: 1fr;

        gap: 0;

        text-align: center;
    }


    .hero-content {
        max-width: 700px;

        margin: 0 auto;
    }


    .hero-actions {
        justify-content: center;
    }


    .hero-bg-img {
        object-position: center center;

        opacity: 0.42;
    }


    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(6, 20, 38, 0.92) 0%,
                rgba(6, 20, 38, 0.66) 50%,
                rgba(6, 20, 38, 0.92) 100%
            );
    }


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

}


/* =========================================================
   MOBILE — 600px
========================================================= */

@media (max-width: 600px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }


    .nav-inner {
        min-height: 58px;
    }


    .nav-logo-img {
        width: 35px;
        height: 35px;
    }


    .nav-logo-text {
        font-size: 14px;
    }


    .nav-cta {
        padding: 7px 14px;

        font-size: 11px;
    }


    .hero {
        padding:
            55px 0
            65px;
    }


    .hero-title {
        font-size: clamp(
            35px,
            12vw,
            48px
        );

        letter-spacing: -1.2px;
    }


    .hero-sub {
        font-size: 12px;
    }


    .hero-tagline {
        font-size: 16px;
    }


    .hero-actions {
        gap: 9px;
    }


    .btn-primary,
    .btn-secondary {
        min-height: 44px;

        padding:
            10px 18px;

        font-size: 13px;
    }


    .courses,
    .enquiry,
    .about,
    .contact {
        padding:
            60px 0;
    }


    .section-header {
        margin-bottom: 30px;
    }


    .section-title {
        font-size: 27px;
    }


    .section-desc {
        font-size: 13px;
    }


    .courses-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 9px;
    }


    .course-card {
        min-height: 110px;

        padding:
            13px 7px;

        font-size: 11px;
    }


    .course-card .cat {
        font-size: 7px;
    }


    .course-icon {
        font-size: 21px;
    }


    .progress {
        margin-bottom: 27px;
    }


    .step-indicator {
        width: 30px;
        height: 30px;

        font-size: 11px;
    }


    .step-title {
        font-size: 19px;
    }


    .form-nav {
        width: 100%;
    }


    .btn-next {
        min-height: 44px;

        padding:
            10px 21px;
    }


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


    .contact-card.full {
        grid-column: auto;
    }

}


/* =========================================================
   MOBILE — 400px
========================================================= */

@media (max-width: 400px) {

    .nav-logo-text {
        max-width: 150px;

        overflow: hidden;

        text-overflow: ellipsis;
    }


    .nav-cta {
        padding:
            7px 11px;
    }


    .hero-title {
        font-size: 34px;
    }


    .hero-actions {
        flex-direction: column;

        width: 100%;
    }


    .hero-actions a {
        width: 100%;
    }


    .courses-grid {
        gap: 7px;
    }


    .course-card {
        min-height: 104px;

        border-radius: 13px;
    }


    .progress-steps {
        padding: 0;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

}
