:root {
    --primary: #daaa54;
    --secondary: #181a1b;
    --secondary-dark: #101112;
    --light: #ffffff;
    --glow: 0 0 12px 2px #daaa5477;
    --primary-glow: 0 0 16px #daaa54cc;
    --accent: #ffb347;
    --white: #ffffff;
    --navbar-bg: #181a1b;
    --navbar-bg-glass: rgba(24,26,27,0.92);
    --navbar-border: #232728;
    --navbar-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
    --dropdown-bg: #232728;
    --dropdown-hover: #232728;
    --dropdown-border: #daaa541a;
    --dropdown-shadow: 0 10px 32px 0 rgba(0,0,0,0.25);
    --text: #f5e9d6;
    --text-muted: #b6b6b6;
    --hero-glow: 0 0 40px 10px #daaa54, 0 0 80px 20px #232728;
}

body {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    color: var(--light);
    font-family: 'Poppins', sans-serif;
}

.find-tutor-container {
    padding: 4rem 1rem;
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
}

.filter-section {
    background-color: var(--secondary);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.filter-section .form-select {
    background-color: #2a2d2f;
    color: var(--light);
    border-color: #444;
}
.filter-section .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(218, 170, 84, 0.25);
    border-color: var(--primary);
}

.tutor-card {
    background: linear-gradient(120deg, #232728 60%, #181a1b 100%);
    border: 1px solid #444;
    border-radius: 15px;
    margin-bottom: 2rem;
    padding: 2rem;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1), border-color 0.3s;
    box-shadow: 0 5px 24px rgba(218,170,84,0.07);
    opacity: 0;
    transform: translateY(40px) scale(0.98);
}
.tutor-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.tutor-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(218,170,84,0.25), var(--glow);
    border-color: var(--primary);
}

.tutor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.tutor-card h4 {
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
}

.tutor-card .badge {
    font-size: 0.9rem;
    animation: badgePop 0.5s cubic-bezier(.4,0,.2,1);
}
@keyframes badgePop {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}

.tutor-bio {
    font-size: 0.95rem;
    color: #ccc;
}

.tutor-details .detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.tutor-details .detail-item i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.upcoming-classes h6 {
    color: var(--primary);
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}
.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background: rgba(218,170,84,0.4);
    pointer-events: none;
}
@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    color: var(--light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #232728 60%, #181a1b 100%);
    color: var(--light);
    padding: 7rem 0 6rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.7);
    animation: heroFadeIn 1.2s cubic-bezier(.4,0,.2,1);
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(-40px);}
    to { opacity: 1; transform: translateY(0);}
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 60% 40%, rgba(218,170,84,0.18) 0%, rgba(35,39,40,0.12) 100%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
    animation: popIn 1.2s cubic-bezier(.4,0,.2,1);
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.95);}
    100% { opacity: 1; transform: scale(1);}
}

.brand-logo {
    max-height: 90px;
    margin-bottom: 2.2rem;
    filter: drop-shadow(0 0 16px #daaa54aa);
    animation: logoPulse 2.5s infinite alternate;
}

@keyframes logoPulse {
    0% { filter: drop-shadow(0 0 8px #daaa54aa);}
    100% { filter: drop-shadow(0 0 24px #daaa54);}
}

.hero h1 {
    font-size: 3.7rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    color: var(--light);
    letter-spacing: 1px;
    text-shadow: 0 2px 24px #daaa5433, 0 1px 0 #000;
}

.beta-badge {
    background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
    color: var(--secondary-dark);
    padding: 0.3rem 1rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-left: 0.75rem;
    vertical-align: middle;
    box-shadow: 0 2px 8px #daaa5440;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.7rem;
    color: #f5e9d6;
    text-shadow: 0 1px 8px #23272899;
    animation: fadeInText 1.5s 0.2s backwards;
}

@keyframes fadeInText {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cta-button, .cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 5px 18px rgba(218, 170, 84, 0.18);
    border: none;
    outline: none;
    cursor: pointer;
}

.cta-button {
    background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
    color: var(--secondary-dark);
    letter-spacing: 0.5px;
}

.cta-button:hover, .cta-button:focus {
    background: linear-gradient(90deg, var(--accent) 60%, var(--primary) 100%);
    color: var(--secondary-dark);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 30px #daaa5440;
}

.cta-button-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-left: 0;
    letter-spacing: 0.5px;
}

.cta-button-secondary:hover, .cta-button-secondary:focus {
    background: var(--primary);
    color: var(--secondary-dark);
    border-color: var(--accent);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 30px #daaa5440;
}

/* Animated Down Arrow */
.hero .down-arrow {
    display: block;
    margin: 2.5rem auto 0;
    color: var(--primary);
    font-size: 2.2rem;
    animation: bounceDown 1.5s infinite;
    opacity: 0.8;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0);}
    50% { transform: translateY(12px);}
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(120deg, #181a1b 60%, #232728 100%);
    color: var(--light);
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.7);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #daaa5440;
}

.section-title p {
    color: #e0cfa3;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(120deg, #232728 60%, #181a1b 100%);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(218,170,84,0.07), 0 1.5px 0 #daaa5410;
    text-align: center;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    height: 100%;
    border: 1.5px solid rgba(218,170,84,0.08);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 40px #daaa5440, 0 1.5px 0 #daaa5410;
    border-color: var(--primary);
}

.feature-icon {
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, rgba(218, 170, 84, 0.18) 0%, rgba(35, 39, 40, 0.18) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 2px 12px #daaa5440;
    font-size: 2.2rem;
    animation: iconPulse 2.5s infinite alternate;
}

@keyframes iconPulse {
    0% { box-shadow: 0 2px 8px #daaa5440;}
    100% { box-shadow: 0 4px 24px #daaa5440;}
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.feature-card p {
    color: #e0cfa3;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #181a1b 0%, #232728 100%);
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.3);
}

.stat-card {
    text-align: center;
    padding: 2.2rem 1rem;
    background: linear-gradient(120deg, #232728 60%, #181a1b 100%);
    border-radius: 16px;
    box-shadow: 0 2px 16px #daaa5410;
    margin-bottom: 1.5rem;
    border: 1.5px solid rgba(218,170,84,0.08);
    transition: box-shadow 0.3s;
}

.stat-card:hover {
    box-shadow: 0 8px 32px #daaa5440;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px #daaa5440;
    min-height: 3.2rem;
}

.stat-label {
    font-size: 1.15rem;
    color: #e0cfa3;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Footer */
footer {
    background: linear-gradient(120deg, #181a1b 60%, #232728 100%);
    color: var(--light);
    padding: 4rem 0 2rem;
    box-shadow: 0 -4px 32px 0 rgba(0,0,0,0.3);
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.footer-column ul li a:hover {
    color: var(--primary);
    text-shadow: 0 2px 8px #daaa5440;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links i {
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations for "live" feel */
.feature-card, .stat-card {
    animation: fadeInUp 1s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .brand-logo {
        max-height: 70px;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    .beta-badge {
        font-size: 0.85rem;
        padding: 0.2rem 0.6rem;
    }
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .brand-logo {
        max-height: 60px;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
    .feature-card {
        margin-bottom: 1.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 1rem;
    }
    .footer-column {
        margin-bottom: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.7rem;
    }
}
@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.3rem;
    }
    .cta-button, .cta-button-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
    .features {
        padding: 3rem 0;
    }
    .section-title {
        margin-bottom: 2rem;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    .feature-icon i {
        font-size: 1.5rem;
    }
    .stat-card {
        padding: 1rem;
    }
}

.sparkle {
    z-index: 2;
}
@keyframes sparkleMove {
    from { transform: scale(1) translateY(0);}
    to { transform: scale(1.3) translateY(-10px);}
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    color: var(--text);
}

.nav-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--navbar-bg-glass);
    backdrop-filter: blur(8px);
    box-shadow: var(--navbar-shadow);
    border-bottom: 1.5px solid var(--navbar-border);
    animation: navFadeIn 0.7s cubic-bezier(.4,0,.2,1);
}

@keyframes navFadeIn {
    from { opacity: 0; transform: translateY(-24px);}
    to { opacity: 1; transform: translateY(0);}
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 2.2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 70px;
    background: transparent;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}

.logo {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 12px #daaa5440);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), filter 0.35s cubic-bezier(.4,0,.2,1);
    animation: logoPopIn 0.8s cubic-bezier(.4,0,.2,1);
}
.logo:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 0 24px #daaa54cc);
}
@keyframes logoPopIn {
    0% { opacity: 0; transform: scale(0.8);}
    100% { opacity: 1; transform: scale(1);}
}

.company-name {
    font-size: 1.55rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 13px;
    white-space: nowrap;
    padding: 0.5rem 0;
    letter-spacing: 1px;
    text-shadow: 0 1px 8px #23272899;
    transition: color 0.2s;
}
.company-name:hover {
    color: var(--primary);
}

.beta-badge {
    background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
    color: var(--secondary-dark);
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px #daaa5440;
    animation: badgePulse 2.2s infinite alternate;
}
@keyframes badgePulse {
    0% { filter: brightness(1);}
    100% { filter: brightness(1.15);}
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: 0.5rem;
}

.profile-icon, .hamburger {
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    position: relative;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    padding: 8px;
    border-radius: 50%;
    background: linear-gradient(120deg, rgba(218,170,84,0.10) 0%, rgba(35,39,40,0.18) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px #23272833;
    border: 1.5px solid transparent;
}
.profile-icon:hover, .hamburger:hover {
    background: linear-gradient(120deg, rgba(218,170,84,0.18) 0%, rgba(35,39,40,0.28) 100%);
    color: var(--primary);
    border: 1.5px solid var(--primary);
    transform: translateY(-2px) scale(1.07);
    box-shadow: 0 4px 18px #daaa5433;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: var(--dropdown-bg);
    min-width: 230px;
    box-shadow: var(--dropdown-shadow);
    z-index: 10;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 12px;
    border: 1.5px solid var(--dropdown-border);
    /* Only animate dropdown itself, not links inside */
    animation: dropdownFadeIn 0.28s cubic-bezier(.4,0,.2,1);
}
@keyframes dropdownFadeIn {
    0% { opacity: 0; transform: translateY(-16px) scale(0.98);}
    100% { opacity: 1; transform: translateY(0) scale(1);}
}

.dropdown-content a {
    color: var(--text);
    padding: 15px 22px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1.02rem;
    font-weight: 500;
    transition: color 0.22s cubic-bezier(.4,0,.2,1), background 0.22s cubic-bezier(.4,0,.2,1), border-left 0.22s cubic-bezier(.4,0,.2,1), padding-left 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s cubic-bezier(.4,0,.2,1);
    border-left: 3px solid transparent;
    background: transparent;
    opacity: 1;
    /* Remove animation for links */
    animation: none !important;
}
/* Remove all animation delays for links */
.dropdown-content a:nth-child(1),
.dropdown-content a:nth-child(2),
.dropdown-content a:nth-child(3),
.dropdown-content a:nth-child(4),
.dropdown-content a:nth-child(5),
.dropdown-content a:nth-child(6),
.dropdown-content a:nth-child(7) {
    animation-delay: 0s !important;
}
/* Remove keyframes for links */
@keyframes dropdownLinkFadeIn {}

.dropdown-content a i {
    margin-right: 13px;
    color: var(--primary);
    font-size: 1.15rem;
    width: 22px;
    text-align: center;
    transition: color 0.2s;
}

/* Make hover static: no transform, no opacity, no animation */
.dropdown-content a:hover {
    background: linear-gradient(90deg, rgba(218,170,84,0.10) 0%, rgba(35,39,40,0.18) 100%);
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding-left: 28px;
    box-shadow: 0 2px 12px #daaa5433;
    /* Remove any transform, opacity, or animation on hover */
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
}
.dropdown-content a:hover i {
    color: var(--accent);
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, #232728 60%, #daaa541a 100%);
    margin: 5px 0;
    border: none;
}

.dropdown.show .dropdown-content {
    display: block;
    animation: dropdownFadeIn 0.28s cubic-bezier(.4,0,.2,1);
}

.profile-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--secondary-dark);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.6rem;
    font-weight: bold;
    box-shadow: 0 1px 6px #daaa5440;
}

/* Hamburger for all screens: always visible */
.hamburger {
    display: flex !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .navbar {
        padding: 0.7rem 1.2rem;
    }
}
@media (max-width: 900px) {
    .navbar {
        padding: 0.7rem 0.7rem;
    }
}
@media (max-width: 768px) {
    .navbar {
        height: 62px;
        padding: 0.6rem 0.5rem;
    }
    .logo {
        height: 36px;
    }
    .company-name {
        font-size: 1.15rem;
        gap: 8px;
    }
    .beta-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
    .nav-right {
        gap: 10px;
    }
    .profile-icon, .hamburger {
        font-size: 1.2rem;
        padding: 6px;
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 650px) {
    .navbar {
        height: 56px;
    }
    .logo {
        height: 30px;
    }
    .company-name {
        font-size: 1rem;
        gap: 6px;
    }
    .beta-badge {
        font-size: 0.55rem;
        padding: 2px 7px;
    }
    .profile-icon, .hamburger {
        font-size: 1.1rem;
        padding: 5px;
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 576px) {
    .navbar {
        height: 52px;
        padding: 0.5rem 0.3rem;
    }
    .logo-container {
        margin-left: 0.1rem;
    }
    .logo {
        height: 26px;
    }
    .company-name {
        font-size: 0.95rem;
        gap: 4px;
    }
    .beta-badge {
        font-size: 0.5rem;
        padding: 1px 4px;
    }
    .nav-right {
        gap: 6px;
        margin-right: 0.1rem;
    }
    .profile-icon, .hamburger {
        font-size: 1rem;
        padding: 4px;
        width: 28px;
        height: 28px;
    }
    .dropdown-content {
        position: fixed;
        top: 52px;
        right: 0;
        width: 100vw;
        border-radius: 0 0 14px 14px;
        border-top: 1.5px solid var(--dropdown-border);
        max-height: calc(100vh - 52px);
        overflow-y: auto;
        min-width: unset;
    }
    .dropdown-content a {
        padding: 18px 22px;
        font-size: 1.08rem;
    }
    .dropdown-divider {
        margin: 8px 0;
    }
}
@media (max-width: 480px) {
    .navbar {
        height: 48px;
        padding: 0.4rem 0.1rem;
    }
    .logo {
        height: 22px;
    }
    .company-name {
        font-size: 0.85rem;
    }
    .profile-icon, .hamburger {
        font-size: 0.9rem;
        padding: 3px;
        width: 24px;
        height: 24px;
    }
}
/* The hamburger is always visible now, so these are not needed:
@media (max-width: 900px) {
    .hamburger {
        display: flex !important;
    }
}
*/
@media (max-width: 900px) {
    .nav-right .dropdown:not(#menuDropdown) {
        display: none;
    }
}
@media (max-width: 900px) {
    .nav-right .dropdown#menuDropdown {
        display: flex;
    }
}
/* Hide menuDropdown on desktop, show on mobile */
/* REMOVE THIS BLOCK TO MAKE MENU VISIBLE ON DESKTOP */
/*
@media (min-width: 901px) {
    .nav-right .dropdown#menuDropdown {
        display: none !important;
    }
    .nav-right .dropdown:not(#menuDropdown) {
        display: flex !important;
    }
}
*/
/* Instead, always show menuDropdown */
.nav-right .dropdown#menuDropdown {
    display: flex !important;
}

/* Star Rating CSS */
.rating {
    display: inline-block;
    unicode-bidi: bidi-override;
    direction: rtl;
}
.rating > input {
    display: none;
}
.rating > label {
    color: #ccc;
    float: right;
    font-size: 2rem;
    cursor: pointer;
}
.rating > label:before {
    content: '\2605';
}
.rating > input:checked ~ label {
    color: #ffc107; /* Gold color for selected stars */
}
.rating > label:hover,
.rating > label:hover ~ label {
    color: #ffc107; /* Gold color on hover */
}

.star-rating {
    display: inline-block;
    font-size: 1.2rem;
    color: #ffc107; /* Gold color for displayed stars */
}
.star-rating .fa-star-half-alt {
    position: relative;
}
.star-rating .fa-star-half-alt:before {
    content: '\f089'; /* Font Awesome half star icon */
    position: absolute;
    width: 50%;
    overflow: hidden;
}
