@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid var(--guru-primary); */
}

.offcanvas {
    --bs-offcanvas-width: 300px;
}

:root {
    --guru-primary: #F36E20;
    --guru-accent: rgb(10, 37, 64);
    --guru-textmain: #06192C;
    --guru-divider: #E5E7EB;
    --guru-circuit: #64748B;
    --guru-base: #F8F9FA;
    --whatapps: rgb(117, 183, 70);
    /* --font-heading: 'Space Grotesk', sans-serif; */
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-heading: "Roboto", sans-serif;
    --max-width: 1640px;
    --gap: 20px;
    --padding-y: 3rem;
    --border-radius: 0.3rem;
}

html {
    scroll-behavior: smooth;
    background-color: var(--guru-base);
    color: var(--guru-textmain);
}

body {
    position: relative;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    background-color: var(--guru-base);
    color: var(--guru-textmain);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.whatapps-dialog {
    position: fixed;
    z-index: 1000;
    /* background-color: #0077b5; */
    height: 300px;
    width: 300px;
    bottom: 20px;
    right: 20px;
}

.whatapps-icon {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background-color: rgb(117, 183, 70, 0.9);
    bottom: 20px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatapps-icon:hover {
    background-color: var(--whatapps);
    transition: background-color 0.3s ease;
}

#whatapps-dialog-open {
    margin-left: auto;
}

.container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}



::-webkit-scrollbar {
    width: 0;
}

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

.font-heading {
    font-family: var(--font-heading) !important;
}

.font-body {
    font-family: var(--font-body) !important;
}

.font-mono {
    font-family: var(--font-mono) !important;
}

.text-primary-brand {
    color: var(--guru-primary) !important;
}

.text-accent {
    color: var(--guru-accent) !important;
}

.text-circuit {
    color: var(--guru-circuit) !important;
}

.text-gold {
    color: var(--guru-gold) !important;
}

.text-textmain {
    color: var(--guru-textmain) !important;
}

.text-divider {
    color: var(--guru-divider) !important;
}

/* Section label — monospace uppercase tiny caps */
.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--guru-circuit);
    display: block;
}

/* Tracking widest (Tailwind: tracking-widest) */
.tracking-widest {
    letter-spacing: 0.12em !important;
}

.tracking-wider {
    letter-spacing: 0.08em !important;
}

/* Line-clamp utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bg-primary-brand {
    background-color: var(--guru-primary) !important;
}

.bg-accent {
    background-color: var(--guru-accent) !important;
}

.bg-base {
    background-color: var(--guru-base) !important;
}

.bg-gold {
    background-color: var(--guru-gold) !important;
}

.bg-textmain {
    background-color: var(--guru-textmain) !important;
}

.circuit-bg {
    background-color: rgb(10, 37, 64);
    background-image:
        linear-gradient(to right, rgba(100, 116, 139, .08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(100, 116, 139, .08) 1px, transparent 1px);
    background-size: 40px 40px;
}

.circuit-bg-dark {
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ═══════════════════════════════════════════════════════════════
   5. BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-tech {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 32px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 2px solid var(--guru-primary);
    background: var(--guru-primary);
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-out;
    cursor: pointer;
    white-space: nowrap;
}

.btn-tech:hover,
.btn-tech:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(243, 110, 32, .45);
    background: var(--guru-primary);
    border-color: var(--guru-primary);
    color: #fff;
    outline: none;
}

.btn-tech-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 32px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 2px solid var(--guru-primary);
    background: transparent;
    color: var(--guru-base);
    text-decoration: none;
    transition: all 0.2s ease-out;
    cursor: pointer;
    white-space: nowrap;
}

.btn-tech-secondary:hover,
.btn-tech-secondary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(243, 110, 32, .3);
    outline: none;
}

.btn-tech-sm {
    min-height: 36px !important;
    padding: 0 18px !important;
    font-size: 11px !important;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    transition: all .22s ease;
    border: 2px solid rgba(255, 255, 255, .5);
    background: transparent;
    color: #fff;
    padding: 0 28px;
    min-height: 48px;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #0A2540;
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-white-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    transition: all .22s ease;
    border: 2px solid rgba(255, 255, 255, .5);
    background: transparent;
    color: #fff;
    padding: 0 28px;
    min-height: 48px;
}

.btn-white-custom:hover {
    background: #fff;
    color: #0A2540;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   6. NAVBAR
   ═══════════════════════════════════════════════════════════════ */

#navigation {
    position: relative;
}

.navbar-guru {
    background: var(--guru-primary);
    border-bottom: 1px solid var(--guru-divider);
    padding: 10px 0;
    z-index: 1040;
}

.navbar-guru {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--guru-accent);
    text-decoration: none;
}


.navbar-guru .nav-page-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--guru-circuit);
    border-left: 1px solid var(--guru-divider);
    padding-left: 16px;
    margin-left: 8px;
}

.nav-link-container {
    display: none;
}

/* .navbar-brand {
    height: 50px;
    width: fit-content;
}

.navbar-logo {
    object-fit: cover;
    width: 100%;
    height: 100%;
} */

.nav-bar-icon {
    display: block;
}

.navbar-guru .nav-link {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--guru-circuit) !important;
    padding: 4px 10px !important;
    transition: color 0.2s;
}

.navbar-guru .nav-link a {
    text-decoration: none;
    color: var(--guru-circuit);
}

.navbar-guru .nav-link:hover,
.navbar-guru .nav-link.active {
    color: var(--guru-primary) !important;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

#mobile-navigation-container {
    display: none;
    height: 100vh;
    width: 100%;
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
}

.mobile-navigation {
    height: 100%;
    width: 0%;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;

    background-color: var(--guru-base);
    z-index: 999;

    transform: translateX(0%);
    transition: transform 0.3s ease-in-out;
}

.mobile-navigation.active {
    transform: translateX(0);
    width: 70%;
}

.close-menu {
    display: none;
}

.mobile-navlinks {
    padding: 6rem 1rem;
}

.mobile-navlink-items {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}



/* ═══════════════════════════════════════════════════════════════
   7. PROGRESS BAR (scroll indicator)
   ═══════════════════════════════════════════════════════════════ */
#prog {
    position: fixed;
    top: 57px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #F9A825, var(--guru-primary));
    z-index: 1050;
    width: 0;
    transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════════
   8. HERO SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.guru-modal-btn:hover {
    background-color: var(--bs-gray-200);
}

/* ==========================================================================
   2.6 COURSE DETAIL PAGE COMPONENT STYLES
   ========================================================================== */

/* Sticky sidebar */
.sticky-card {
    position: sticky;
    top: 88px;
}

/* Accordion */
details>summary {
    list-style: none;
    cursor: pointer;
    outline: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

.acc-arrow {
    transition: transform 0.3s ease;
}

details[open] .acc-arrow {
    transform: rotate(180deg);
}

/* Module timeline */
.module-item {
    cursor: pointer;
}

.module-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.module-item.open .module-body {
    max-height: 600px;
    opacity: 1;
}

.module-item.open .mod-dot {
    background: var(--primary);
    transform: scale(1.2);
}

.module-item.open .mod-num {
    color: var(--accent);
}

.mod-dot {
    transition: all 0.3s ease;
}

/* Project carousel */
.proj-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.proj-slide {
    flex-shrink: 0;
    width: 340px;
}

/* Workshop gallery */
.ws-img {
    overflow: hidden;
    cursor: pointer;
}

.ws-img img {
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(40%);
}

.ws-img:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

/* Lightbox */
#lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 37, 64, 0.93);
    align-items: center;
    justify-content: center;
}

#lb.open {
    display: flex !important;
}

#lb.hidden {
    display: none !important;
}

#lb img {
    max-width: 88vw;
    max-height: 78vh;
    border: 2px solid var(--primary);
}

/* Tooltip */
.tip-wrap {
    position: relative;
}

.tip-box {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--base);
    font-size: 11px;
    font-family: "JetBrains Mono", monospace;
    white-space: nowrap;
    padding: 5px 10px;
    border: 1px solid var(--primary);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 50;
}

.tip-wrap:hover .tip-box {
    opacity: 1;
}

/* Skill bar */
.skill-fill {
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 1.2s ease;
}

/* Form focus */
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 1px var(--primary) !important;
}

/* Blog card hover */
.blog-card:hover .blog-img {
    transform: scale(1.04);
}

.blog-img {
    transition: transform 0.4s ease;
}

.hero-dark {
    background-color: var(--guru-accent);
    position: relative;
    overflow: hidden;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(100, 116, 139, .08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(100, 116, 139, .08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-full {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

/* Animate pulse dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    background: #fb923c;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

/* Module preview */
.module-preview-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--textmain);
    margin-bottom: 4px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-gold {
    background: var(--primary);
}

.dot-accent {
    background: var(--accent);
}

.card-meta-item {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    color: var(--circuit);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-meta-item .fa-solid {
    color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   9. CARDS
   ═══════════════════════════════════════════════════════════════ */
.card-guru {
    border: 1px solid var(--guru-divider);
    border-radius: var(--border-radius);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.card-guru:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

/* Project overlay cards */
.card-project {
    position: relative;
    overflow: hidden;
    background: var(--guru-accent);
    cursor: pointer;
    border: 1px solid var(--guru-divider);
    transition: box-shadow 0.2s;
}

.card-project:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.card-project img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.card-project:hover img {
    opacity: 0.35;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.card-project-body {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-project-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    transform: translateY(12px);
    transition: transform 0.3s ease;
}

.card-project:hover .card-project-title {
    transform: translateY(0);
}

.card-project-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.card-project:hover .card-project-desc {
    opacity: 1;
}

/* Timeline step */
.timeline-step {
    flex: 1;
    text-align: center;
    padding-top: 4rem;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.timeline-step:hover {
    transform: translateY(-6px);
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--guru-accent);
    border: 4px solid var(--guru-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s;
}

.timeline-step:hover .timeline-dot {
    background: #1565c0;
    border-color: var(--guru-gold);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 0 6px rgba(21, 101, 192, .25);
}

/* ═══════════════════════════════════════════════════════════════
   10. BADGES & TAGS
   ═══════════════════════════════════════════════════════════════ */
.badge-mono {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 50px;
}

.badge-active {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.badge-closed {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.badge-upcoming {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.tag-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid var(--guru-divider);
    color: var(--guru-circuit);
    transition: all 0.2s;
    cursor: pointer;
}

.tag-pill:hover,
.tag-pill.active {
    background: var(--guru-primary);
    color: #fff;
    border-color: var(--guru-primary);
}

.cat-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 50px;
}

.cat-tech {
    background: #eff6ff;
    color: #2563eb;
}

.cat-tutorial {
    background: #f0fdf4;
    color: #16a34a;
}

.cat-career {
    background: #fff7ed;
    color: #c2410c;
}

.cat-news {
    background: #faf5ff;
    color: #7c3aed;
}

.cat-research {
    background: #fef2f2;
    color: #b91c1c;
}

.cat-bff {
    background: #fefce8;
    color: #a16207;
}

/* ═══════════════════════════════════════════════════════════════
   11. SIDEBAR WIDGETS
   ═══════════════════════════════════════════════════════════════ */
.sidebar-widget {
    background: #fff;
    border: 1px solid var(--guru-divider);
    border-radius: var(--border-radius);
    padding: 22px;
    margin-bottom: 1rem;
}

.toc-link {
    display: block;
    padding: 4px 0 4px 12px;
    font-size: 13px;
    color: var(--guru-circuit);
    border-left: 2px solid var(--guru-divider);
    text-decoration: none;
    transition: all 0.2s;
}

.toc-link:hover,
.toc-link.active {
    color: var(--guru-primary);
    border-left-color: var(--guru-primary);
    padding-left: 16px;
}

.popular-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.popular-row:last-child {
    border-bottom: none;
}

.popular-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   12. FORMS
   ═══════════════════════════════════════════════════════════════ */
.form-control-guru {
    border: 2px solid var(--guru-divider);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
    background: #fff;
}

.form-control-guru:focus {
    border-color: var(--guru-primary);
    box-shadow: 0 0 0 3px rgba(243, 110, 32, .12);
}

.form-label-mono {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--guru-circuit);
    display: block;
    margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   13. FOOTER
   ═══════════════════════════════════════════════════════════════ */

footer {
    border-top: 3px solid var(--guru-primary);
    /* border-radius: 1rem 1rem 0 0; */
}

.footer-guru {
    background: #000;
    color: #fff;
}

.footer-guru a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-guru a:hover {
    color: #fff;
}

.footer-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
    margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   14. ANIMATIONS & TRANSITIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.85);
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

/* Smooth card lift on hover */
.hover-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

/* Image grayscale → colour on hover */
.img-grayscale {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.img-grayscale:hover,
.hover-color:hover .img-grayscale {
    filter: grayscale(0%);
}

/* ═══════════════════════════════════════════════════════════════
   15. PAGE-SPECIFIC UTILITIES
   ═══════════════════════════════════════════════════════════════ */

/* Highlight / stat card border accent */
.stat-card {
    border-left: 3px solid var(--guru-primary);
}

/* Progress bar (scholarship seats) */
.seats-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.seats-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--guru-primary), #f9a825);
    border-radius: 3px;
    transition: width 1s ease;
}

/* Border divider */
.border-divider {
    border-color: var(--guru-divider) !important;
}

.border-accent {
    border-color: var(--guru-accent) !important;
}

.border-primary {
    border-color: var(--guru-primary) !important;
}

/* Social pills */
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-decoration: none;
}

.social-pill:hover {
    transform: translateY(-2px);
}

.social-pill.fb {
    background: #e7f0ff;
    color: #1877f2;
    border-color: #c9deff;
}

.social-pill.ig {
    background: #fce4f4;
    color: #c2185b;
    border-color: #f5b8e0;
}

.social-pill.yt {
    background: #ffe8e8;
    color: #d32f2f;
    border-color: #ffbcbc;
}

.social-pill.li {
    background: #e5f1fa;
    color: #0077b5;
    border-color: #b8d9f0;
}

.social-pill.tt {
    background: #f0f0f0;
    color: #000;
    border-color: #ccc;
}

/* Blog article typography */
.article-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: #2d3748;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--guru-accent);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--guru-accent);
    margin: 2rem 0 0.75rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.article-body ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 0.6rem;
}

.article-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--guru-primary);
    font-family: var(--font-mono);
}

.article-body blockquote {
    border-left: 4px solid var(--guru-primary);
    background: #fff7ed;
    padding: 20px 24px;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 17px;
    color: #92400e;
}

.article-body img {
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.article-body code {
    background: #f3f4f6;
    color: #1d4ed8;
    font-family: var(--font-mono);
    font-size: 13px;
    padding: 2px 7px;
    border-radius: 4px;
}

.article-body pre {
    background: var(--guru-accent);
    color: #e2e8f0;
    font-family: var(--font-mono);
    font-size: 13px;
    padding: 20px 24px;
    border-radius: 12px;
    margin: 2rem 0;
    overflow-x: auto;
}

.article-body pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* Object fit helpers */
.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Aspect ratios */
.aspect-square {
    aspect-ratio: 1 / 1;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-4-3 {
    aspect-ratio: 4 / 3;
}

/* Gradient text */
.text-gradient-orange {
    background: linear-gradient(135deg, var(--guru-primary), #f9a825);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Share buttons */
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-decoration: none;
    background-color: var(--guru-primary);
    color: white;
}

/* Min-height helpers */
.min-h-screen {
    min-height: 100vh;
}

/* Reading progress (blog detail) */
#read-prog {
    position: fixed;
    top: 57px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #f9a825, var(--guru-primary));
    z-index: 1049;
    width: 0;
    transition: width 0.1s linear;
}

/* Modal overlay */
.guru-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    z-index: 1060;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.guru-modal-overlay.open {
    display: flex;
}

/* Overflow helpers */
.overflow-x-auto {
    overflow-x: auto;
}

/* MARQUEE */

.scroller_container {
    width: 100%;
    padding: 3rem 0;
}

.scroller {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.scroller_inner {
    padding-block-end: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.image {
    object-fit: contain;
    height: auto;
    width: 150px;
    /* filter: saturate(0); */
    cursor: pointer;
}

.image:hover {
    filter: saturate(1);
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

[data-animated="true"] .scroller_inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--animation-durations, 20s) var(--_animation-direction, forwards) linear infinite;
}

/* [data-animated="true"] .scroller_inner:hover {
    animation-play-state: paused;
} */

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

/* animation */
@keyframes scroll {
    to {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* AWARDS AND CERTIFICATION */

.award-wrapper {
    width: 100%;
    overflow: hidden;
}

.award-carousel-viewport {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    border-radius: var(--border-radius);
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.award-carousel-viewport.dragging {
    cursor: grabbing;
}

.award-carousel-card {
    flex: 0 0 280px;
    width: 280px;
    background-color: var(--guru-base);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .08);
    border-radius: var(--border-radius);
    overflow: hidden;
    user-select: none;
    scroll-snap-align: start;
}

.award-carousel-card:hover {
    box-shadow: 0px 10px 15px rgba(0, 0, 0, .08);
    transition: all 0.5 linear;
}

.award-carousel-card-hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

/* TESTIMONIALS */

.testimonial-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
    height: 500px;
    background-color: #0077b5;
    padding: 2rem;
}

.testimonial-card {
    position: relative;
    flex: 1;
    height: 70%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: var(--guru-base);
    border-radius: var(--border-radius);
    /* overflow: hidden; */
}

.quote {
    z-index: 1;
    position: absolute;
    top: -20;
    left: calc(100% - 70%);
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background-color: var(--guru-primary);
}

.testimonial-card .left {
    background-color: black;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.testimonial-card .left img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.testimonial-card .right {
    padding: 35px 20px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    overflow: hidden;
    /* gap: 3rem; */
}

.testimonial-title {
    font-size: 1.3rem;
    color: var(--guru-circuit);
}

.testimonial-star {
    font-size: 0.8rem;
}

.testimonial-user-name {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonial-user-title {
    font-size: 0.8rem;
    color: var(--guru-circuit);
}


@media (min-width: 640px) {
    .container {
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-link-container {
        display: flex;
    }

    .nav-bar-icon {
        display: none;
    }

    .open-menu {
        display: none !important;
    }

    .close-menu {
        display: none !important;
    }

    .award-carousel-card-hero-section {
        height: 200px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
        margin-left: auto;
        margin-right: auto;
    }
}