/* =========================================================
   PASS THEOLOGICAL SEMINARY
   FULL MODERN WEBSITE STYLE
   Navy + Gold + Soft Colour Theme
   Responsive / Mobile Friendly
   ========================================================= */

/* =========================
   GOOGLE FONT FALLBACK
   ========================= */

:root {
    --primary-color: #1d3d67;
    --primary-dark: #122b4d;
    --primary-light: #315b8f;

    --secondary-color: #d4a85c;
    --secondary-dark: #b88632;
    --gold-light: #f4d28a;

    --white: #ffffff;
    --black: #111827;

    --text-color: #475569;
    --heading-color: #1d3d67;
    --muted-color: #718096;

    --light-bg: #f5f8fc;
    --soft-blue: #edf4fb;
    --soft-gold: #fff8ea;
    --border-color: #e2e8f0;

    --success: #2f855a;
    --danger: #c53030;

    --shadow-sm: 0 4px 15px rgba(29, 61, 103, 0.06);
    --shadow-md: 0 10px 30px rgba(29, 61, 103, 0.10);
    --shadow-lg: 0 20px 50px rgba(29, 61, 103, 0.15);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;

    --transition: all 0.3s ease;
}

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

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

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--white);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    line-height: 1.25;
    font-weight: 700;
}

h1,
h2 {
    font-family: "Playfair Display", Georgia, serif;
}

h1 {
    font-size: clamp(38px, 5vw, 64px);
}

h2 {
    font-size: clamp(30px, 4vw, 46px);
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}

/* =========================
   TOP BAR
   ========================= */

.top-bar {
    background: linear-gradient(
        90deg,
        #17385f 0%,
        #1d3d67 50%,
        #17385f 100%
    );
    color: var(--white);
    min-height: 44px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 35px;
    font-size: 14px;
    font-weight: 500;
}

.top-info span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.top-info i {
    color: var(--gold-light);
    font-size: 14px;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-socials a {
    color: white;
    transition: var(--transition);
}

.top-socials a:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* =========================
   MAIN HEADER
   ========================= */

.main-header {
    background: rgba(255, 255, 255, 0.98);
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(29, 61, 103, 0.08);
    box-shadow: 0 3px 18px rgba(29, 61, 103, 0.06);
}

.nav-container {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================
   LOGO
   IMPORTANT FIX
   ========================= */

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex-shrink: 0;
}

/*
   This prevents the huge logo problem
*/

.logo-img {
    width: 68px !important;
    height: 68px !important;
    max-width: 68px !important;
    max-height: 68px !important;
    min-width: 68px;
    min-height: 68px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

/* Header logo text */

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 27px !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #718096 !important;
    font-weight: 700 !important;
}

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

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 13px 18px;
    border-radius: 9px;
    color: #172b46;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--secondary-dark);
    background: var(--soft-gold);
}

.nav-menu a.active {
    color: var(--secondary-dark);
    background: var(--soft-gold);
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 5px;
}

/* =========================
   MOBILE MENU
   ========================= */

.menu-toggle {
    display: none;
    border: 0;
    background: var(--primary-color);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--secondary-dark);
}

/* =========================
   PAGE BANNER
   ========================= */

.page-banner {
    position: relative;
    min-height: 390px;
    padding: 90px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(18, 43, 77, 0.94),
            rgba(29, 61, 103, 0.82)
        ),
        url("../images/banner.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-banner::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(212, 168, 92, 0.14);
    top: -180px;
    left: -120px;
}

.page-banner::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(90, 160, 210, 0.12);
    bottom: -160px;
    right: -80px;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(18, 43, 77, 0.82),
            rgba(29, 61, 103, 0.70)
        );
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: white;
    margin-bottom: 14px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.page-banner p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
}

/* =========================
   GENERAL SECTIONS
   ========================= */

.section-padding {
    padding: 90px 0;
}

.bg-light {
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(212, 168, 92, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(49, 91, 143, 0.08),
            transparent 30%
        ),
        var(--light-bg);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* =========================
   SECTION SUBTITLE
   ========================= */

.section-subtitle {
    display: inline-block;
    color: var(--secondary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-light {
    background: white;
    color: var(--primary-color);
    border-color: rgba(29, 61, 103, 0.12);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* =========================
   ADMISSION PAGE
   ========================= */

.admission-info h2 {
    margin-bottom: 15px;
}

.admission-info > p {
    color: var(--text-color);
    max-width: 650px;
}

/* =========================
   ADMISSION CARD
   ========================= */

.admission-card {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(247, 250, 253, 0.98)
        );
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(29, 61, 103, 0.08);
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.admission-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(212, 168, 92, 0.08);
    top: -90px;
    right: -70px;
}

.admission-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

/* =========================
   REQUIREMENTS
   ========================= */

.requirements-list {
    list-style: none !important;
}

.requirements-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.requirements-list li:hover {
    background: var(--soft-blue);
    transform: translateX(4px);
}

.requirements-list i {
    color: var(--secondary-dark);
    margin-top: 4px;
    font-size: 16px;
}

/* =========================
   EXAM PORTAL
   ========================= */

.exam-portal-box {
    margin-top: 35px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f9fd
        );
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.exam-portal-box::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(49, 91, 143, 0.06);
    top: -80px;
    right: -50px;
}

.exam-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.btn-exam {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    background: white;
    color: var(--primary-color);
    border: 2px solid rgba(29, 61, 103, 0.16);
    text-align: center;
}

.btn-exam:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-exam i {
    color: var(--secondary-dark);
}

.btn-exam:hover i {
    color: var(--gold-light);
}

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

.contact-section {
    position: relative;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(212, 168, 92, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(49, 91, 143, 0.10),
            transparent 30%
        ),
        #f5f8fc;
}

.contact-card,
.contact-form,
.form-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(29, 61, 103, 0.08);
    box-shadow: var(--shadow-md);
}

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

input,
textarea,
select {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    background: white;
    color: #334155;
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 168, 92, 0.15);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

/* =========================
   GENERAL CARDS
   ========================= */

.card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.course-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.course-card h3 {
    color: var(--primary-color);
}

/* =========================
   DOWNLOADS
   ========================= */

.download-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

/* =========================
   GALLERY
   ========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

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

.main-footer {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(212, 168, 92, 0.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #122b4d,
            #1d3d67
        );
    color: rgba(255, 255, 255, 0.82);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-info .logo-area {
    align-items: center;
}

.footer-info .brand-title {
    color: white !important;
}

.footer-info .brand-subtitle {
    color: #aebbd0 !important;
}

.footer-info p {
    max-width: 450px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 20px;
}

.main-footer h3 {
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-contact i {
    color: var(--gold-light);
    margin-top: 5px;
    width: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 22px 15px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

/* =========================
   SCROLL TO TOP
   ========================= */

.scroll-top,
#scrollTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: var(--transition);
}

.scroll-top:hover,
#scrollTop:hover {
    background: var(--secondary-dark);
    transform: translateY(-4px);
}

/* =========================
   PDF / DOWNLOAD BUTTONS
   ========================= */

.download-btn,
.pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 11px 18px;
    border-radius: 7px;
    font-weight: 600;
    transition: var(--transition);
}

.download-btn:hover,
.pdf-btn:hover {
    background: var(--secondary-dark);
    color: white;
    transform: translateY(-2px);
}

/* =========================
   LOADER
   ========================= */

.loader {
    position: fixed;
    inset: 0;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.25);
    border-top-color: var(--gold-light);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================
   ANIMATIONS
   ========================= */

.fade-up {
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   TABLES
   ========================= */

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

table th {
    background: var(--primary-color);
    color: white;
    padding: 13px;
    text-align: left;
}

table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

table tr:hover td {
    background: var(--soft-blue);
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 1050px) {

    .nav-menu a {
        padding: 11px 12px;
        font-size: 14px;
    }

    .nav-menu ul {
        gap: 2px;
    }

    .container {
        width: 92%;
    }
}

@media (max-width: 900px) {

    .nav-container {
        min-height: 88px;
    }

    .logo-img {
        width: 58px !important;
        height: 58px !important;
        max-width: 58px !important;
        max-height: 58px !important;
        min-width: 58px;
        min-height: 58px;
    }

    .brand-title {
        font-size: 23px !important;
    }

    .brand-subtitle {
        font-size: 9px !important;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        padding: 12px 20px 20px;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }

    .nav-menu a {
        width: 100%;
        justify-content: center;
        padding: 13px;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 700px) {

    .top-bar {
        min-height: auto;
        padding: 8px 0;
    }

    .top-bar-content {
        min-height: auto;
    }

    .top-info {
        gap: 12px;
        font-size: 11px;
    }

    .top-info span:nth-child(2) {
        display: none;
    }

    .top-socials {
        gap: 12px;
    }

    .nav-container {
        min-height: 78px;
    }

    .logo-area {
        gap: 9px !important;
    }

    .logo-img {
        width: 52px !important;
        height: 52px !important;
        max-width: 52px !important;
        max-height: 52px !important;
        min-width: 52px;
        min-height: 52px;
    }

    .brand-title {
        font-size: 21px !important;
    }

    .brand-subtitle {
        font-size: 8px !important;
        letter-spacing: 1px !important;
    }

    .section-padding {
        padding: 60px 0;
    }

    .page-banner {
        min-height: 320px;
        padding: 70px 20px;
    }

    .page-banner h1 {
        font-size: 38px;
    }

    .page-banner p {
        font-size: 15px;
    }

    .admission-card {
        padding: 25px;
    }

    .exam-portal-box {
        padding: 22px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 480px) {

    .container {
        width: 94%;
    }

    .top-info {
        font-size: 10px;
    }

    .top-socials {
        display: none;
    }

    .logo-img {
        width: 48px !important;
        height: 48px !important;
        max-width: 48px !important;
        max-height: 48px !important;
        min-width: 48px;
        min-height: 48px;
    }

    .brand-title {
        font-size: 19px !important;
    }

    .brand-subtitle {
        font-size: 7px !important;
        letter-spacing: 0.8px !important;
    }

    .page-banner {
        min-height: 290px;
        padding: 55px 15px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner p {
        font-size: 14px;
        line-height: 1.6;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 21px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .admission-card {
        padding: 20px;
    }

    .exam-portal-box {
        padding: 18px;
    }

    .btn {
        width: 100%;
    }

    .btn-exam {
        width: 100%;
    }
}

/* =========================
   IMPORTANT IMAGE PROTECTION
   ========================= */

/*
   Prevent accidental oversized images anywhere
   on the website while allowing normal content.
*/

.main-header img.logo-img,
.logo-area img {
    width: 68px !important;
    height: 68px !important;
    object-fit: contain !important;
}

/* Footer logo */

.main-footer .logo-img {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    object-fit: contain !important;
}

/* Mobile footer logo */

@media (max-width: 700px) {

    .main-header img.logo-img,
    .logo-area img {
        width: 52px !important;
        height: 52px !important;
        max-width: 52px !important;
        max-height: 52px !important;
    }

    .main-footer .logo-img {
        width: 52px !important;
        height: 52px !important;
        max-width: 52px !important;
        max-height: 52px !important;
    }
}

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

:focus-visible {
    outline: 3px solid rgba(212, 168, 92, 0.55);
    outline-offset: 3px;
}

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

::selection {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

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

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

::-webkit-scrollbar-track {
    background: #edf2f7;
}

::-webkit-scrollbar-thumb {
    background: #9aabbf;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
