/*
Theme Name: b-final-1
Theme URI: https://alphamindz.com
Author: PrismLogic
Author URI: https://prismlogic.com
Description: Alpha Mindz custom theme by PrismLogic.
Version: 1.0
*/
:root {
    /* Requested colors */
    --color-blue: rgb(48, 98, 135);
    --color-green: rgb(139, 189, 79);
    --color-pink: rgb(255, 113, 154); /* Vibrant stunning pink */
    
    /* Background & Text */
    --bg-main: #fdfdfd;
    --bg-secondary: #f4f6f8;
    --text-main: #14161a;
    --text-muted: #64748b;
    --border: #eaedf1;
    
    /* Fonts */
    --font-ui: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-glow: 0 10px 40px -10px rgba(48, 98, 135, 0.3);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-ui);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Layout Utilities */
.section-container, .hero-container, .nav-container, .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    background: rgba(253, 253, 253, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.brand span {
    color: var(--color-pink);
}

.nav-links {
    display: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
}
.nav-links a:hover {
    color: var(--text-main);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--text-main);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
}
.btn-primary:hover {
    background: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
    padding: 100px 0 140px;
    background: radial-gradient(circle at 10% 20%, rgba(255, 113, 154, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(48, 98, 135, 0.04) 0%, transparent 40%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.hero-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(139, 189, 79, 0.1);
    color: var(--color-green);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-main);
}

.text-pink {
    color: var(--color-pink);
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: center;
}

.btn-solid-blue {
    padding: 16px 32px;
    background: var(--color-blue);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
}
.btn-solid-blue:hover {
    background: #255173;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: 1px solid var(--border);
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    background: #fff;
}
.btn-outline:hover {
    border-color: var(--text-main);
    background: var(--text-main);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 48px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
    justify-content: center;
}

.stat-group {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-main);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Visuals */
.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.4);
}

.badge-1 {
    top: 40px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
    display: none;
}

.badge-2 {
    bottom: 60px;
    left: -30px;
    animation: float 7s ease-in-out infinite reverse;
    display: none;
}

.floating-badge i {
    font-size: 28px;
    color: var(--color-blue);
    background: rgba(48, 98, 135, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-2 i {
    color: var(--color-green);
    background: rgba(139, 189, 79, 0.1);
}

.floating-badge div {
    display: flex;
    flex-direction: column;
}

.floating-badge strong {
    font-size: 15px;
    color: var(--text-main);
}

.floating-badge span {
    font-size: 13px;
    color: var(--text-muted);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Main Showcase Video */
.main-video-section {
    padding: 0 0 100px 0;
    margin-top: -60px; /* Pull it up slightly into the hero gradient */
    position: relative;
    z-index: 10;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 21 / 9;
    background: #000;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-play-pause, .video-mute-unmute {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-main);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    transform: scale(0.9);
}

.video-play-pause:hover, .video-mute-unmute:hover {
    transform: scale(1);
    background: #fff;
    color: var(--color-pink);
}

/* Mixed Section */
.mixed-section {
    padding: 100px 0;
    background: #fff;
}
.mixed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-blue);
    font-size: 14px;
}
.view-all:hover {
    gap: 12px;
}

/* Masterclasses (Left) */
.video-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 60%);
    z-index: 1;
    transition: var(--transition);
}
.video-card:hover::before {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}
.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-card:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-blue);
    z-index: 2;
    transition: var(--transition);
}
.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-blue);
    color: #fff;
}

.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: #fff;
}
.video-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}
.video-info p {
    font-size: 13px;
    opacity: 0.8;
}

/* Latest Section (Right) */
.latest-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.latest-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.latest-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.latest-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    flex-shrink: 0;
    overflow: hidden;
}
.latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.latest-card:hover .latest-image img {
    transform: scale(1.1);
}

.latest-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tag {
    font-size: 10px;
    padding: 4px 10px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
}
.bg-green { background: var(--color-green); }
.bg-blue { background: var(--color-blue); }
.bg-pink { background: var(--color-pink); }

.latest-content h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
}
.latest-content h3 a {
    color: var(--text-main);
}
.latest-content h3 a:hover {
    color: var(--color-blue);
}
.latest-content .date {
    font-size: 13px;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0 140px;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

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

.quote-icon {
    font-size: 48px;
    color: rgba(48, 98, 135, 0.1);
    position: absolute;
    top: 30px;
    right: 30px;
}

.quote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-main);
    font-family: var(--font-heading);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.author h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Top Bar */
.top-bar {
    background: var(--text-main);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.top-contact a, .top-links a {
    color: rgba(255,255,255,0.8);
    margin-right: 24px;
    font-weight: 500;
}
.top-contact a:hover, .top-links a:hover {
    color: #fff;
}
.top-links {
    display: flex;
}
.top-links a:last-child {
    margin-right: 0;
}

/* Dropdowns */
.nav-links {
    display: none;
    gap: 40px;
    align-items: center;
}
.nav-item { position: relative; }
.nav-link { padding: 24px 0; display: inline-flex; align-items: center; gap: 4px; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--border);
    z-index: 100;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 4px;
}
.dropdown-menu a:last-child { margin-bottom: 0; }
.dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--color-blue);
}
.mega-menu {
    width: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.mega-column {
    display: flex;
    flex-direction: column;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--text-main);
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
}
.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 8px;
}
.stat-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.text-blue { color: var(--color-blue); }
.text-green { color: var(--color-green); }

/* Shop Section */
.shop-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}
.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.product-image {
    position: relative;
    aspect-ratio: 1;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.9);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}
.product-info {
    padding: 24px;
}
.product-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.product-info .price {
    font-weight: 700;
    color: var(--color-pink);
    margin-bottom: 16px;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* Expanded Footer */
.footer { 
    background: var(--text-main);
    color: #fff;
    padding: 80px 0 40px; 
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
    text-align: center;
}
.footer-about p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}
.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.social-links a {
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}
.footer-widget h3 {
    font-size: 18px;
    margin-bottom: 24px;
}
.footer-widget ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}
.footer-widget a {
    color: rgba(255,255,255,0.6);
}
.footer-widget a:hover {
    color: #fff;
    padding-left: 5px;
}
.contact-list li {
    color: rgba(255,255,255,0.6);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
}
.contact-list i { font-size: 18px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
    justify-content: space-between;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* Responsive (Mobile First) */
@media (min-width: 768px) {
    .top-bar-container {
        flex-direction: row;
    }
    .nav-links {
        display: flex;
    }
    .hero-title {
        font-size: 64px;
    }
    .testimonials-grid, .shop-grid, .stats-grid, .video-carousel, .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .contact-list li {
        justify-content: flex-start;
    }
    .social-links {
        justify-content: flex-start;
    }
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        text-align: left;
        gap: 80px;
    }
    .hero-title {
        font-size: 82px;
    }
    .hero-subtitle {
        margin: 0 0 40px 0;
    }
    .hero-cta, .hero-stats {
        justify-content: flex-start;
    }
    .badge-1, .badge-2 {
        display: flex;
    }
    .mixed-grid {
        grid-template-columns: 1.5fr 1fr;
    }
    .video-carousel {
        grid-template-columns: 1fr 1fr;
    }
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* ==========================================================================
   Assessment Listing Layout 
   ========================================================================== */
.assessments-page {
    padding: 60px 0 100px;
    background-color: var(--bg-secondary);
}

.category-filters {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-bottom: 30px;
    scrollbar-width: none;
}
.category-filters::-webkit-scrollbar { 
    display: none; 
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--border);
    white-space: nowrap;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover {
    background: var(--bg-secondary);
}
.filter-btn.active {
    background: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
}

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

.assessment-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.assessment-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-banner {
    height: 160px;
    background: linear-gradient(135deg, rgba(48, 98, 135, 0.1), rgba(255, 113, 154, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-blue);
    position: relative;
}

.card-banner i {
    z-index: 2;
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.assessment-card .tag {
    align-self: flex-start;
}

.assessment-card h3 {
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.assessment-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin: 16px 0;
}
.card-meta span { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}
.card-meta i {
    color: var(--color-blue);
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
}

/* Tablet and Desktop adjustments */
@media (min-width: 768px) {
    }
    .hero-title {
        font-size: 64px;
    }
    .testimonials-grid, .shop-grid, .stats-grid, .video-carousel, .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .contact-list li {
        justify-content: flex-start;
    }
    .social-links {
        justify-content: flex-start;
    }
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        text-align: left;
        gap: 80px;
    }
    .hero-title {
        font-size: 82px;
    }
    .hero-subtitle {
        margin: 0 0 40px 0;
    }
    .hero-cta, .hero-stats {
        justify-content: flex-start;
    }
    .badge-1, .badge-2 {
        display: flex;
    }
    .mixed-grid {
        grid-template-columns: 1.5fr 1fr;
    }
    .video-carousel {
        grid-template-columns: 1fr 1fr;
    }
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* ==========================================================================
   Assessment Listing Layout 
   ========================================================================== */
.assessments-page {
    padding: 60px 0 100px;
    background-color: var(--bg-secondary);
}

.category-filters {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-bottom: 30px;
    scrollbar-width: none;
}
.category-filters::-webkit-scrollbar { 
    display: none; 
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--border);
    white-space: nowrap;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover {
    background: var(--bg-secondary);
}
.filter-btn.active {
    background: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
}

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

.assessment-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.assessment-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-banner {
    height: 160px;
    background: linear-gradient(135deg, rgba(48, 98, 135, 0.1), rgba(255, 113, 154, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-blue);
    position: relative;
}

.card-banner i {
    z-index: 2;
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.assessment-card .tag {
    align-self: flex-start;
}

.assessment-card h3 {
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.assessment-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin: 16px 0;
}
.card-meta span { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}
.card-meta i {
    color: var(--color-blue);
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
}

/* Tablet and Desktop adjustments */
@media (min-width: 768px) {
    .assessments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .assessments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   About Us - Team Section
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-image-wrapper {
    width: 200px;
    height: 250px;
    margin-bottom: 24px;
    overflow: hidden;
    /* Optional: add border radius if you want rounded images, or keep square as per mockup */
    /* border-radius: 12px; */
}

.member-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* To ensure faces are visible */
    transition: transform 0.4s ease;
}

.team-member:hover .member-image-wrapper img {
    transform: scale(1.05);
}

.member-name {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.member-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.member-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
}

/* Tablet and Desktop adjustments */
@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .member-image-wrapper {
        width: 100%;
        max-width: 250px;
        height: 320px;
    }
}
@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
