/* =========================================================
   JOBBODH - PUBLIC WEBSITE
   File: public/assets/web/style.css
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
    --primary: #84BA3F;
    --primary-dark: #6FA52F;
    --primary-light: #F0F8E8;
    --primary-lighter: #F7FBF2;

    --dark: #0F172A;
    --dark-2: #1E293B;

    --text: #334155;
    --text-light: #64748B;
    --muted: #94A3B8;

    --white: #FFFFFF;
    --light: #F8FAFC;
    --border: #E2E8F0;

    --success: #16A34A;
    --success-light: #DCFCE7;

    --warning: #D97706;
    --warning-light: #FEF3C7;

    --danger: #DC2626;
    --danger-light: #FEE2E2;

    --info: #2563EB;
    --info-light: #DBEAFE;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow: 0 5px 20px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 15px 40px rgba(15, 23, 42, 0.10);

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;

    --container: 1200px;
}


/* =========================================================
   2. GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--light);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

::selection {
    background: var(--primary);
    color: var(--white);
}


/* =========================================================
   3. TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

p {
    margin-bottom: 15px;
}

.text-primary {
    color: var(--primary) !important;
}

.text-muted {
    color: var(--text-light) !important;
}

.text-dark {
    color: var(--dark) !important;
}


/* =========================================================
   4. HEADER
========================================================= */

.web-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.web-navbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.web-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.web-logo span {
    color: var(--primary);
}

.web-logo img {
    max-height: 45px;
    width: auto;
}

.web-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.web-nav a {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
    transition: all 0.2s ease;
}

.web-nav a:hover,
.web-nav a.active {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.web-nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 25px;
    color: var(--dark);
}


/* =========================================================
   5. HERO SECTION
========================================================= */

.hero-section {
    background:
        linear-gradient(
            135deg,
            var(--primary-lighter),
            var(--white)
        );

    padding: 75px 0 85px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 30px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
    font-size: 17px;
}


/* =========================================================
   6. SEARCH BOX
========================================================= */

.search-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

.search-input {
    width: 100%;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 15px 0 45px;
    outline: none;
    color: var(--dark);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.search-button {
    height: 50px;
    padding: 0 25px;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: all 0.2s ease;
}

.search-button:hover {
    background: var(--primary-dark);
}


/* =========================================================
   7. SECTION
========================================================= */

.section {
    padding: 70px 0;
}

.section-sm {
    padding: 45px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.section-heading {
    margin-bottom: 5px;
}

.section-subtitle {
    color: var(--text-light);
    margin: 0;
}

.section-link {
    color: var(--primary-dark);
    font-weight: 600;
}

.section-link:hover {
    color: var(--primary);
}


/* =========================================================
   8. CATEGORY CARDS
========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.category-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 7px;
}

.category-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

.category-count {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--primary-dark);
    font-weight: 600;
}


/* =========================================================
   9. JOB CARDS
========================================================= */

.job-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.job-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #CDE3B5;
}

.job-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.job-card-title {
    font-size: 19px;
    margin-bottom: 5px;
}

.job-card-title a:hover {
    color: var(--primary-dark);
}

.job-department {
    color: var(--text-light);
    font-size: 14px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--light);
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--text-light);
    font-size: 13px;
}

.job-meta-item i {
    color: var(--primary-dark);
}

.job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.job-last-date {
    color: var(--danger);
    font-size: 13px;
    font-weight: 600;
}

.job-salary {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   10. FEATURED JOB
========================================================= */

.featured-job-card {
    border: 1px solid #CDE3B5;
    position: relative;
    overflow: hidden;
}

.featured-label {
    position: absolute;
    top: 15px;
    right: -32px;
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 35px;
}


/* =========================================================
   11. BADGES
========================================================= */

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.status-active,
.status-released,
.status-published {
    background: var(--success-light);
    color: var(--success);
}

.status-upcoming,
.status-awaited,
.status-draft {
    background: var(--warning-light);
    color: var(--warning);
}

.status-expired {
    background: var(--danger-light);
    color: var(--danger);
}


/* =========================================================
   12. BUTTONS
========================================================= */

.btn-web {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-web-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-web-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-web-outline {
    border-color: var(--border);
    background: var(--white);
    color: var(--text);
}

.btn-web-outline:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

.btn-web-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-web-success {
    background: var(--success);
    color: var(--white);
}


/* =========================================================
   13. JOB DETAIL PAGE
========================================================= */

.detail-page {
    padding: 45px 0 70px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 25px;
}

.detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.detail-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.detail-title {
    font-size: 30px;
    margin-bottom: 10px;
}

.detail-department {
    color: var(--text-light);
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.detail-info-item {
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}

.detail-info-label {
    display: block;
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 3px;
}

.detail-info-value {
    color: var(--dark);
    font-weight: 600;
}

.detail-content h2,
.detail-content h3,
.detail-content h4 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.detail-content p {
    color: var(--text);
}

.detail-content ul,
.detail-content ol {
    padding-left: 22px;
    margin-bottom: 20px;
}

.detail-content li {
    margin-bottom: 7px;
}


/* =========================================================
   14. SIDEBAR
========================================================= */

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    border-bottom: 1px solid var(--border);
}

.sidebar-list li:last-child {
    border-bottom: 0;
}

.sidebar-list a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 0;
    color: var(--text);
}

.sidebar-list a:hover {
    color: var(--primary-dark);
}


/* =========================================================
   15. FILTERS
========================================================= */

.filter-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.filter-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-label {
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.form-control-web,
.form-select-web {
    width: 100%;
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
    color: var(--dark);
    outline: none;
}

.form-control-web:focus,
.form-select-web:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}


/* =========================================================
   16. PAGINATION
========================================================= */

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    padding: 0;
}

.pagination a,
.pagination span {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    color: var(--text);
    font-size: 14px;
}

.pagination a:hover,
.pagination .active span {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}


/* =========================================================
   17. ADMIT CARD
========================================================= */

.admit-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.admit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: 0.2s ease;
}

.admit-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.admit-card-title {
    font-size: 19px;
    margin-bottom: 10px;
}

.admit-card-job {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 18px;
}

.admit-card-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.admit-card-info-item {
    background: var(--light);
    padding: 12px;
    border-radius: 7px;
}

.admit-card-info-item small {
    display: block;
    color: var(--text-light);
    font-size: 11px;
}

.admit-card-info-item strong {
    color: var(--dark);
    font-size: 14px;
}


/* =========================================================
   18. RESULT CARDS
========================================================= */

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.result-card-title {
    font-size: 19px;
    margin-bottom: 10px;
}

.result-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 18px;
}

.result-card-meta i {
    color: var(--primary-dark);
}

.result-card-footer {
    padding-top: 15px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* =========================================================
   19. BLOG GRID
========================================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.blog-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: var(--light);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}

.blog-body {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    padding: 4px 9px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 19px;
    margin-bottom: 9px;
}

.blog-title a:hover {
    color: var(--primary-dark);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 14px;
}

.blog-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 12px;
    padding-top: 13px;
    margin-top: 13px;
    border-top: 1px solid var(--border);
}


/* =========================================================
   20. BLOG DETAIL
========================================================= */

.blog-detail {
    max-width: 900px;
    margin: 0 auto;
}

.blog-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow-sm);
}

.blog-detail-title {
    font-size: 38px;
    margin-bottom: 15px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 25px;
}

.blog-detail-image {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-detail-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.blog-content {
    color: var(--text);
    font-size: 16px;
}

.blog-content h2 {
    font-size: 27px;
    margin: 30px 0 12px;
}

.blog-content h3 {
    font-size: 22px;
    margin: 25px 0 10px;
}

.blog-content p {
    margin-bottom: 18px;
}

.blog-content ul,
.blog-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.blog-content li {
    margin-bottom: 7px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}


/* =========================================================
   21. CATEGORY DETAIL
========================================================= */

.category-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 50px 0;
}

.category-header-content {
    max-width: 850px;
}

.category-header-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: var(--primary-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.category-description {
    color: var(--text-light);
    margin-top: 12px;
}


/* =========================================================
   22. QUALIFICATION
========================================================= */

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.qualification-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: 0.2s ease;
}

.qualification-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.qualification-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}


/* =========================================================
   23. EMPTY STATE
========================================================= */

.empty-state {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.empty-state h3 {
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-light);
}


/* =========================================================
   24. ALERTS
========================================================= */

.alert-web {
    padding: 13px 16px;
    border-radius: 7px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-success {
    background: var(--success-light);
    color: var(--success);
    border-color: #BBF7D0;
}

.alert-danger {
    background: var(--danger-light);
    color: var(--danger);
    border-color: #FECACA;
}

.alert-warning {
    background: var(--warning-light);
    color: var(--warning);
    border-color: #FDE68A;
}

.alert-info {
    background: var(--info-light);
    color: var(--info);
    border-color: #BFDBFE;
}


/* =========================================================
   25. FOOTER
========================================================= */

.web-footer {
    background: var(--dark);
    color: #CBD5E1;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 45px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    color: var(--white);
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-description {
    color: #94A3B8;
    font-size: 14px;
}

.footer-title {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 14px;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #1E293B;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: #64748B;
    font-size: 13px;
}


/* =========================================================
   26. BREADCRUMB
========================================================= */

.breadcrumb-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb .active {
    color: var(--dark);
    font-weight: 600;
}


/* =========================================================
   27. TOP BAR
========================================================= */

.top-bar {
    background: var(--dark);
    color: #CBD5E1;
    font-size: 13px;
    padding: 7px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.top-bar-links {
    display: flex;
    gap: 18px;
}

.top-bar a:hover {
    color: var(--primary);
}


/* =========================================================
   28. NEWS / LATEST UPDATES
========================================================= */

.latest-update {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.latest-update-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
}

.latest-update-item:last-child {
    border-bottom: 0;
}

.latest-update-title {
    font-weight: 600;
    color: var(--dark);
}

.latest-update-title:hover {
    color: var(--primary-dark);
}

.latest-update-date {
    white-space: nowrap;
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   29. HOME STATISTICS
========================================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}

.stat-label {
    color: var(--text-light);
    font-size: 13px;
}


/* =========================================================
   30. MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}


/* =========================================================
   31. RESPONSIVE - TABLET
========================================================= */

@media (max-width: 992px) {

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 29px;
    }

    .hero-title {
        font-size: 40px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qualification-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .filter-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-form .form-group:first-child {
        grid-column: 1 / -1;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .admit-card-grid,
    .result-grid {
        grid-template-columns: 1fr;
    }

    .web-nav {
        display: none;
    }

    .web-nav-toggle {
        display: block;
    }
}


/* =========================================================
   32. RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 21px;
    }

    .hero-section {
        padding: 50px 0 60px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 15px;
    }

    .search-form {
        flex-direction: column;
    }

    .search-button {
        width: 100%;
    }

    .section {
        padding: 50px 0;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .qualification-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .detail-card {
        padding: 20px;
    }

    .detail-title {
        font-size: 25px;
    }

    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-card {
        padding: 22px;
    }

    .blog-detail-title {
        font-size: 29px;
    }

    .filter-form {
        grid-template-columns: 1fr;
    }

    .filter-form .form-group:first-child {
        grid-column: auto;
    }

    .latest-update-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-links {
        display: none;
    }
}


/* =========================================================
   33. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-title {
        font-size: 29px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        padding: 18px;
    }

    .job-card-header {
        flex-direction: column;
    }

    .job-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .admit-card {
        padding: 18px;
    }

    .admit-card-info {
        grid-template-columns: 1fr;
    }

    .result-card {
        padding: 18px;
    }

    .result-card-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .category-card {
        padding: 20px;
    }

    .blog-detail-title {
        font-size: 25px;
    }

    .section-link {
        font-size: 14px;
    }
}


/* =========================================================
   34. UTILITY CLASSES
========================================================= */

.web-bg-white {
    background: var(--white);
}

.web-bg-light {
    background: var(--light);
}

.web-bg-primary {
    background: var(--primary);
}

.web-rounded {
    border-radius: var(--radius);
}

.web-shadow {
    box-shadow: var(--shadow);
}

.web-border {
    border: 1px solid var(--border);
}

.web-mt-1 {
    margin-top: 10px;
}

.web-mt-2 {
    margin-top: 20px;
}

.web-mt-3 {
    margin-top: 30px;
}

.web-mb-1 {
    margin-bottom: 10px;
}

.web-mb-2 {
    margin-bottom: 20px;
}

.web-mb-3 {
    margin-bottom: 30px;
}

.web-text-center {
    text-align: center;
}

.web-flex {
    display: flex;
}

.web-align-center {
    align-items: center;
}

.web-justify-between {
    justify-content: space-between;
}


/* =========================================================
   35. LOADING
========================================================= */

.web-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.web-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: web-spin 0.8s linear infinite;
}

@keyframes web-spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   36. SCROLL TO TOP
========================================================= */

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: 0.2s ease;
}

.scroll-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}


/* =========================================================
   37. PRINT
========================================================= */

@media print {

    .web-header,
    .web-footer,
    .web-nav,
    .search-box,
    .filter-card,
    .scroll-top,
    .btn-web {
        display: none !important;
    }

    body {
        background: var(--white);
    }

    .detail-card,
    .blog-detail-card {
        border: 0;
        box-shadow: none;
    }

}
.footer-links a.active {
    color: #84BA3F;
    font-weight: 700;
}