@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary:
        /*#4f46e5;*/
        #ff6f00;
    --primary-hover: #4338ca;
    --primary-light: #e0e7ff;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #facc15;

    /* Neutral Colors */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Containers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary);
}

/* Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-light {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(15, 23, 42, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Header */
.top-header {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.6rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 2rem;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-social {
    display: flex;
    gap: 1.2rem;
}

.top-social a:hover {
    color: white;
}

header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    margin-left: 1rem;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 100px;
}

/*.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    position: relative;
}*/
.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 70px;
    width: 100%;
    transition: var(--transition);
}

.logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-slogan {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-top: 2px;
    line-height: 1;
    transition: var(--transition);
}


.logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-login-nav {
    background: var(--primary-light);
    color: var(--primary) !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.btn-login-nav:hover {
    background: var(--primary);
    color: white !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    position: relative;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.05), transparent 40%);
}

.hero-home {
    padding: 12rem 0 10rem;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../images/hero-bg1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.hero-home h2 {
    color: white;
}

.hero-home p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h2 {
    font-size: 4.5rem;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease forwards;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: slideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Section Common */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.detail-grid {
    grid-template-columns: 2.2fr 1fr;
    gap: 5rem;
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.package-card {
    display: flex;
    flex-direction: column;
}

.package-card .img {
    height: 200px;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.package-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .img img {
    transform: scale(1.1);
}

.package-type {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.package-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.package-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 1.5rem 0;
}

/* Experts */
.expert-card {
    text-align: center;
    background: transparent;
    border: none;
    padding: 0;
}

.expert-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
}

.expert-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px dashed var(--primary-light);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.expert-card .img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.expert-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
}

.expert-card span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials */
.testi-card {
    padding: 3rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.2;
}

.testi-card p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Stats */
.stats {
    background: var(--secondary);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1), transparent 70%);
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-light);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 8rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: #94a3b8;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links h4 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul a {
    color: #94a3b8;
}

.footer-links ul a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 0.9rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: #fbfcfd;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
    background: white;
}

/* Admin Specific */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: var(--secondary);
    color: white;
    position: fixed;
    height: 100vh;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom scrollbar for sidebar */
.admin-sidebar::-webkit-scrollbar {
    width: 5px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}


.sidebar-brand {
    padding: 0 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.sidebar-nav {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    color: #94a3b8;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-nav a.active {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.sidebar-nav a i {
    width: 20px;
    text-align: center;
}

.admin-main {
    flex-grow: 1;
    margin-left: 280px;
    padding: 3rem 4rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.admin-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

#adminMobileHeader {
    display: none;
}


.admin-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.sidebar-footer {
    padding-top: 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-logout {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    color: #f87171 !important;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
}

.btn-logout:hover {
    background: rgba(248, 113, 113, 0.1) !important;
    color: #ef4444 !important;
    transform: translateX(5px);
}


.table-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: #f8fafc;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

/* New Admin Table Styles */
.table-container {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow-x: auto;
    width: 100%;
    margin-bottom: 2rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    background: white;
}

.admin-table th {
    background: #f8fafc;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.admin-table td {
    padding: 1.2rem 1.5rem;
    vertical-align: middle;
    white-space: nowrap;
}

.type-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-active {
    background: #ecfdf5;
    color: var(--success);
}

.status-hidden {
    background: #fff1f2;
    color: var(--danger);
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    transition: var(--transition);
}

.action-btn.edit {
    background: #f1f5f9;
    color: var(--secondary);
}

.action-btn.edit:hover {
    background: var(--primary);
    color: white;
}

.action-btn.delete {
    background: #fee2e2;
    color: var(--danger);
}

.action-btn.delete:hover {
    background: var(--danger);
    color: white;
}


/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */

/* Tablet & Smaller Desktop (Up to 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h2,
    .hero-home h2 {
        font-size: 3.5rem;
    }

    .admin-main {
        padding: 2rem;
    }

    #adminMobileHeader {
        display: flex !important;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Tablets (Up to 768px) */
@media (max-width: 768px) {
    header {
        height: 80px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
        transform: translateX(100%);
        /* Use transform instead of right */
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .mobile-toggle {
        display: block;
        z-index: 1000;
    }

    .grid-4,
    .grid-3,
    .grid-2,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-home {
        padding: 8rem 0 6rem;
    }

    .hero h2,
    .hero-home h2 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .top-header {
        display: none;
        /* Hide top bar on mobile to save space and prevent overflow */
    }

    /* Admin Mobile Behavior */
    .admin-sidebar {
        left: -100%;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
    }

    .admin-sidebar.active {
        left: 0;
    }

    .admin-main {
        margin-left: 0;
        padding: 1.5rem;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
        background: white;
        padding: 1.5rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-color);
    }

    .admin-header h2 {
        font-size: 1.5rem;
        width: 100%;
    }

    .admin-header .btn {
        width: 100%;
        justify-content: center;
    }

    .admin-card {
        padding: 1.5rem;
    }

    .table-container {
        border: none;
        box-shadow: none;
        background: transparent;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    /* Custom horizontal scrollbar for tables on mobile */
    .table-container::-webkit-scrollbar {
        height: 6px;
    }

    .table-container::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 4px;
    }

    .table-container::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
    }

    .table-container::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }

    .admin-table {
        min-width: 800px;
        box-shadow: var(--shadow-md);
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .admin-table th {
        background: #f8fafc;
        /* Removed buggy sticky positioning */
    }
}

/* Mobile Phones (Up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .admin-main {
        padding: 1rem;
    }

    .admin-card {
        padding: 1rem;
    }

    .table-container {
        display: block;
        margin-top: 1rem;
    }

    .hero h2,
    .hero-home h2 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 2rem;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .expert-img-wrapper {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .expert-card h4 {
        font-size: 1.1rem;
    }

    .expert-card span {
        font-size: 0.8rem;
    }
}