:root {
    --bg-color: #f4f4f6;
    --text-main: #0a0a0a;
    --text-light: #555555;
    --accent: #0047AB;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
body.page-loaded {
    opacity: 1;
}

i, .italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--text-main);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(10, 10, 10, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(0, 71, 171, 0.1);
    mix-blend-mode: multiply;
}

.cursor-follower.hover {
    width: 0;
    height: 0;
    border-color: transparent;
}

/* Typography */
h1 {
    font-size: 8vw;
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

h2.section-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

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

p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

.section {
    padding: 10vw 0;
    position: relative;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 0.85rem 2.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.navbar.scrolled {
    top: 15px;
    padding: 0.65rem 2.1rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 68px;
    width: auto;
    margin: -8.5px 0;
    transform: translateY(-4px);
    filter: brightness(0); /* Force black by default */
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 55px;
    margin: -6.4px 0;
    transform: translateY(-2.5px);
}

/* Auto white when header goes with a dark background */
.navbar.dark-bg .logo img {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2.55rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

/* Navigation actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-actions .btn {
    padding: 0.85rem 1.7rem;
    font-size: 0.765rem;
}

.nav-login {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s;
}

.nav-login:hover {
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: none;
    z-index: 1001;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
    transform-origin: left;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.35s; }

/* Login Modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1005;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.login-modal.active {
    opacity: 1;
    pointer-events: all;
}

.login-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.login-modal-content {
    position: relative;
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.login-modal.active .login-modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: none;
    color: var(--text-light);
    line-height: 1;
}

.close-modal:hover {
    color: var(--text-main);
}

.login-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-btn {
    width: 100%;
    text-align: center;
}

/* Enroll Modal Specifics */
.enroll-modal-content {
    max-width: 600px;
    padding: 3rem 4rem;
    text-align: left;
}

.enroll-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.enroll-form label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.enroll-form input,
.enroll-form select {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    background: transparent;
    width: 100%;
}

.enroll-form input:focus,
.enroll-form select:focus {
    border-color: var(--text-main);
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s;
    background: transparent;
}

.phone-input-wrapper:focus-within {
    border-color: var(--text-main);
}

.country-code {
    padding: 0.8rem 1rem;
    background: transparent;
    border-right: 1px solid #ccc;
    font-size: 1rem;
}

.phone-input-wrapper input {
    border: none;
    border-radius: 0;
    flex: 1;
}

.phone-input-wrapper input:focus {
    border-color: transparent;
}

.submit-enroll {
    width: 200px;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: var(--text-main);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
}

.btn-text {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--text-main);
    padding-bottom: 5px;
    display: inline-block;
    margin-top: 2rem;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #e0e5ec 100%);
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-svg {
    width: 90vw;
    height: 90vw;
    max-width: 800px;
    max-height: 800px;
    opacity: 0.8;
}

.draw-path {
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    transform: translateY(100%);
}

.hero-subtitle {
    margin-top: 2rem;
    font-size: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
}

.hero-scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: var(--text-main);
    overflow: hidden;
    position: relative;
}

.hero-scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform: translateY(-100%);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}


/* Logo Marquee Section */
.logos-section {
    background-color: var(--bg-color);
    padding: 5vw 0;
}

.sub-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.logos-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

/* Fading edges */
.logos-marquee-container::before,
.logos-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.logos-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.logos-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.logos-track {
    display: inline-flex;
    gap: 3rem;
    padding: 0 1.5rem;
    animation: logosScroll 25s linear infinite;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes logosScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* Our Selections Section (Dark Navy Background) */
.selections-section {
    background: radial-gradient(circle at top right, #112240 0%, #0a1020 100%); /* Richer dark gradient */
    color: var(--white);
    padding: 8vw 0 10vw 0;
    overflow: hidden;
    position: relative;
}

.selections-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.selections-header {
    margin-bottom: 5rem;
}

.selections-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.selections-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Auto Scrolling Track */
.selections-container {
    padding: 2rem 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

/* Fading edges */
.selections-container::before,
.selections-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.selections-container::before {
    left: 0;
    background: linear-gradient(to right, #0a1020, transparent);
}

.selections-container::after {
    right: 0;
    background: linear-gradient(to left, #0a1020, transparent);
}

.selections-track {
    display: inline-flex;
    gap: 2rem;
    animation: selectionsScroll 40s linear infinite;
}

@keyframes selectionsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Individual Card */
.selection-card {
    width: 300px;
    height: 380px;
    flex-shrink: 0;
    border-radius: 20px;
    position: relative;
    transform-origin: center center;
    transition: box-shadow 0.3s, transform 0.3s;
    background: rgba(255, 255, 255, 0.03); /* Glass container */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.selection-card:hover {
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15); /* Luxury subtle glow */
}



.card-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    top: 40px;
    z-index: 2;
    padding: 4px; /* Space for gradient border */
    background: linear-gradient(135deg, #f6d365 0%, #fda085 50%, #00d2ff 100%); /* Luxury gradient ring */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #112240; /* Inner border */
}

.card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 30px;
    text-align: center;
}

.card-body h3 {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.company-logo {
    height: 40px;
    object-fit: contain;
}


/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
    height: 70vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-image {
    width: 100%;
    height: 120%;
    position: absolute;
    top: -10%;
    left: 0;
    background: linear-gradient(to bottom right, #fdfbfb 0%, #ebedee 100%);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.05);
}

/* Footer */
.footer-content {
    text-align: center;
    padding: 10vw 0 2vw;
}

.footer-title {
    font-size: 6vw;
    margin-bottom: 3rem;
}

.footer-bottom {
    margin-top: 10vw;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.footer-logo {
    height: 120px;
    width: auto;
    opacity: 0.9;
}

/* IMUCET Results Section */
.results-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 10vw 0;
    position: relative;
    overflow: hidden;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.results-image-col {
    perspective: 1200px;
}

.results-3d-card {
    border-radius: 24px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08), 0 -10px 30px rgba(255,255,255,1);
    transform-style: preserve-3d;
    /* Rotation handled by JS */
}

.results-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transform: translateZ(40px); /* 3D pop out effect */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.results-text-col {
    padding-right: 2rem;
}

.motivation-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.motivation-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.praises-list {
    list-style: none;
    margin-bottom: 3rem;
}

.praises-list li {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.praises-list li::before {
    content: '✦';
    color: var(--accent);
}

.highlight {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Courses Section */
.courses-section {
    padding: 12vw 0 10vw 0;
    background: var(--bg-color);
}

.courses-section .selections-header h2 {
    color: var(--text-main);
}
.courses-section .selections-header p {
    color: var(--text-light);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 71, 171, 0.1);
}

.course-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.course-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.course-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
    flex-grow: 1;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
    margin-top: auto;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .custom-cursor, .cursor-follower {
        display: none !important;
    }

    .navbar {
        top: 10px;
        width: 95%;
        padding: 0.5rem 1.2rem;
        border-radius: 40px;
    }
    
    .navbar.scrolled {
        top: 5px;
        padding: 0.4rem 1.2rem;
    }

    .logo img {
        height: 55px;
        margin: -5px 0;
        transform: translateY(-2px);
    }
    
    .navbar.scrolled .logo img {
        height: 45px;
    }

    .navbar .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }

    .hamburger { display: flex; }
    .nav-links { display: none; }
    .nav-login { display: none; }
    h1 { font-size: 15vw; }
    .hero-subtitle { font-size: 1rem; padding: 0 1rem; }
    .hero-bg-svg { width: 150vw; height: 150vw; max-width: none; max-height: none; }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .results-text-col {
        padding-right: 0;
    }
    .results-image {
        margin-top: 2rem;
    }
    
    .enroll-modal-content {
        padding: 2rem;
    }
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .courses-section {
        padding-top: 160px;
    }
    
    .about-grid { grid-template-columns: 1fr; }
    
    .selections-section { padding: 4rem 0 3rem 0; }
    .selection-card { width: 230px; height: 300px; }
    .selections-container::before,
    .selections-container::after {
        display: none;
    }
    
    .selections-header h2 { font-size: 2.5rem; }
    .selections-header p { padding: 0 1rem; }
    .section-title { font-size: 2.5rem; }
    .sub-title { font-size: 1.8rem; }
    
    .footer-title { font-size: 2.5rem; margin-bottom: 2rem; }
    .btn-large {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}
