/* Ranjitsinh Disale - Personal Brand CSS Style Guide */

/* --- Custom Variables & Reset --- */
:root {
    --bg-dark: #FAF6F0; /* Warm Cream Base Page Background */
    --bg-card: #ffffff; /* Pure White for Modal Cards and Containers */
    --bg-card-hover: #fcfaf8; /* Slightly warmer white for hovered cards */
    --accent-gold: #fe4855; /* Vibrant Brand Coral (Primary CTA / Highlight) */
    --accent-gold-rgb: 254, 72, 85;
    --accent-gold-hover: #d12833; /* Deep Coral (CTA hover states) */
    --text-primary: #292929; /* Charcoal/Off-Black for clean headings & text */
    --text-secondary: #5b5b5b; /* Sleek Slate-Grey for legible body text */
    --text-muted: #7e7e7e; /* Muted grey for sub-labels and small details */
    --border-color: rgba(var(--accent-gold-rgb), 0.2);
    --border-hover: rgba(var(--accent-gold-rgb), 0.4);
    
    /* New brand helper variables */
    --accent-teal: #447e7e; /* Calming Brand Teal/Cyan for secondary links & details */
    --bg-cream-alt: #f5ede8; /* Warm Cream Accent background for sections */
    --bg-teal-alt: #dee9e9; /* Ice/Light Teal Accent background for sections */
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-quote: 'Playfair Display', Georgia, serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

/* --- Base Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

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

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

.underline {
    position: relative;
    display: inline-block;
}

.underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background-color: var(--accent-gold);
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: var(--transition-smooth);
}

/* --- Core Buttons & UI Components --- */
.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--accent-gold-rgb), 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid rgba(41, 41, 41, 0.2); /* High-contrast border on light backgrounds */
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    border-width: 1.5px;
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    display: block;
}

/* --- Layout Wrapper --- */
.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0;
}

/* --- Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: #ffffff; /* White logo when transparent over dark hero */
    transition: var(--transition-smooth);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.nav-logo .logo-bold {
    font-weight: 800;
    color: var(--accent-gold);
    margin-right: 0.1rem;
    transition: var(--transition-smooth);
}

/* Scrolled logo colors */
.navbar.scrolled .nav-logo {
    color: var(--text-primary); /* Charcoal when scrolled */
    text-shadow: none;
}

.navbar.scrolled .nav-logo .logo-bold {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85); /* Semi-transparent white when unscrolled */
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Scrolled links color */
.navbar.scrolled .nav-link {
    color: var(--text-secondary); /* Charcoal-slate when scrolled */
    text-shadow: none;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

/* Make active/hovered links stand out on scrolled white navbar */
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

/* Mobile Toggle Bar */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff; /* White burger bars when transparent */
    transition: var(--transition-fast);
}

.navbar.scrolled .mobile-nav-toggle .bar {
    background-color: var(--text-primary); /* Charcoal burger bars when scrolled */
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    margin-top: 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('assets/hero_speaker.jpg');
    background-size: cover;
    background-position: 72% top;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-left: 8%;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 620px;
    padding: 0.5rem 0 0.5rem 2rem;
    border-left: 4px solid var(--accent-gold); /* Premium left gold accent line */
    margin: 2rem 0;
}

.hero-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
    color: #ffffff; /* Explicitly white for dark image background contrast */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85), 0 2px 4px rgba(0, 0, 0, 0.95);
    letter-spacing: -0.01em;
}

.hero-title .highlight-text {
    color: var(--accent-gold); /* Solid coral accent color for professional contrast */
    display: inline-block;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85); /* Explicitly light for contrast */
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    animation: fadeInUp 1.4s ease-out;
}

.hero-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.hero-buttons .btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.arrow-down {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    transition: var(--transition-fast);
}

.arrow-down:hover {
    border-color: var(--accent-gold);
}

/* --- About Me Section --- */
.about-section {
    background-color: #ffffff;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr; /* Wider image column, narrower text column */
    gap: 3.5rem; /* Optimise spacing */
    align-items: stretch; /* Stretch columns to have identical height */
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: stretch; /* Stretch image wrapper to match grid height */
}

.about-image-card {
    position: relative;
    max-width: 580px; /* Increased max-width for a wider photo */
    width: 100%;
    height: 100%; /* Stretch card to full wrapper height */
    z-index: 2;
}

.about-img {
    width: 100%;
    height: 100%; /* Stretch image to full card height */
    object-fit: cover; /* Crop image to cover container dynamically without distortion */
    border-radius: 0; /* Clean, sharp rectangular shape */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06); /* Subtly defined edge */
    filter: brightness(0.98) contrast(1.02);
    transition: var(--transition-smooth);
}

.about-image-card:hover .about-img {
    transform: scale(1.01);
    filter: brightness(1.02) contrast(1.02);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #070d13;
}

.about-text-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold-hover);
    margin-bottom: 1.5rem;
}

.about-bio {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 2rem;
}

.meta-item {
    text-align: left;
}

.meta-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #070d13;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.meta-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Making Data Count Section --- */
.data-count-section {
    background-color: #faf6f0; /* Warm cream matching the theme */
    padding: 6rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.data-count-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}



.data-count-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
    text-align: center;
}

.data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    transition: transform var(--transition-smooth);
}

.data-item:hover {
    transform: translateY(-5px);
}

.data-number {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 700;
    color: #b8822f; /* Deep Premium Gold for excellent contrast on light cream */
    line-height: 1.1;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.data-label {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #292929; /* Charcoal */
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.data-desc {
    font-family: var(--font-display);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5b5b5b; /* Charcoal grey for readability */
    max-width: 320px;
}

/* --- Quote Section --- */
.quote-section {
    position: relative;
    background-color: var(--bg-cream-alt);
    padding: 8rem 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--accent-gold-rgb), 0.03) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.quote-container {
    width: 80%;
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 9rem;
    color: rgba(var(--accent-gold-rgb), 0.08);
    position: absolute;
    line-height: 1;
    pointer-events: none;
}

.open-quote {
    top: -5rem;
    left: -4rem;
}

.close-quote {
    bottom: -8rem;
    right: -4rem;
}

.quote-text {
    font-family: var(--font-quote);
    font-style: italic;
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    line-height: 1.5;
    color: #070d13;
    margin-bottom: 2rem;
}

.quote-author {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}

/* --- Three Paths Section --- */
.paths-section {
    background-color: var(--bg-cream-alt); /* Warm cream accent background to make cards pop */
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    color: #475569;
    font-size: 1.05rem;
    margin-top: 1rem;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.path-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--bg-card); /* White card background */
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
}

.path-card-image-wrapper {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-dark);
}

.path-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.path-card-info {
    padding: 2.2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.path-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    position: absolute;
    top: -28px; /* Float halfway up the image edge */
    left: 2rem;
    z-index: 3;
    transition: var(--transition-smooth);
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.path-svg-icon {
    width: 26px;
    height: 26px;
    transition: var(--transition-smooth);
}

.path-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    line-height: 1.25;
}

.path-title-divider {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
}

.path-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.path-cta {
    margin-top: auto; /* Push CTA button to the absolute bottom of content area */
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.path-cta .arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* Individual Card Theme Accents & Hover States */

/* Path 1: Event Organizers (Coral Theme) */
#path-organizers .path-icon {
    color: var(--accent-gold);
    border: 1px solid rgba(254, 72, 85, 0.15);
}
#path-organizers .path-title-divider {
    background-color: rgba(254, 72, 85, 0.3);
}
#path-organizers .path-cta {
    border-color: rgba(254, 72, 85, 0.25);
    background-color: rgba(254, 72, 85, 0.04);
    color: var(--accent-gold);
}

#path-organizers:hover {
    border-color: rgba(254, 72, 85, 0.3);
    box-shadow: 0 20px 40px rgba(254, 72, 85, 0.06), 0 10px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px);
}
#path-organizers:hover .path-icon {
    background-color: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(254, 72, 85, 0.25);
}
#path-organizers:hover .path-title-divider {
    width: 60px;
    background-color: var(--accent-gold);
}
#path-organizers:hover .path-cta {
    background-color: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(254, 72, 85, 0.2);
}

/* Path 2: Parents (Teal Theme) */
#path-parents .path-icon {
    color: var(--accent-teal);
    border: 1px solid rgba(68, 126, 126, 0.15);
}
#path-parents .path-title-divider {
    background-color: rgba(68, 126, 126, 0.3);
}
#path-parents .path-cta {
    border-color: rgba(68, 126, 126, 0.25);
    background-color: rgba(68, 126, 126, 0.04);
    color: var(--accent-teal);
}

#path-parents:hover {
    border-color: rgba(68, 126, 126, 0.3);
    box-shadow: 0 20px 40px rgba(68, 126, 126, 0.06), 0 10px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px);
}
#path-parents:hover .path-icon {
    background-color: var(--accent-teal);
    color: #ffffff;
    border-color: var(--accent-teal);
    box-shadow: 0 8px 20px rgba(68, 126, 126, 0.25);
}
#path-parents:hover .path-title-divider {
    width: 60px;
    background-color: var(--accent-teal);
}
#path-parents:hover .path-cta {
    background-color: var(--accent-teal);
    color: #ffffff;
    border-color: var(--accent-teal);
    box-shadow: 0 8px 20px rgba(68, 126, 126, 0.2);
}

/* Path 3: Educators & Researchers (Charcoal Theme) */
#path-educators .path-icon {
    color: var(--text-primary);
    border: 1px solid rgba(41, 41, 41, 0.15);
}
#path-educators .path-title-divider {
    background-color: rgba(41, 41, 41, 0.3);
}
#path-educators .path-cta {
    border-color: rgba(41, 41, 41, 0.25);
    background-color: rgba(41, 41, 41, 0.04);
    color: var(--text-primary);
}

#path-educators:hover {
    border-color: rgba(41, 41, 41, 0.3);
    box-shadow: 0 20px 40px rgba(41, 41, 41, 0.06), 0 10px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px);
}
#path-educators:hover .path-icon {
    background-color: var(--text-primary);
    color: #ffffff;
    border-color: var(--text-primary);
    box-shadow: 0 8px 20px rgba(41, 41, 41, 0.25);
}
#path-educators:hover .path-title-divider {
    width: 60px;
    background-color: var(--text-primary);
}
#path-educators:hover .path-cta {
    background-color: var(--text-primary);
    color: #ffffff;
    border-color: var(--text-primary);
    box-shadow: 0 8px 20px rgba(41, 41, 41, 0.2);
}

/* Global hover image zoom */
.path-card:hover .path-card-img {
    transform: scale(1.05);
}

/* --- Featured In Logos Section (New) --- */
.featured-in-new {
    background-color: #ffffff;
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.featured-in-new .section-container {
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.featured-in-title {
    text-align: center;
    margin-bottom: 4rem; /* Slightly more spacing for the larger font size */
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 15%,
        rgba(0, 0, 0, 1) 85%,
        rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 15%,
        rgba(0, 0, 0, 1) 85%,
        rgba(0, 0, 0, 0) 100%
    );
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
    flex-shrink: 0;
}

.featured-in-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background-color: #faf6f0; /* Matches the warm cream page background */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px; /* Elegant rounded shape */
    transition: var(--transition-smooth);
    min-width: 250px; /* Elegant width */
    height: 110px; /* Elegant height */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.featured-in-logo img {
    height: auto;
    max-height: 50px; /* Proportional max-height */
    max-width: 170px; /* Proportional max-width */
    object-fit: contain;
    transition: var(--transition-smooth);
}

.featured-in-logo:hover {
    background-color: #ffffff;
    border-color: var(--accent-gold); /* Coral brand outline */
    box-shadow: 0 8px 24px rgba(var(--accent-gold-rgb), 0.12);
    transform: translateY(-3px);
}

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* --- Events & Agenda Section --- */
.events-section {
    background-color: var(--bg-cream-alt); /* Cream background for alternating sections */
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.event-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-gold); /* Coral accent on hover */
}

.event-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.badge-upcoming {
    background-color: rgba(254, 72, 85, 0.1);
    color: var(--accent-gold); /* Coral */
}

.badge-past {
    background-color: #f1f5f9;
    color: #64748b;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.event-dot {
    width: 4px;
    height: 4px;
    background-color: #cbd5e1;
    border-radius: 50%;
}

.event-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.event-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.event-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #447e7e; /* Teal */
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.event-footer {
    display: flex;
    justify-content: flex-start;
}

.event-footer button {
    width: 100%;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 0;
    background-color: #ffffff; /* Contrast with cream background of Paths section */
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonials-section .section-container {
    padding-top: 2rem;
    padding-bottom: 5.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal columns for video and image */
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start; /* Align columns at the top */
}

.testimonial-video-col, .testimonial-image-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-video-card {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-video-card iframe,
.testimonial-video-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.testimonial-image-card {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.testimonial-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.testimonial-img:hover {
    transform: scale(1.03);
}

.testimonial-caption h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.testimonial-caption p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
    background-color: #292929; /* Dark Charcoal Background to match Gabby's style */
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: #ffffff; /* White logo on dark background */
}

.footer-logo span {
    font-weight: 800;
    color: var(--accent-gold);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.55); /* High contrast light grey */
    max-width: 350px;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon-link {
    color: rgba(255, 255, 255, 0.55);
    background-color: rgba(255, 255, 255, 0.04);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon-link svg {
    width: 18px;
    height: 18px;
}

.social-icon-link:hover {
    color: #ffffff;
    background-color: var(--accent-gold); /* Coral brand background on hover */
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-links h5, .footer-legal h5, .footer-contact h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold-hover);
    margin-bottom: 1.5rem;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a, .footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition-smooth);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-email {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
    border-bottom: 1.5px solid var(--accent-gold);
    padding-bottom: 0.2rem;
    display: inline-block;
}

.footer-email:hover {
    color: var(--accent-gold);
    border-bottom-color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
}

/* --- Modals Layer --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 13, 19, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--bg-card);
    width: 100%;
    max-width: 1000px;
    max-height: 85vh;
    border-radius: 6px;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.25);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    overflow: hidden;
}

.modal-overlay.open .modal-card {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.modal-header-accent {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
}

.modal-body {
    padding: 3.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.modal-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 3.5rem;
}

.modal-main-content h3 {
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    border-left: 3px solid var(--accent-gold);
    padding-left: 0.8rem;
    margin-bottom: 1.5rem;
}

.topic-block, .project-block, .resource-block {
    background-color: var(--bg-cream-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    position: relative;
    transition: var(--transition-fast);
}

.topic-block:hover, .project-block:hover, .resource-block:hover {
    border-color: var(--accent-gold);
    background-color: #fdfaf7;
}

.topic-block h4, .project-block h4, .resource-block h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.topic-block p, .project-block p, .resource-block p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.project-status {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.project-status.active {
    background-color: rgba(var(--accent-gold-rgb), 0.15);
    color: var(--accent-gold);
}

.project-status.planning {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
}

.file-type {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    background-color: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
    padding: 0.1rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.resource-download-btn {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resource-download-btn:hover {
    color: var(--text-primary);
}

.modal-main-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.modal-main-content li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.modal-main-content li::before {
    content: '▪';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

/* Sidebar Booking Boxes */
.sidebar-box {
    background-color: var(--bg-cream-alt); /* Light cream accent box */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    padding: 2rem;
    position: sticky;
    top: 0;
}

.sidebar-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sidebar-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea, .form-group select {
    background-color: #ffffff; /* Clean white input backgrounds */
    border: 1px solid rgba(0, 0, 0, 0.15); /* Sleek dark borders */
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.15);
}

.form-success-msg {
    display: none;
    background-color: rgba(var(--accent-gold-rgb), 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.25);
    border-radius: 4px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Modals sizing overrides */
.modal-small {
    max-width: 500px;
}

.modal-small .modal-body {
    padding: 2.5rem;
}

/* Impact stats in modals */
.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background-color: var(--bg-cream-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.2rem;
    border-radius: 4px;
    text-align: center;
}

.stat-card h5 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.2rem;
}

.stat-card p {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Articles layout in resources */
.articles-list a {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.articles-list a:hover {
    color: var(--accent-gold);
}

.articles-list span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }
    .paths-grid {
        gap: 1.5rem;
    }
    .path-card {
        padding: 0;
    }
    .modal-content-grid {
        grid-template-columns: 1.5fr 1.5fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .hero-section {
        background-position: 50% top;
        justify-content: center;
        padding-left: 0;
        align-items: flex-end;
        padding-bottom: 5.5rem;
    }
    .hero-content {
        text-align: center;
        max-width: 90%;
        border-left: none;
        padding: 0;
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #ffffff;
        border-left: 1px solid rgba(0, 0, 0, 0.08);
        padding: 6rem 3rem;
        z-index: 999;
        transition: var(--transition-smooth);
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }
    .nav-menu .nav-link {
        color: var(--text-secondary); /* Dark text on white mobile nav overlay drawer */
    }
    .mobile-nav-toggle {
        display: flex;
        z-index: 1000;
    }
    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .about-image-wrapper {
        order: -1;
        justify-content: center;
        align-items: center;
    }
    .about-image-card {
        height: 480px; /* Fixed height on stacked layouts */
        max-width: 380px;
    }
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-meta {
        justify-content: center;
    }
    
    .paths-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .path-card {
        padding: 0;
        min-height: auto;
        height: auto;
    }
    .marquee-track {
        animation-duration: 25s;
    }
    .marquee-group {
        gap: 1.5rem;
        padding-right: 1.5rem;
    }
    .featured-in-logo {
        padding: 0.75rem 1.5rem;
        min-width: 180px;
        height: 80px;
        border-radius: 8px;
    }
    .featured-in-logo img {
        height: auto;
        max-height: 38px;
        max-width: 120px;
    }
    .modal-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .modal-sidebar {
        order: -1;
    }
    .modal-body {
        padding: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .footer-brand {
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .centered-video-col .laptop-base {
        height: 12px;
    }
    .centered-video-col .laptop-base::after {
        width: 60px;
        height: 3px;
    }
    .laptop-screen {
        border-radius: 12px 12px 0 0;
        padding: 6px 6px 10px 6px;
    }
    .data-count-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem 2rem;
    }
    .data-number {
        font-size: 3.8rem;
    }

}

@media (max-width: 600px) {

    .about-meta {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 2rem;
    }
    .modal-body {
        padding: 1.5rem;
    }
    .modal-close {
        top: 1rem;
        right: 1rem;
    }
    .centered-video-col .laptop-base {
        height: 8px;
    }
    .centered-video-col .laptop-base::after {
        width: 40px;
        height: 2px;
    }
    .laptop-screen {
        border-radius: 8px 8px 0 0;
        padding: 4px 4px 6px 4px;
        border-width: 2px;
    }
    .about-image-card {
        height: 340px;
    }
    .modal-overlay {
        padding: 1rem 0.5rem;
    }
    .centered-caption {
        margin-top: 1.5rem !important;
    }
    .centered-caption h4 {
        font-size: 1.2rem;
    }
    .centered-caption p {
        font-size: 0.95rem;
    }
    .data-count-section {
        padding: 4rem 0;
    }
    .data-count-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .data-number {
        font-size: 3.2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .event-card {
        padding: 2rem 1.5rem;
    }
}

/* --- Lightbox Modal & Testimonial Image Hover overlay --- */
/* --- Laptop Mockup Styles & Overlays --- */
.laptop-mockup {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    transition: var(--transition-smooth);
}

.laptop-mockup:hover {
    transform: translateY(-6px);
}

/* Laptop Screen Bezel */
.laptop-screen {
    background-color: #0c0c0c;
    border-radius: 16px 16px 0 0;
    padding: 10px 10px 14px 10px; /* Thicker bezel at bottom */
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid #222222;
    border-bottom: none;
}

/* Aspect Ratio Screen content container (16:10 ratio) */
.laptop-screen .screen-content {
    position: relative;
    width: 100%;
    padding-top: 62.5%; /* 16:10 ratio matches laptop screen perfectly */
    background-color: #111111;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

/* Video/Image elements inside screen content */
.laptop-screen .screen-content video,
.laptop-screen .screen-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Webcam dot */
.laptop-screen .webcam {
    width: 5px;
    height: 5px;
    background-color: #151515;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.6);
}

/* Laptop Base/Keyboard Deck */
.laptop-base {
    height: 14px;
    background: linear-gradient(to bottom, #eaeaea 0%, #b5b5b5 100%); /* Silver metallic finish */
    border-radius: 0 0 10px 10px;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #a3a3a3;
    border-top: none;
    z-index: 10;
}

/* Base open notch */
.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 3px;
    background-color: #8c8c8c;
    border-radius: 0 0 3px 3px;
}

/* Hover overlays on screen preview */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.laptop-mockup:hover .video-play-overlay {
    background-color: rgba(0, 0, 0, 0.45);
}

.play-button-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(254, 72, 85, 0.9); /* Brand Coral */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(254, 72, 85, 0.4);
    transition: var(--transition-smooth);
}

.play-button-icon svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

.laptop-mockup:hover .play-button-icon {
    transform: scale(1.12);
    background-color: #fe4855;
    box-shadow: 0 6px 20px rgba(254, 72, 85, 0.6);
}

.document-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(2px);
}

.laptop-mockup:hover .document-view-overlay {
    opacity: 1;
}

.read-doc-btn {
    padding: 0.6rem 1.2rem;
    background-color: #ffffff;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.laptop-mockup:hover .read-doc-btn {
    transform: translateY(0);
}

/* Lightbox overlays and modals */
.lightbox-card {
    max-width: 700px;
    width: 90%;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(254, 72, 85, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Video Lightbox Specific overrides */
.video-lightbox-card {
    max-width: 960px;
    background-color: #050505;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.video-lightbox-card .modal-close {
    color: #ffffff;
}

.lightbox-content {
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    padding-right: 4px;
}

.lightbox-content::-webkit-scrollbar {
    width: 6px;
}

.lightbox-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

.lightbox-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Centered single-video testimonials layout matching gabbybernstein.com */
.testimonials-grid.single-video-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 1100px; /* Expanded grid container */
    margin: 0 auto;
}

.centered-video-col {
    width: 100%;
    max-width: 1000px; /* Expanded outer wrapper */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centered-video-col .laptop-mockup {
    max-width: 1000px; /* Massive laptop frame */
}

.centered-video-col .laptop-mockup:hover {
    transform: none; /* Disable shift to make video controls easy to use */
}

.centered-video-col .laptop-base {
    height: 18px; /* Proportionate base height for large screen */
}

.centered-video-col .laptop-base::after {
    width: 110px; /* Wider metal notch for 1000px wide base */
    height: 4px;
}

.centered-caption {
    text-align: center;
    margin-top: 2.5rem !important;
    max-width: 800px;
}

.centered-caption h4 {
    font-size: 1.45rem; /* Larger title for larger video layout */
}

.centered-caption p {
    font-size: 1.05rem; /* Highly readable description */
}

/* --- Media Page Custom Styles --- */

.media-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    border-bottom: none;
}

.media-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

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

/* Sound Toggle Button */
.sound-toggle-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(41, 41, 41, 0.75); /* Semi-transparent Charcoal background */
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    padding: 0;
}

.sound-toggle-btn:hover {
    background-color: var(--accent-gold); /* Coral hover effect */
    transform: scale(1.08);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(var(--accent-gold-rgb), 0.4);
}

.sound-icon {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
    fill: none;
}

.media-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 13, 19, 0.55); /* Slate overlay to make text pop */
    z-index: 2;
}

.media-hero .section-container {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.media-hero .section-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.media-hero .section-subtitle {
    font-size: 1.35rem;
    font-weight: 300;
    color: #cbd5e1;
    margin: 0 auto 2.5rem auto;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

.media-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background-color: var(--accent-gold);
    color: #ffffff;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(var(--accent-gold-rgb), 0.3);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.media-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(var(--accent-gold-rgb), 0.4);
    background-color: var(--accent-gold-hover);
    color: #ffffff;
}

@media (max-width: 768px) {
    .media-hero {
        height: 100vh;
    }
    .media-hero .section-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
    .media-hero .section-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 2rem auto;
    }
    .media-hero-btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

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

.media-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.media-card:hover {
    transform: translateY(-4px);
}

.media-card-img-wrapper {
    height: 240px;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 1.25rem;
    background-color: var(--bg-cream-alt);
}

.media-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-card:hover .media-card-img {
    transform: scale(1.04);
}

.media-card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.media-card-publisher {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.media-card-title {
    font-family: var(--font-quote);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.media-card:hover .media-card-title {
    color: var(--accent-gold);
}

.media-card-link-action {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    align-self: flex-start;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(41, 41, 41, 0.15);
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.media-card:hover .media-card-link-action {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    transform: translateX(4px);
}

/* Media Kit Press section */
.media-kit-section {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.media-kit-header {
    text-align: center;
    margin-bottom: 3rem;
}

.download-label {
    font-family: var(--font-quote);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.download-subtext {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.photos-grid-borderless-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
    width: 100%;
}

.photo-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.photo-preview-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--bg-cream-alt);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-item:hover .preview-img {
    transform: scale(1.03);
}

.download-btn-single {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    background-color: var(--accent-gold);
    border: none;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.download-btn-single:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-gold-rgb), 0.2);
}

/* Responsive media kit */
@media (max-width: 900px) {
    .photos-grid-borderless-full {
        gap: 2rem;
    }
    .download-label {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .photos-grid-borderless-full {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Media Page Centered Text Links and Logos Grid --- */
.media-nav-anchors-container {
    background-color: #faf6f0; /* Warm cream */
    padding: 3rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.media-anchor-link, .media-anchor-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.media-anchor-link:hover, .media-anchor-text:hover {
    color: var(--accent-gold);
}

.media-anchor-separator {
    color: var(--accent-teal);
    font-size: 1.2rem;
    opacity: 0.5;
}

.media-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.logo-grid-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.logo-grid-card img {
    max-height: 45px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

@media (max-width: 768px) {
    .media-logos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    .logo-grid-card {
        height: 90px;
        padding: 1rem;
    }
    .logo-grid-card img {
        max-height: 38px;
    }
}

@media (max-width: 600px) {
    .media-nav-anchors-container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 2.5rem 0;
    }
    .media-anchor-separator {
        display: none;
    }
}

.about-page-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen viewport height */
    overflow: hidden;
    background: #0b0f19;
}

.about-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/about_hero_auditorium.jpg');
    background-size: cover; /* Edge-to-edge cover layout filling the container */
    background-position: center 20%; /* Position to keep Ranjitsinh and the stage perfectly visible */
    z-index: 1;
}



.about-page-hero .section-container {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-page-hero .hero-title-main {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    line-height: 1.15;
}

.about-page-hero .hero-badges-container {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-page-hero .hero-badge {
    background-color: rgba(41, 41, 41, 0.8); /* Charcoal translucent backdrop for excellent contrast */
    border: 1px solid rgba(243, 176, 60, 0.4); /* Subtle gold border outline */
    color: #f3b03c; /* Premium vibrant gold */
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.about-page-hero .hero-badge:hover {
    background-color: rgba(243, 176, 60, 0.15);
    border-color: rgba(243, 176, 60, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
}

/* Biography & Editorial Layout */
.about-page-section {
    padding: 7rem 0;
    background-color: #faf6f0; /* Warm cream */
}

.about-bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-bio-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.about-bio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-bio-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-bio-content {
    display: flex;
    flex-direction: column;
}

.about-bio-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.about-bio-title {
    font-family: var(--font-quote);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 2rem;
}

.about-bio-p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Timeline Styles - Professional & Premium Staggered Theme */
.about-timeline-section {
    padding: 8rem 0;
    background-color: var(--bg-cream-alt); /* Contrasting warm cream background */
}

.prof-timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 4.5rem auto 0 auto;
    padding: 2rem 0;
}

/* Central vertical progress line with brand gradient */
.prof-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-gold) 0%, var(--accent-teal) 100%);
    transform: translateX(-50%);
    border-radius: 4px;
    opacity: 0.8;
}

.prof-timeline-item {
    position: relative;
    width: 50%;
    padding: 1.5rem 3.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Staggered left/right layout */
.prof-timeline-item.left {
    left: 0;
    align-items: flex-end;
}

.prof-timeline-item.right {
    left: 50%;
    align-items: flex-start;
}

/* Timeline Cards */
.prof-timeline-card {
    background: #ffffff;
    border: 1px solid rgba(41, 41, 41, 0.06);
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    width: 100%;
    max-width: 440px;
}

/* Color Accent Border Stripes on the inner edge */
.prof-timeline-item.left .prof-timeline-card {
    border-right: 4px solid var(--accent-gold);
}

.prof-timeline-item.right .prof-timeline-card {
    border-left: 4px solid var(--accent-teal);
}

/* Card Header Metadata */
.prof-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

/* Year Capsule Badge */
.prof-card-year {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
}

.prof-card-year.coral {
    background: rgba(254, 72, 85, 0.08);
    color: var(--accent-gold);
}

.prof-card-year.teal {
    background: rgba(68, 126, 126, 0.08);
    color: var(--accent-teal);
}

/* Icon Container Badge */
.prof-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream-alt);
    color: var(--text-primary);
    border: 1px solid rgba(41, 41, 41, 0.05);
    transition: all 0.3s ease;
}

/* Headline titles */
.prof-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.prof-card-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* Glowing Indicator Nodes on the Line */
.prof-timeline-node {
    position: absolute;
    top: 3.2rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prof-timeline-item.left .prof-timeline-node {
    right: -11px;
    border: 4.5px solid var(--accent-gold);
}

.prof-timeline-item.right .prof-timeline-node {
    left: -11px;
    border: 4.5px solid var(--accent-teal);
}

/* Inner dot inside node */
.prof-node-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--text-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Hover effects */
.prof-timeline-item:hover .prof-timeline-card {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.prof-timeline-item.left:hover .prof-timeline-card {
    border-right-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(254, 72, 85, 0.05);
}

.prof-timeline-item.right:hover .prof-timeline-card {
    border-left-color: var(--accent-teal);
    box-shadow: 0 15px 35px rgba(68, 126, 126, 0.05);
}

.prof-timeline-item:hover .prof-card-icon {
    background: var(--text-primary);
    color: #ffffff;
    transform: rotate(15deg);
}

.prof-timeline-item:hover .prof-timeline-node {
    transform: scale(1.25);
}

.prof-timeline-item.left:hover .prof-timeline-node {
    background: var(--accent-gold);
}

.prof-timeline-item.right:hover .prof-timeline-node {
    background: var(--accent-teal);
}

.prof-timeline-item:hover .prof-node-dot {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.2);
}

/* About Page Call to Action (CTA) */
.about-cta-section {
    padding: 6rem 0;
    background-color: var(--accent-teal);
    color: #ffffff;
    text-align: center;
}

.about-cta-title {
    font-family: var(--font-quote);
    font-size: 2.6rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-cta-text {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsiveness for timeline & bio grid */
@media (max-width: 900px) {
    .about-bio-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .about-bio-image-wrapper {
        height: 450px;
    }
    .about-bio-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .about-page-hero .hero-title-main {
        font-size: 2.8rem;
    }
    .about-page-hero .hero-badges-container {
        gap: 0.7rem;
        margin-top: 1.2rem;
    }
    .about-page-hero .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
    }
    
    /* Professional Staggered Timeline Responsiveness */
    .prof-timeline-line {
        left: 20px;
        transform: translateX(-50%);
    }
    .prof-timeline-item {
        width: 100%;
        padding: 1.5rem 1rem 1.5rem 3.5rem;
        align-items: flex-start !important;
    }
    .prof-timeline-item.left {
        left: 0;
    }
    .prof-timeline-item.right {
        left: 0;
    }
    .prof-timeline-item.left .prof-timeline-card {
        border-right: none;
        border-left: 4px solid var(--accent-gold);
    }
    .prof-timeline-item.right .prof-timeline-card {
        border-left: 4px solid var(--accent-teal);
    }
    .prof-timeline-item.left .prof-timeline-node,
    .prof-timeline-item.right .prof-timeline-node {
        left: 20px;
        right: auto;
        transform: translateX(-50%);
    }
    .prof-timeline-item:hover .prof-timeline-node {
        transform: translateX(-50%) scale(1.25) !important;
    }
}

/* Force solid white navbar for pages that do not have a dark fullscreen hero image */
.about-page-active #main-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    padding: 1rem 0 !important;
}

.about-page-active #main-header .nav-logo {
    color: var(--text-primary) !important;
    text-shadow: none !important;
}

.about-page-active #main-header .nav-logo .logo-bold {
    color: var(--accent-gold) !important;
}

.about-page-active #main-header .nav-link {
    color: var(--text-secondary) !important;
    text-shadow: none !important;
}

.about-page-active #main-header .nav-link:hover,
.about-page-active #main-header .nav-link.active {
    color: var(--accent-gold) !important;
}

.about-page-active #main-header .mobile-nav-toggle .bar {
    background-color: var(--text-primary) !important;
}

/* --- Dedicated Three Paths Page (paths.html) Styles --- */
.paths-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.paths-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/three_paths_hero.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.paths-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.paths-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.paths-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85), 0 2px 4px rgba(0, 0, 0, 0.95);
    letter-spacing: -0.01em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.paths-hero-title span {
    color: var(--accent-gold);
    display: inline-block;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85);
}

.paths-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.05em;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.75;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.paths-nav-section {
    background-color: var(--bg-cream);
    padding: 5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.paths-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.paths-nav-card {
    background: #ffffff;
    border: 1px solid rgba(41, 41, 41, 0.06);
    border-radius: 12px;
    padding: 2.2rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.paths-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-gold);
}

.paths-nav-card .nav-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background-color: #fcf8f2;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.paths-nav-card:hover .nav-card-icon {
    background-color: var(--accent-gold);
    color: #ffffff;
}

.paths-nav-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.paths-nav-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.paths-detail-section {
    padding: 7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.paths-detail-section:nth-of-type(even) {
    background-color: var(--bg-cream-alt);
}

.paths-detail-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 4.5rem;
    align-items: start;
}

.paths-detail-left {
    display: flex;
    flex-direction: column;
}

.paths-detail-right {
    display: flex;
    flex-direction: column;
}

.paths-badge {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.paths-detail-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.paths-detail-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.paths-detail-left h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.2rem 0 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 0.6rem;
}

.paths-detail-left h3:first-of-type {
    margin-top: 0;
}

.paths-topic-block, .paths-project-block, .paths-resource-block {
    background: #ffffff;
    border: 1px solid rgba(41, 41, 41, 0.05);
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.paths-topic-block:hover, .paths-project-block:hover, .paths-resource-block:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    border-color: rgba(41, 41, 41, 0.1);
}

.paths-topic-block h4, .paths-project-block h4, .paths-resource-block h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.paths-topic-block p, .paths-project-block p, .paths-resource-block p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.paths-form-card {
    background: #ffffff;
    border: 1px solid rgba(41, 41, 41, 0.06);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
    z-index: 10;
}

.paths-form-card h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.paths-form-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.8rem;
}

.paths-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.paths-impact-card {
    background: #ffffff;
    border: 1px solid rgba(41, 41, 41, 0.05);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.paths-impact-card h5 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-teal);
    margin-bottom: 0.3rem;
    line-height: 1.1;
}

.paths-impact-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.paths-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-cream-alt);
    color: var(--accent-gold);
    border: 1px solid rgba(184, 130, 47, 0.2);
    border-radius: 6px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition-smooth);
}

.paths-download-btn:hover {
    background-color: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
}

.paths-articles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paths-articles-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.paths-articles-list li::before {
    content: "•";
    color: var(--accent-teal);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

.paths-articles-list a {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.paths-articles-list a:hover {
    color: var(--accent-gold);
}

.paths-articles-list span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

/* Status Badges for initiatives */
.paths-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.6rem;
}

.paths-status.active {
    background-color: rgba(68, 126, 126, 0.1);
    color: var(--accent-teal);
}

.paths-status.planning {
    background-color: rgba(184, 130, 47, 0.1);
    color: var(--accent-gold);
}
/* Responsiveness overrides for paths.html */
@media (max-width: 900px) {
    .paths-hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
    
    .paths-hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
        letter-spacing: 0.03em;
    }

    .paths-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .paths-form-card {
        position: static;
        padding: 2rem;
    }
    
    .paths-nav-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .paths-detail-title {
        font-size: 1.8rem;
    }
}

/* --- Biography Document Card Mockup Styles --- */
.bio-card-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bio-doc-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.25rem;
    color: #ffffff;
    box-sizing: border-box;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: cover;
    background-position: center;
}

.bio-card-wrapper:hover .bio-doc-cover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* English Cover: Deep Slate & Portrait Blend */
.bio-english-cover {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.96) 0%, rgba(41, 41, 41, 0.88) 100%), url('assets/pro_portrait_1.jpg');
    background-size: cover;
    background-position: center top;
}

/* Marathi Cover: Rich Crimson & Portrait Blend */
.bio-marathi-cover {
    background: linear-gradient(135deg, rgba(160, 25, 35, 0.96) 0%, rgba(254, 72, 85, 0.88) 100%), url('assets/pro_portrait_2.jpg');
    background-size: cover;
    background-position: center top;
}

/* Spanish Cover: Emerald Teal & Portrait Blend */
.bio-spanish-cover {
    background: linear-gradient(135deg, rgba(30, 65, 65, 0.96) 0%, rgba(68, 126, 126, 0.88) 100%), url('assets/pro_portrait_3.jpg');
    background-size: cover;
    background-position: center top;
}

.bio-doc-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 0);
    background-size: 12px 12px;
    pointer-events: none;
    z-index: 1;
}

.bio-doc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.bio-doc-badge {
    padding: 0.35rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    border-radius: 3px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.bio-english-cover .bio-doc-badge {
    border-left: 3px solid var(--accent-gold);
}

.bio-marathi-cover .bio-doc-badge {
    border-left: 3px solid #ffffff;
}

.bio-spanish-cover .bio-doc-badge {
    border-left: 3px solid #dee9e9;
}

.bio-doc-icon {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s ease, transform 0.3s ease;
}

.bio-card-wrapper:hover .bio-doc-icon {
    color: #ffffff;
    transform: rotate(5deg);
}

.bio-doc-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    z-index: 2;
}

.bio-doc-category {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.4rem;
}

.bio-doc-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-transform: capitalize;
}

.bio-doc-divider {
    width: 35px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.8rem;
    transition: width 0.4s ease;
}

.bio-card-wrapper:hover .bio-doc-divider {
    width: 55px;
    background-color: var(--accent-gold);
}

.bio-doc-filetype {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.bio-doc-filetype::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

/* --- Feedback Marquee Section --- */
.feedback-section {
    padding: 8rem 0;
    background-color: #ffffff; /* Clean white background */
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.feedback-marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
    /* Soft fade edges using gradient mask */
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 10%,
        rgba(0, 0, 0, 1) 90%,
        rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 10%,
        rgba(0, 0, 0, 1) 90%,
        rgba(0, 0, 0, 0) 100%
    );
}

.feedback-marquee-track {
    display: flex;
    width: max-content;
    animation: feedback-scroll 45s linear infinite;
}

.feedback-marquee-container:hover .feedback-marquee-track {
    animation-play-state: paused;
}

.feedback-marquee-group {
    display: flex;
    align-items: stretch; /* Cards will be equal height */
    gap: 2.5rem;
    padding-right: 2.5rem;
    flex-shrink: 0;
}

.feedback-card {
    background-color: #faf6f0; /* Warm cream matching theme */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    width: 380px; /* Fixed card width for consistency */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.feedback-card:hover {
    background-color: #ffffff;
    border-color: var(--accent-gold); /* Coral hover accent */
    box-shadow: 0 8px 25px rgba(254, 72, 85, 0.08);
    transform: translateY(-4px);
}

.feedback-stars {
    color: #f3b03c; /* Gold color for stars */
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.feedback-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Limit to 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feedback-author {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.82rem;
    color: var(--text-muted);
}

@keyframes feedback-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 5rem 0;
    }
    .feedback-card {
        width: 320px;
        padding: 2rem 1.5rem;
    }
    .feedback-marquee-track {
        animation-duration: 35s; /* Speed up slightly on smaller viewports */
    }
}

/* --- Resources Section --- */
.resources-section {
    background-color: var(--bg-cream);
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.resources-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.resource-layout-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3.5rem;
}

.resource-pdf-column {
    flex: 1.1;
    height: 500px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.resource-pdf-column iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.resource-text-column {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resource-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.resource-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 1.2rem 0;
    font-family: var(--font-heading);
    line-height: 1.25;
}

.resource-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

.resource-btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #004b87; /* Match the dark blue in the image */
    color: #ffffff;
    padding: 12px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 75, 135, 0.25);
    transition: all 0.3s ease;
    border: 2px solid #004b87;
    width: fit-content;
}

.resource-btn-download:hover {
    background-color: transparent;
    color: #004b87;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 75, 135, 0.35);
}

.resource-btn-download svg {
    margin-right: 10px;
}

@media (max-width: 991px) {
    .resource-layout-row {
        gap: 3rem;
    }
    
    .resource-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .resource-layout-row {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .resource-pdf-column {
        width: 100%;
        height: 400px;
        order: 1;
    }
    
    .resource-text-column {
        width: 100%;
        order: 2;
        text-align: center;
        align-items: center;
    }
    
    .resource-btn-download {
        width: 100%;
    }
}
