/* ====================================================
   EcoFlex — University CSS (New eLearning Template)
   Design tokens, shared components, layout utilities
   ==================================================== */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── CSS Variables ── */
:root {
    --primary: #0f62fe;
    --secondary: #0043ce;
    --grey: #52525b;
    --slateGray: #f4f7fb;
    --deepSlate: #e0e7ff;
    --midnight: #0a1128;
    --success: #22c55e;
    --shadow-input: 0 63px 59px rgba(15, 98, 254, .06);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, .08);
    --shadow-t1: 0 4px 12px rgba(10, 17, 40, .05);
    --shadow-t2: 0 20px 40px rgba(10, 17, 40, .10);
    --radius-card: 16px;
    --radius-pill: 9999px;
}

/* ── Container ── */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media(min-width:768px) {
    .container {
        max-width: 768px;
    }
}

@media(min-width:1280px) {
    .container {
        max-width: 1280px;
    }
}

/* ── Section spacing ── */
section {
    padding: 80px 0;
}

/* ─────────────────────────────────────────────
   HEADER / NAVBAR
───────────────────────────────────────────── */
body {
    padding-top: 130px;
}

/* TOP BAR */
.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 12px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1041;
    transition: all 0.3s;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left a {
    color: #d1d5db;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    gap: 10px;
}

.top-bar-right a {
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.top-bar-right a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    body {
        padding-top: 60px;
        /* Reduced from 88px */
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2px 0;
    /* Minimized desktop padding */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all .3s;
}

@media (max-width: 768px) {
    .site-header {
        padding: 8px 16px;
        /* Restored horizontal padding */
        top: 0;
    }
}

.site-header.sticky {
    top: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    padding: 2px 0;
    /* Minimized sticky padding */
    background: rgba(255, 255, 255, 0.98);
}

@media (max-width: 768px) {
    .site-header.sticky {
        padding: 6px 16px;
    }
}

.site-header.nav-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo img {
    max-width: 100px;
    /* Reduced desktop logo size */
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .site-logo img {
        max-width: 80px;
        /* Reduced to tightly fit mobile */
    }
}

/* Desktop nav */
.desktop-nav {
    display: none;
    gap: 36px;
    align-items: center;
}

.desktop-nav>a,
.nav-dropdown>a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--midnight);
    transition: color .25s;
    padding: 8px 0;
    position: relative;
    text-transform: capitalize;
}

.desktop-nav>a::after,
.nav-dropdown>a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    transition: transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.desktop-nav>a:hover,
.desktop-nav>a.active,
.nav-dropdown>a:hover,
.nav-dropdown>a.active {
    color: var(--primary);
}

.desktop-nav>a:hover::after,
.desktop-nav>a.active::after,
.nav-dropdown>a:hover::after,
.nav-dropdown>a.active::after {
    transform: translateX(-50%) scale(1);
}

/* Dropdown in desktop nav */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #fff;
    border-radius: 12px;
    min-width: 200px;
    padding: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
    z-index: 100;
    animation: dropdown-in .2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--midnight);
    transition: all .2s;
}

.nav-dropdown-menu a:hover {
    background: rgba(15, 98, 254, .08);
    color: var(--primary);
    padding-left: 18px;
}

@keyframes dropdown-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header action buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-signin {
    display: none;
    /* Hidden on mobile/tablet */
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff !important;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-size: .95rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15, 98, 254, 0.3);
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-signin:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 98, 254, 0.4);
}

.btn-signin:hover {
    background: rgba(101, 86, 255, .15);
    color: var(--primary) !important;
}

.btn-signup {
    display: none;
    background: rgba(101, 86, 255, .12);
    color: var(--primary) !important;
    padding: 11px 28px;
    border-radius: var(--radius-pill);
    font-size: .9rem;
    font-weight: 600;
    transition: all .3s;
}

.btn-signup:hover {
    background: var(--primary);
    color: #fff !important;
}

@media(min-width:1024px) {
    .desktop-nav {
        display: flex;
    }

    .btn-signin,
    .btn-signup {
        display: inline-flex;
    }

    .hamburger {
        display: none !important;
    }
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #222;
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1035;
    display: none;
}

.mobile-overlay.open {
    display: block;
}

/* Mobile slide-in menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 320px;
    background: #fff;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, .12);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 75px);
    padding-bottom: 30px;
}

.mobile-close {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--midnight);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
}

.mobile-nav>a,
.mobile-dropdown-btn {
    padding: 16px 0;
    font-size: 1.05rem;
    color: var(--midnight);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
}

.mobile-nav>a.active {
    color: var(--primary);
}

.mobile-dropdown-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(15, 98, 254, 0.03);
    border-radius: 0 0 12px 12px;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 0.95rem;
    color: var(--grey);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-submenu a i {
    color: var(--primary);
    font-size: 1.1rem;
}

.mobile-submenu a:last-child {
    border-bottom: none;
}

.mobile-bottom {
    padding: 0 24px;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-btn-signin {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(15, 98, 254, 0.3);
    text-decoration: none;
}

.mobile-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.mobile-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 98, 254, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
    background: var(--slateGray);
    padding: 80px 0 60px;
    text-align: center;
    margin-top: 0;
}

.page-hero-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(101, 86, 255, .1);
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    margin-bottom: 12px;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 12px;
    line-height: 1.25;
}

.page-hero p {
    color: var(--grey);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 16px;
}

/* Breadcrumb in page hero */
.page-hero .breadcrumb {
    justify-content: center;
    margin: 0;
}

.page-hero .breadcrumb-item a {
    color: var(--grey);
}

.page-hero .breadcrumb-item.active {
    color: var(--primary);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: var(--grey);
}

/* ─────────────────────────────────────────────
   SECTION LABELS & TITLES
───────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(101, 86, 255, .08);
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    margin-bottom: 10px;
}

.section-heading {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--midnight);
    line-height: 1.2;
    margin-bottom: .5rem;
}

.section-sub {
    color: var(--grey);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-primary-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
    font-size: .95rem;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--primary);
    transition: all .3s;
    cursor: pointer;
}

.btn-primary-pill:hover {
    background: transparent;
    color: var(--primary) !important;
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary) !important;
    font-weight: 600;
    font-size: .95rem;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--primary);
    transition: all .3s;
    cursor: pointer;
}

.btn-outline-pill:hover {
    background: var(--primary);
    color: #fff !important;
}

/* ─────────────────────────────────────────────
   CARDS
───────────────────────────────────────────── */
.ecard {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 30px rgba(101, 86, 255, .08);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    border: 1px solid rgba(101, 86, 255, .06);
}

.ecard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

/* Course card image with clip-path */
.course-img-wrap {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.course-img-wrap img {
    width: 100%;
    border-radius: var(--radius-card);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    object-fit: cover;
    height: 200px;
}

.course-badge-circle {
    position: absolute;
    right: 20px;
    bottom: -8px;
    background: var(--secondary);
    border-radius: var(--radius-pill);
    padding: 18px;
    text-align: center;
    min-width: 68px;
}

.course-badge-circle span {
    color: #fff;
    text-transform: uppercase;
    font-size: .7rem;
    font-weight: 600;
    line-height: 1.3;
    display: block;
}

/* Stars */
.stars {
    display: flex;
    gap: 2px;
    color: #eab308;
    font-size: 1.1rem;
}

.stars .empty {
    color: #9ca3af;
}

/* ─────────────────────────────────────────────
   SEARCH BAR
───────────────────────────────────────────── */
.search-pill {
    position: relative;
}

.search-pill input {
    width: 100%;
    padding: 20px 80px 20px 28px;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    border: none;
    outline: none;
    box-shadow: var(--shadow-input);
    font-family: 'Poppins', sans-serif;
}

.search-pill button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary);
    padding: 16px;
    border-radius: var(--radius-pill);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background .3s;
}

.search-pill button:hover {
    background: var(--primary);
}

/* ─────────────────────────────────────────────
   COMPANIES / LOGO SCROLLER
───────────────────────────────────────────── */
.companies-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: scroll-companies 20s linear infinite;
}

.companies-track:hover {
    animation-play-state: paused;
}

.companies-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(80%);
    opacity: .7;
    transition: all .3s;
}

.companies-track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll-companies {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ─────────────────────────────────────────────
   NEWSLETTER SECTION
───────────────────────────────────────────── */
.newsletter-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-card);
    padding: 64px 32px;
    text-align: center;
}

.newsletter-box h3 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-box p {
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
    margin-bottom: 28px;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
    background: #f8fafc;
    /* Light, airy background */
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

@media(min-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width:1024px) {
    .footer-grid {
        grid-template-columns: 4fr 2fr 2fr 3fr;
    }
}

.footer-brand img {
    width: 160px;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(15, 98, 254, 0.25);
}

.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--grey);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.footer-col ul li a::before {
    content: "\F285";
    /* bi-chevron-right */
    font-family: "bootstrap-icons";
    font-size: 0.7rem;
    margin-right: 8px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span {
    color: var(--grey);
    font-size: .9rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(0, 0, 0, .5);
    font-size: .85rem;
}

.footer-bottom a:hover {
    color: var(--primary);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* ─────────────────────────────────────────────
   FLOATING ICONS UI
───────────────────────────────────────────── */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
    color: #fff !important;
}

.float-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: floatAnim 3s ease-in-out infinite;
}

.float-facebook {
    background: linear-gradient(135deg, #1877F2, #0b5aca);
}

.float-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

@keyframes floatAnim {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 1.4rem;
    }
}

/* ─────────────────────────────────────────────
   SCROLL TO TOP
───────────────────────────────────────────── */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: none;
    width: 42px;
    height: 42px;
    background: var(--midnight);
    color: #fff;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
    cursor: pointer;
    transition: background .3s;
}

.scroll-top-btn:hover {
    background: var(--primary);
}

.scroll-top-btn.visible {
    display: flex;
}

.scroll-top-btn i {
    font-size: 1.1rem;
}

/* ─────────────────────────────────────────────
   FORMS (styled inputs)
───────────────────────────────────────────── */
.form-field {
    width: 100%;
    padding: 13px 18px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    outline: none;
    transition: border .25s;
}

.form-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(101, 86, 255, .12);
}

/* ─────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────── */
.text-primary-color {
    color: var(--primary);
}

.bg-slategray {
    background: var(--slateGray);
}

.bg-deepslate {
    background: var(--deepSlate);
}

.hover-lift {
    transition: transform .3s, box-shadow .3s;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(101, 86, 255, .18);
}