/* =========================================================
   NCLEX RESULT - GLOBAL STYLES
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #17233c;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    height: 76px;
    background: #ffffff;
    border-bottom: 1px solid #e9edf4;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 800;
    color: #17264b;
}

.logo-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #4169e1,
        #7649e8
    );

    box-shadow:
        0 8px 20px rgba(66, 99, 235, 0.22);
}

.logo-light {
    font-weight: 400;
    margin-left: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;

    color: #606b80;

    font-size: 14px;
}

.nav-links a {
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #4263eb;
}

.login-link {
    font-weight: 700;
}

.nav-button {
    padding: 10px 18px;

    border-radius: 8px;

    color: #ffffff !important;

    background: linear-gradient(
        135deg,
        #4263eb,
        #7549e8
    );

    font-weight: 700;

    transition: 0.2s ease;
}

.nav-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(66, 99, 235, 0.25);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 90px 0 100px;

    background:
        radial-gradient(
            circle at 85% 20%,
            #eef1ff,
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #f8faff,
            #ffffff
        );
}

.hero-container {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.hero-badge {
    display: inline-block;

    padding: 8px 14px;

    border-radius: 30px;

    background: #edf1ff;

    color: #4263eb;

    font-size: 13px;

    font-weight: 700;
}

.hero h1 {
    margin-top: 20px;

    font-size: clamp(
        42px,
        5vw,
        68px
    );

    line-height: 1.05;

    letter-spacing: -2px;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #4263eb,
            #8b4ee8
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-content > p {
    max-width: 570px;

    margin-top: 25px;

    color: #687389;

    font-size: 17px;
}

.hero-buttons {
    display: flex;

    gap: 14px;

    margin-top: 30px;
}

.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 23px;

    border-radius: 9px;

    font-weight: 700;

    transition: 0.2s ease;
}

.primary-button {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #4263eb,
            #7549e8
        );
}

.primary-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(66, 99, 235, 0.25);
}

.secondary-button {
    border: 1px solid #d5dbe8;

    color: #263452;

    background: #ffffff;
}

.secondary-button:hover {
    border-color: #4263eb;

    color: #4263eb;
}

.hero-stats {
    display: flex;

    gap: 45px;

    margin-top: 40px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 20px;
}

.hero-stats span {
    color: #858da0;
    font-size: 12px;
}


/* =========================================================
   DASHBOARD PREVIEW
   ========================================================= */

.dashboard-preview {
    overflow: hidden;

    border-radius: 16px;

    background: #ffffff;

    border: 1px solid #e5e9f1;

    box-shadow:
        0 30px 80px
        rgba(30, 45, 80, 0.16);
}

.preview-header {
    height: 58px;

    padding: 0 18px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid #edf0f5;
}

.preview-logo {
    font-size: 13px;

    font-weight: 800;

    color: #304b9b;
}

.preview-user {
    width: 31px;
    height: 31px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #edf1ff;
}

.preview-layout {
    display: flex;

    min-height: 380px;
}

.preview-sidebar {
    width: 175px;

    padding: 20px 10px;

    background: #1e2943;
}

.preview-menu {
    padding: 11px;

    margin-bottom: 5px;

    border-radius: 6px;

    color: #b8c2d6;

    font-size: 11px;

    transition: 0.2s ease;
}

.preview-menu:hover {
    color: #ffffff;
    background: #2a3858;
}

.preview-menu.active {
    color: #ffffff;

    background: #4263eb;
}

.preview-content {
    flex: 1;

    padding: 28px;

    background: #f7f8fc;
}

.small-text {
    color: #4263eb;

    font-size: 9px;

    font-weight: 800;
}

.preview-content h3 {
    margin-top: 4px;

    font-size: 21px;
}

.muted {
    color: #858da0;

    font-size: 12px;
}

.preview-cards {
    display: flex;

    gap: 14px;

    margin-top: 22px;
}

.preview-card {
    flex: 1;

    padding: 16px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 5px 18px
        rgba(20, 35, 70, 0.06);
}

.preview-card span {
    display: block;

    color: #8a92a5;

    font-size: 10px;
}

.preview-card strong {
    display: block;

    margin-top: 4px;

    color: #4263eb;

    font-size: 24px;
}

.progress-box {
    margin-top: 18px;

    padding: 20px;

    border-radius: 10px;

    background: #ffffff;
}

.progress-title {
    display: flex;

    justify-content: space-between;

    font-size: 12px;

    font-weight: 700;
}

.progress-title strong {
    color: #4263eb;
}

.progress-bar {
    height: 8px;

    margin-top: 14px;

    overflow: hidden;

    border-radius: 20px;

    background: #e8ebf4;
}

.progress-bar div {
    width: 78%;

    height: 100%;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #4263eb,
            #8b4ee8
        );
}


/* =========================================================
   FEATURES
   ========================================================= */

.features {
    padding: 100px 0;
}

.section-heading {
    max-width: 650px;

    margin: auto;

    text-align: center;
}

.section-heading span,
.section-label {
    color: #4263eb;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.section-heading h2 {
    margin-top: 10px;

    font-size: 38px;

    line-height: 1.2;
}

.section-heading p {
    margin-top: 15px;

    color: #717b90;
}

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 55px;
}

.feature-card {
    padding: 28px;

    border: 1px solid #e8ebf2;

    border-radius: 14px;

    background: #ffffff;

    transition: 0.25s;
}

.feature-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 40px
        rgba(35, 50, 90, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: #eef1ff;

    font-size: 22px;
}

.feature-card h3 {
    margin-top: 20px;

    font-size: 18px;
}

.feature-card p {
    margin-top: 9px;

    color: #737d91;

    font-size: 14px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
    padding: 90px 0;

    background: #f7f9fd;
}

.about-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about h2 {
    max-width: 530px;

    margin-top: 10px;

    font-size: 38px;

    line-height: 1.2;
}

.about-text p {
    margin-bottom: 17px;

    color: #687389;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
    padding: 70px 0;

    color: #ffffff;

    background:
        linear-gradient(
            120deg,
            #4263eb,
            #7549e8
        );
}

.cta-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.cta-container span {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.cta h2 {
    margin-top: 8px;

    font-size: 30px;
}

.white-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 23px;

    border-radius: 9px;

    background: #ffffff;

    color: #4263eb;

    font-weight: 700;

    transition: 0.2s ease;
}

.white-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding-top: 50px;

    background: #111a2d;

    color: #ffffff;
}

.footer-container {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding-bottom: 40px;
}

.footer-logo {
    color: #ffffff;
}

.footer-container p {
    margin-top: 12px;

    color: #929bb0;

    font-size: 14px;
}

.footer-links {
    display: flex;

    gap: 25px;

    color: #b3bbcc;

    font-size: 14px;
}

.footer-links a {
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    padding: 20px;

    border-top: 1px solid #273149;

    text-align: center;

    color: #7f899f;

    font-size: 12px;
}


/* =========================================================
   AUTH PAGES
   Login / Register
   ========================================================= */

.auth-page {
    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    background:
        radial-gradient(
            circle at top right,
            #eef1ff,
            transparent 35%
        ),
        #f7f9fd;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    padding: 35px;

    border: 1px solid #e4e8f0;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 25px 60px rgba(25, 40, 75, 0.10);
}

.auth-logo {
    display: flex;

    justify-content: center;

    margin-bottom: 25px;
}

.auth-title {
    text-align: center;
}

.auth-title h1 {
    font-size: 28px;
}

.auth-title p {
    margin-top: 7px;

    color: #7a8497;

    font-size: 14px;
}

.auth-form {
    margin-top: 28px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #34415c;

    font-size: 13px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid #dce2ed;

    border-radius: 8px;

    outline: none;

    background: #ffffff;

    color: #17233c;

    transition: 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4263eb;

    box-shadow:
        0 0 0 3px rgba(66, 99, 235, 0.10);
}

.password-hint {
    margin-top: 6px;

    color: #8a92a5;

    font-size: 11px;
}

.auth-button {
    width: 100%;

    padding: 13px;

    border: none;

    border-radius: 9px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #4263eb,
            #7549e8
        );

    font-weight: 700;

    transition: 0.2s ease;
}

.auth-button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(66, 99, 235, 0.22);
}

.auth-footer {
    margin-top: 20px;

    text-align: center;

    color: #7c8598;

    font-size: 13px;
}

.auth-footer a {
    color: #4263eb;

    font-weight: 700;
}


/* =========================================================
   DASHBOARD
   ========================================================= */

.dashboard-page {
    min-height: 100vh;

    background: #f5f7fb;
}

.dashboard-layout {
    min-height: 100vh;

    display: flex;
}


/* SIDEBAR */

.dashboard-sidebar {
    width: 250px;

    position: fixed;

    top: 0;
    bottom: 0;
    left: 0;

    padding: 22px 14px;

    background: #1e2943;

    overflow-y: auto;
}

.dashboard-sidebar .logo {
    padding: 0 10px 25px;

    color: #ffffff;
}

.dashboard-sidebar .logo-box {
    flex-shrink: 0;
}

.sidebar-section {
    margin-top: 20px;
}

.sidebar-label {
    padding: 0 12px 8px;

    color: #7886a3;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.sidebar-menu {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 11px 12px;

    margin-bottom: 4px;

    border-radius: 8px;

    color: #b9c3d7;

    font-size: 13px;

    transition: 0.2s ease;
}

.sidebar-menu:hover {
    color: #ffffff;

    background: #293754;
}

.sidebar-menu.active {
    color: #ffffff;

    background: #4263eb;

    box-shadow:
        0 7px 18px rgba(66, 99, 235, 0.20);
}

.sidebar-icon {
    width: 22px;

    text-align: center;

    font-size: 16px;
}


/* MAIN */

.dashboard-main {
    width: calc(100% - 250px);

    margin-left: 250px;
}


/* TOPBAR */

.dashboard-topbar {
    height: 72px;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #ffffff;

    border-bottom: 1px solid #e7ebf2;

    position: sticky;

    top: 0;

    z-index: 100;
}

.dashboard-search {
    width: 280px;

    position: relative;
}

.dashboard-search input {
    width: 100%;

    padding: 10px 14px 10px 38px;

    border: 1px solid #e1e6ef;

    border-radius: 8px;

    outline: none;

    background: #f8f9fc;
}

.dashboard-search span {
    position: absolute;

    left: 13px;

    top: 50%;

    transform: translateY(-50%);

    color: #8992a5;
}

.dashboard-user {
    display: flex;

    align-items: center;

    gap: 10px;
}

.user-avatar {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #4263eb,
            #7549e8
        );

    font-weight: 700;
}

.user-info {
    display: flex;

    flex-direction: column;
}

.user-info strong {
    font-size: 13px;
}

.user-info span {
    color: #8992a5;

    font-size: 11px;
}


/* DASHBOARD CONTENT */

.dashboard-content {
    padding: 30px;
}

.dashboard-heading {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.dashboard-heading h1 {
    font-size: 28px;
}

.dashboard-heading p {
    margin-top: 4px;

    color: #7d8799;

    font-size: 13px;
}


/* STAT CARDS */

.dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 25px;
}

.stat-card {
    padding: 22px;

    border: 1px solid #e5e9f0;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 5px 18px rgba(30, 45, 80, 0.04);
}

.stat-top {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.stat-icon {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: #eef1ff;

    color: #4263eb;
}

.stat-card span {
    color: #8a92a5;

    font-size: 12px;
}

.stat-card h2 {
    margin-top: 8px;

    font-size: 27px;
}


/* DASHBOARD GRID */

.dashboard-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr;

    gap: 20px;

    margin-top: 20px;
}

.dashboard-panel {
    padding: 22px;

    border: 1px solid #e5e9f0;

    border-radius: 12px;

    background: #ffffff;
}

.panel-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}

.panel-header h3 {
    font-size: 17px;
}

.panel-header a {
    color: #4263eb;

    font-size: 12px;

    font-weight: 700;
}


/* COURSE CARD */

.course-list {
    margin-top: 18px;

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.course-card {
    padding: 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    border: 1px solid #edf0f5;

    border-radius: 10px;

    transition: 0.2s ease;
}

.course-card:hover {
    border-color: #d5dcf2;

    transform: translateY(-1px);
}

.course-info {
    display: flex;

    align-items: center;

    gap: 12px;
}

.course-icon {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background: #eef1ff;

    color: #4263eb;
}

.course-info h4 {
    font-size: 13px;
}

.course-info p {
    margin-top: 2px;

    color: #8a92a5;

    font-size: 11px;
}

.course-progress {
    width: 100px;
}

.course-progress span {
    display: block;

    text-align: right;

    color: #4263eb;

    font-size: 10px;

    font-weight: 700;
}

.mini-progress {
    height: 6px;

    margin-top: 5px;

    border-radius: 10px;

    overflow: hidden;

    background: #e9edf5;
}

.mini-progress div {
    height: 100%;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #4263eb,
            #7549e8
        );
}


/* QUICK ACTIONS */

.quick-actions {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 18px;
}

.quick-action {
    padding: 18px;

    border: 1px solid #edf0f5;

    border-radius: 10px;

    background: #ffffff;

    transition: 0.2s ease;
}

.quick-action:hover {
    border-color: #4263eb;

    transform: translateY(-2px);
}

.quick-action-icon {
    font-size: 21px;
}

.quick-action h4 {
    margin-top: 9px;

    font-size: 13px;
}

.quick-action p {
    margin-top: 3px;

    color: #8a92a5;

    font-size: 10px;
}


/* =========================================================
   INNER DASHBOARD PAGES
   Courses / Results / Attendance / Assignments /
   Study Material / Profile / Settings
   ========================================================= */

.page-header {
    margin-bottom: 25px;
}

.page-header h1 {
    font-size: 27px;
}

.page-header p {
    margin-top: 4px;

    color: #7d8799;

    font-size: 13px;
}

.content-card {
    padding: 24px;

    border: 1px solid #e5e9f0;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 5px 18px rgba(30, 45, 80, 0.04);
}


/* TABLE */

.table-wrapper {
    width: 100%;

    overflow-x: auto;
}

.data-table {
    width: 100%;

    border-collapse: collapse;

    margin-top: 10px;
}

.data-table th {
    padding: 13px;

    border-bottom: 1px solid #e8ebf2;

    color: #687389;

    background: #f8f9fc;

    text-align: left;

    font-size: 12px;
}

.data-table td {
    padding: 14px 13px;

    border-bottom: 1px solid #edf0f5;

    font-size: 13px;
}

.data-table tr:last-child td {
    border-bottom: none;
}


/* STATUS */

.status {
    display: inline-flex;

    align-items: center;

    padding: 4px 9px;

    border-radius: 20px;

    font-size: 10px;

    font-weight: 700;
}

.status.success {
    color: #15803d;

    background: #eaf8ef;
}

.status.warning {
    color: #b7791f;

    background: #fff7df;
}

.status.danger {
    color: #c53030;

    background: #fff0f0;
}

.status.info {
    color: #4263eb;

    background: #eef1ff;
}


/* =========================================================
   PROFILE
   ========================================================= */

.profile-grid {
    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 20px;
}

.profile-card {
    padding: 25px;

    text-align: center;

    border: 1px solid #e5e9f0;

    border-radius: 12px;

    background: #ffffff;
}

.profile-avatar {
    width: 90px;
    height: 90px;

    display: grid;

    place-items: center;

    margin: auto;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #4263eb,
            #7549e8
        );

    font-size: 30px;

    font-weight: 800;
}

.profile-card h3 {
    margin-top: 15px;

    font-size: 18px;
}

.profile-card p {
    margin-top: 3px;

    color: #8992a5;

    font-size: 12px;
}

.profile-details {
    padding: 25px;

    border: 1px solid #e5e9f0;

    border-radius: 12px;

    background: #ffffff;
}

.profile-details h3 {
    margin-bottom: 20px;
}


/* =========================================================
   SETTINGS
   ========================================================= */

.settings-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.setting-item {
    padding: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: 1px solid #edf0f5;

    border-radius: 10px;
}

.setting-info h4 {
    font-size: 14px;
}

.setting-info p {
    margin-top: 3px;

    color: #8a92a5;

    font-size: 11px;
}


/* TOGGLE */

.toggle {
    width: 45px;
    height: 24px;

    position: relative;

    border-radius: 30px;

    background: #dfe4ed;

    cursor: pointer;
}

.toggle::after {
    content: "";

    width: 18px;
    height: 18px;

    position: absolute;

    top: 3px;
    left: 3px;

    border-radius: 50%;

    background: #ffffff;

    transition: 0.2s ease;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.12);
}

.toggle.active {
    background: #4263eb;
}

.toggle.active::after {
    left: 24px;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.empty-state {
    padding: 60px 20px;

    text-align: center;
}

.empty-icon {
    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    margin: auto;

    border-radius: 50%;

    background: #eef1ff;

    color: #4263eb;

    font-size: 25px;
}

.empty-state h3 {
    margin-top: 15px;

    font-size: 18px;
}

.empty-state p {
    max-width: 450px;

    margin: 7px auto 0;

    color: #8992a5;

    font-size: 13px;
}


/* =========================================================
   ALERTS
   ========================================================= */

.alert {
    padding: 12px 14px;

    margin-bottom: 15px;

    border-radius: 8px;

    font-size: 12px;
}

.alert.success {
    color: #166534;

    background: #ecfdf3;

    border: 1px solid #c8f1d8;
}

.alert.error {
    color: #b42318;

    background: #fff1f0;

    border: 1px solid #ffd1cd;
}

.alert.info {
    color: #1d4ed8;

    background: #eff6ff;

    border: 1px solid #d7e8ff;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 10px 16px;

    border: none;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 700;

    transition: 0.2s ease;
}

.btn-primary {
    color: #ffffff;

    background: #4263eb;
}

.btn-primary:hover {
    background: #3655d8;
}

.btn-secondary {
    color: #34415c;

    background: #eef1f5;
}

.btn-danger {
    color: #ffffff;

    background: #dc3545;
}

.btn-danger:hover {
    background: #bd2635;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .hero-container {
        gap: 40px;
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .dashboard-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   RESPONSIVE - 950px
   ========================================================= */

@media (max-width: 950px) {

    .hero-container {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        width: 220px;
    }

    .dashboard-main {
        width: calc(100% - 220px);

        margin-left: 220px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .navbar {
        height: 68px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a:nth-child(1),
    .nav-links a:nth-child(2),
    .nav-links a:nth-child(3) {
        display: none;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 25px;
    }

    .dashboard-preview {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .about h2,
    .section-heading h2 {
        font-size: 30px;
    }

    .cta-container {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    /* Dashboard mobile */

    .dashboard-sidebar {
        width: 70px;

        padding: 15px 8px;
    }

    .dashboard-sidebar .logo {
        justify-content: center;

        padding-left: 0;
        padding-right: 0;
    }

    .dashboard-sidebar .logo span:not(.logo-box) {
        display: none;
    }

    .sidebar-label {
        display: none;
    }

    .sidebar-menu {
        justify-content: center;

        padding: 12px;
    }

    .sidebar-menu span:not(.sidebar-icon) {
        display: none;
    }

    .dashboard-main {
        width: calc(100% - 70px);

        margin-left: 70px;
    }

    .dashboard-topbar {
        padding: 0 15px;
    }

    .dashboard-search {
        display: none;
    }

    .dashboard-content {
        padding: 20px 15px;
    }

    .dashboard-heading {
        flex-direction: column;

        align-items: flex-start;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .course-card {
        flex-direction: column;

        align-items: flex-start;
    }

    .course-progress {
        width: 100%;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .setting-item {
        align-items: flex-start;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 450px) {

    .container {
        width: 90%;
    }

    .logo {
        font-size: 17px;
    }

    .logo-box {
        width: 34px;
        height: 34px;
    }

    .nav-button {
        padding: 8px 12px;

        font-size: 12px;
    }

    .hero h1 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .auth-card {
        padding: 25px 20px;
    }

    .dashboard-heading h1 {
        font-size: 23px;
    }

    .dashboard-panel,
    .content-card {
        padding: 17px;
    }
}


/* =========================================================
   UTILITY CLASSES
   ========================================================= */

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none !important;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.w-full {
    width: 100%;
}