/*
The World Around Us — Custom CSS
Extends Tailwind CDN with glassmorphism, animations, and premium teen aesthetics.
*/

/* ─── Google Fonts ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Custom Properties ─────────────────────────── */
:root {
    --navy: #f8fafc;
    /* Slate 50 Main BG */
    --navy-light: #ffffff;
    /* White Cards */
    --navy-mid: #f1f5f9;
    /* Slate 100 Alternate */
    --violet: #2563eb;
    /* Blue 600 Primary */
    --violet-light: #3b82f6;
    /* Blue 500 Light */
    --violet-dark: #1d4ed8;
    /* Blue 700 Dark */
    --cyan: #f97316;
    /* Orange 500 Secondary */
    --cyan-light: #ea580c;
    /* Orange 600 Text */
    --pink: #10b981;
    /* Emerald 500 Accent */
    
    /* Har Haath Kitaab Brand Colors */
    --hhk-red: #e11d48;
    --hhk-green: #16a34a;
    --hhk-orange: #f59e0b;
    --hhk-blue: #2563eb;
    --white: #0f172a;
    /* Slate 900 Default Text */
    --white-real: #ffffff;
    /* For things that strictly need white */
    --gray-100: #e2e8f0;
    /* Slate 200 */
    --gray-400: #64748b;
    /* Slate 500 Text secondary */
    --gray-600: #cbd5e1;
    /* Slate 300 Light borders */
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-pill: 9999px;
    --radius-xl: 1.5rem;
    --radius-lg: 1rem;
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.2);
    --shadow-cyan: 0 0 20px rgba(249, 115, 22, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* ─── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--violet);
    border-radius: var(--radius-pill);
}

/* ─── Selection ──────────────────────────────────────── */
::selection {
    background: var(--violet);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   HEADER — Floating Pill Glassmorphism
═══════════════════════════════════════════════════════ */
#site-header {
    position: sticky;
    top: 2.5rem;
    left: 0;
    right: 0;
    margin: 0px auto;
	margin-top: -65px;
    width: calc(100% - 3rem);
    max-width: 1200px;
    z-index: 1000;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(203, 213, 225, 0.5);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Visibility Utilities */
.fordesktop {
    display: block;
}
.formobile {
    display: none;
}

@media (max-width: 768px) {
    .fordesktop { display: none; }
    .formobile { display: block; }
    
    #site-header {
        top: 1rem;
        width: calc(100% - 2rem);
        padding: 0.6rem 1.25rem;
    }
}


#site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(226, 232, 240, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--violet-light), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Primary Nav */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.primary-nav li a {
    font-family: var(--font-head);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    color: rgba(51, 65, 85, 1);
    transition: var(--transition);
    white-space: nowrap;
}

.primary-nav li a:hover,
.primary-nav li.current-menu-item a {
    background: rgba(244, 114, 182, 0.15);
    /* pink tint */
    color: var(--violet); /* Changed from white to violet for visibility */
    border-radius: var(--radius-pill);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Mobile menu toggle */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    color: #0f172a; /* Changed from white to dark for visibility */
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0f172a; /* Changed from white to dark for visibility */
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Dropdown */
.mobile-nav {
    display: none;
    position: fixed;
    top: 6.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 1.25rem;
    z-index: 999;
    flex-direction: column;
    gap: 0.25rem;
}
ul#menu-main-menu-1 li.menu-item {
    margin-bottom: 15px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(30, 41, 59, 1);
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--violet); /* Changed from white to violet for visibility */
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--violet), var(--violet-light));
    color: var(--white-real);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: var(--white-real);
}

.btn-secondary {
    background: rgba(37, 99, 235, 0.12);
    color: var(--violet-light);
    border: 1px solid rgba(37, 99, 235, 0.35);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.25);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-cyan {
    background: linear-gradient(135deg, var(--cyan), #f59e0b);
    color: var(--white-real);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: var(--white-real);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--violet);
    color: var(--violet);
    background: rgba(37, 99, 235, 0.05);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-400);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    color: var(--white);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════
   BADGES & TAGS
═══════════════════════════════════════════════════════ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
}

.badge-violet {
    background: rgba(37, 99, 235, 0.2);
    color: var(--violet-light);
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.badge-cyan {
    background: rgba(249, 115, 22, 0.15);
    color: var(--cyan-light);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.badge-pink {
    background: rgba(16, 185, 129, 0.15);
    color: #f9a8d4;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-green {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* ═══════════════════════════════════════════════════════
   GRADIENT TEXT
═══════════════════════════════════════════════════════ */
.gradient-text {
    background: linear-gradient(135deg, var(--violet-light) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-pink {
    background: linear-gradient(135deg, var(--pink) 0%, var(--violet-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════
   SECTION LAYOUTS
═══════════════════════════════════════════════════════ */
.section-pad {
    padding: 5rem 0;
}

.section-pad-sm {
    padding: 3rem 0;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--violet-light);
    margin-bottom: 0.75rem;
    font-family: var(--font-head);
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 640px;
}

/* ═══════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════ */
.card {
    background: var(--navy-light);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.card-glass {
    background: rgba(248, 250, 252, 1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(203, 213, 225, 1);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.card-glass:hover {
    background: rgba(226, 232, 240, 1);
    border-color: rgba(37, 99, 235, 0.25);
}

.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.card-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.card-title a:hover {
    color: var(--violet-light);
}

.card-excerpt {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.65;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(241, 245, 249, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.hero-section {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
	padding-bottom: 3rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #ffffffba;
    z-index: 0;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--violet-light);
    font-family: var(--font-head);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(71, 85, 105, 1);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Floating orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--violet);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--cyan);
    bottom: -50px;
    left: -50px;
    animation-delay: -4s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--pink);
    top: 50%;
    right: 30%;
    animation-delay: -2s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

/* ═══════════════════════════════════════════════════════
   STATS COUNTER SECTION
═══════════════════════════════════════════════════════ */
.stats-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(249, 115, 22, 0.08) 100%);
    border-top: 1px solid rgba(241, 245, 249, 1);
    border-bottom: 1px solid rgba(241, 245, 249, 1);
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1rem;
}

.stat-number {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   PAPER CARD
═══════════════════════════════════════════════════════ */
.paper-card {
    background: var(--navy-light);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.paper-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 99, 235, 0.2);
}

.paper-card__thumbnail {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.paper-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.paper-card__title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.paper-card__title a:hover {
    color: var(--violet-light);
}

.paper-card__meta {
    font-size: 0.8rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.paper-card__excerpt {
    font-size: 0.855rem;
    color: var(--gray-400);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.paper-card__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   AUTHOR CARD
═══════════════════════════════════════════════════════ */
.author-card {
    background: var(--navy-light);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    opacity: 0;
    transition: var(--transition);
}

.author-card:hover::before {
    opacity: 1;
}

.author-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.author-card__avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid rgba(37, 99, 235, 0.4);
    display: block;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.author-card__name {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-card__role {
    font-size: 0.8rem;
    color: var(--violet-light);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.author-card__bio {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author-card__posts {
    font-size: 0.8rem;
    color: var(--cyan-light);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   BOOK SHOWCASE
═══════════════════════════════════════════════════════ */
.book-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 1);
}

.book-item:last-child {
    border-bottom: none;
}

.book-item.reverse {}

.book-item.reverse .book-cover-wrap {
    order: 2;
}

.book-item.reverse .book-info {
    order: 1;
}

.book-cover-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover {
    width: 100%;
    max-width: 260px;
    border-radius: var(--radius-lg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.6), -8px -8px 20px rgba(37, 99, 235, 0.15);
    transition: var(--transition);
}

.book-cover-wrap:hover .book-cover {
    transform: rotate(-3deg) scale(1.03);
}

.book-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.book-info__genre {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.book-info__title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.book-info__author {
    font-size: 0.95rem;
    color: var(--violet-light);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.book-info__desc {
    font-size: 0.95rem;
    color: rgba(71, 85, 105, 1);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.book-info__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.book-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.book-meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    font-weight: 600;
}

.book-meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-head);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#site-footer {
    background: #0f172a; /* Slate 900 */
    border-top: none;
    position: relative;
    overflow: hidden;
    color: #94a3b8; /* Slate 400 */
}

#site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--violet), var(--cyan), var(--pink));
}

#site-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}



/* .footer-brand .logo-text {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
} */

.footer-desc {
    color: #94a3b8;
    line-height: 1.8;
}



.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.15rem;
    transition: var(--transition);
    cursor: pointer;
}

.social-link:hover {
    background: var(--violet);
    border-color: var(--violet);
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

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

.footer-links li a {
    font-size: 0.95rem;
    color: #94a3b8;
    transition: var(--transition);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--cyan);
    transform: translateX(6px);
}

.newsletter-form {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.35rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: #64748b;
}

.newsletter-form:focus-within {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.newsletter-form .btn-primary {
    border-radius: var(--radius-pill);
}

.footer-bottom {
    position: relative;
    z-index: 10;
}

.footer-copy {
    color: #64748b;
}

.footer-legal-links a {
    color: #64748b;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════ */
.page-hero {
    padding: 8rem 0 5rem;
    text-align: center;
    background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(37, 99, 235, 0.25) 0%, transparent 70%),
        var(--navy);
    border-bottom: 1px solid rgba(226, 232, 240, 1);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero__title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(100, 116, 139, 1);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   POST / SINGLE
═══════════════════════════════════════════════════════ */
.post-content {
    color: rgba(30, 41, 59, 1);
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 760px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    font-family: var(--font-head);
    color: var(--white);
    margin: 2rem 0 0.75rem;
}

.post-content h2 {
    font-size: 1.75rem;
}

.post-content h3 {
    font-size: 1.35rem;
}

.post-content p {
    margin-bottom: 1.25rem;
}

.post-content a {
    color: var(--violet-light);
    text-decoration: underline;
}

.post-content ul,
.post-content ol {
    margin: 1rem 0 1rem 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--violet);
    background: rgba(37, 99, 235, 0.08);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    color: var(--violet-light);
    font-style: italic;
    font-size: 1.1rem;
}

.post-content img {
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.post-content pre {
    background: var(--navy-mid);
    border: 1px solid rgba(203, 213, 225, 1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    overflow-x: auto;
    font-size: 0.875rem;
    margin: 1.5rem 0;
}

.post-content code {
    font-size: 0.875rem;
    background: rgba(37, 99, 235, 0.15);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    color: var(--violet-light);
}

/* ═══════════════════════════════════════════════════════
   PAPER SINGLE
═══════════════════════════════════════════════════════ */
.paper-download-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(249, 115, 22, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin: 2.5rem 0;
}

.paper-download-box h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.paper-download-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.paper-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.paper-info-item {
    background: rgba(248, 250, 252, 1);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.paper-info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-400);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.paper-info-value {
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-head);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */
.contact-form-wrap {
    background: var(--navy-light);
    border: 1px solid rgba(203, 213, 225, 1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-head);
    color: rgba(30, 41, 59, 1);
}

.form-input,
.form-textarea,
.form-select {
    background: rgba(241, 245, 249, 1);
    border: 1px solid rgba(203, 213, 225, 1);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1.25rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--violet);
    background: rgba(37, 99, 235, 0.08);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

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

.contact-info-card {
    background: var(--navy-light);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(249, 115, 22, 0.15));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════ */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--violet), var(--cyan), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.4rem;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    background: var(--violet);
    border-radius: 50%;
    border: 2px solid var(--navy);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

.timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--violet-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.timeline-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.timeline-desc {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.65;
}

/* Value Card */
.value-card {
    background: var(--navy-light);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.value-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.855rem;
    color: var(--gray-400);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   NEWSLETTER / CTA BANNER
═══════════════════════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(249, 115, 22, 0.15) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
} */

/* ═══════════════════════════════════════════════════════
   SEARCH FORM
═══════════════════════════════════════════════════════ */
.search-form-wrap {
    display: flex;
    background: rgba(241, 245, 249, 1);
    border: 1px solid rgba(203, 213, 225, 1);
    border-radius: var(--radius-pill);
    overflow: hidden;
    transition: var(--transition);
}

.search-form-wrap:focus-within {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.search-form-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.85rem 1.5rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.search-form-input::placeholder {
    color: var(--gray-400);
}

.search-form-btn {
    background: var(--violet);
    border: none;
    padding: 0 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.search-form-btn:hover {
    background: var(--violet-dark);
}

/* ═══════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════ */
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 0;
}

.page-numbers {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-400);
    background: rgba(241, 245, 249, 1);
    border: 1px solid rgba(203, 213, 225, 1);
    transition: var(--transition);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--violet);
    color: var(--white);
    border-color: var(--violet);
}

/* ═══════════════════════════════════════════════════════
   MISC UTILITIES
═══════════════════════════════════════════════════════ */
.gradient-text,
.text-gradient {
    background: linear-gradient(135deg, var(--violet-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203, 213, 225, 1), transparent);
    margin: 0;
}

.dot-divider {
    color: rgba(100, 116, 139, 1);
}

.no-results {
    text-align: center;
    padding: 5rem 1rem;
    color: var(--gray-400);
}

/* Main content push for sticky header */
/* .site-main {
    padding-top: 5rem;
} */

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.6), 0 0 80px rgba(37, 99, 235, 0.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce-sm {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-bounce-sm {
    animation: bounce-sm 2s ease-in-out infinite;
}

/* Stagger delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .book-item {
        grid-template-columns: 220px 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .primary-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-cta .btn-primary {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .book-item,
    .book-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .book-item.reverse .book-cover-wrap,
    .book-item.reverse .book-info {
        order: unset;
    }

    .book-cover {
        max-width: 200px;
        margin: 0 auto;
    }

    .book-info__meta {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 640px) {
    #site-header {
        width: calc(100% - 2rem);
        padding: 0.65rem 1rem;
    }

    .section-pad {
        padding: 3.5rem 0;
    }

    .paper-download-actions {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════
   RUNNING TRAIN ANIMATION (LITERACY EXPRESS)
   Designed for teenager-centric aesthetics
═══════════════════════════════════════════════════════ */
.train-track-container {
    position: relative;
    width: 100%;
    height: 120px;
    background: transparent;
    overflow: hidden;
/*     margin: 2rem 0; */
    border-bottom: 2px solid rgba(226, 232, 240, 1);
}

.train-track {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 200%;
    height: 4px;
    background: repeating-linear-gradient(90deg, 
        #94a3b8 0, #94a3b8 20px, 
        transparent 20px, transparent 40px);
}

.train-wagon-wrap {
    position: absolute;
    bottom: 14px;
    left: -500px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    animation: train-run 25s linear infinite;
}

.train-locomotive {
    position: relative;
    width: 80px;
    height: 50px;
}

.loco-body {
    width: 60px;
    height: 40px;
    background: var(--hhk-red);
    border-radius: 4px 10px 4px 4px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.loco-cabin {
    width: 30px;
    height: 25px;
    background: var(--hhk-red);
    position: absolute;
    bottom: 15px;
    right: -10px;
    border-radius: 3px 3px 0 0;
}

.loco-chimney {
    width: 12px;
    height: 15px;
    background: #333;
    position: absolute;
    top: -15px;
    left: 15px;
    border-radius: 2px 2px 0 0;
}

.smoke-wrap {
    position: absolute;
    top: -25px;
    left: 15px;
}

.smoke {
    width: 8px;
    height: 8px;
    background: rgba(100, 100, 100, 0.4);
    border-radius: 50%;
    position: absolute;
    opacity: 0;
    animation: smoke-float 1.5s infinite;
}

.smoke-1 { animation-delay: 0s; }
.smoke-2 { animation-delay: 0.5s; left: 5px; }
.smoke-3 { animation-delay: 1s; left: -5px; }

@keyframes smoke-float {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-30px) scale(2); opacity: 0; }
}

.wagon {
    width: 60px;
    height: 35px;
    background: var(--hhk-blue);
    border-radius: 4px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.wagon-books {
    width: 40px;
    height: 20px;
    position: absolute;
    top: -15px;
    display: flex;
    gap: 2px;
    justify-content: center;
}

.book {
    width: 8px;
    height: 100%;
    border-radius: 2px 2px 0 0;
}

.book-1 { background: #fbbf24; height: 18px; }
.book-2 { background: #f87171; height: 22px; }
.book-3 { background: #60a5fa; height: 15px; }
.book-4 { background: #34d399; height: 20px; }

.wheel {
    width: 12px;
    height: 12px;
    background: #333;
    border: 2px solid #555;
    border-radius: 50%;
    position: absolute;
    bottom: -6px;
    animation: wheel-rotate 0.8s linear infinite;
}

.wheel-1 { left: 8px; }
.wheel-2 { right: 8px; }

@keyframes wheel-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes train-run {
    0% { left: -500px; }
    100% { left: 100%; }
}

.wagon:nth-child(even) { background: var(--hhk-orange); }
.wagon:nth-child(3n) { background: var(--hhk-green); }

/* Process Section Styles */
.process-step-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(241, 245, 249, 1);
    transition: var(--transition);
    position: relative;
    z-index: 10;
    height: 100%;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--hhk-blue);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--hhk-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-head);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

.process-icon {
    font-size: 3.5rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
}

.process-step-card:hover .process-icon {
    color: var(--hhk-blue);
    transform: scale(1.1);
}

.process-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.process-step-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.process-connector {
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 4rem;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

@media (max-width: 1024px) {
    .process-connector { display: none; }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIAL SLIDER (READER'S SPEAK)
   Restored missing styles
═══════════════════════════════════════════════════════ */
.twau-testimonial-slider {
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.slider-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 1rem;
}

.testimonial-card {
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 6rem;
    color: var(--hhk-blue);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-text.expanded {
    -webkit-line-clamp: unset;
}

.read-more-btn {
    color: var(--hhk-blue);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    margin-bottom: 2rem;
}

.author-box {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding-top: 1.5rem;
}

.author-box .name {
    display: block;
    font-weight: 800;
    font-size: 1.25rem;
    color: #0f172a;
    font-family: var(--font-head);
}

.author-box .meta {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: var(--hhk-blue);
    color: white;
    border-color: var(--hhk-blue);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    .testimonial-text {
        font-size: 1rem;
    }
}