/*
Theme Name: Sanjay Kumar Portfolio
Theme URI: https://wa.me/916369978920
Author: Sanjay Kumar
Description: A premium, pixel-perfect, fully animated personal portfolio landing page for Digital Experts.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sanjay-portfolio
*/

/* ==========================================================================
   Base Setup & Variables
   ========================================================================== */
:root {
    --sidebar-width: 300px;
    
    --bg-white: #FFFFFF;
    --bg-blue: #0A84FF;
    
    --text-dark: #111111;
    --text-grey: #666666;
    --text-light-grey: #999999;
    --text-white: #FFFFFF;
    
    --border-color: #E5E5E5;
    
    --font-sans: 'Inter', sans-serif;
    --font-script: 'Caveat', cursive;
    
    --radius-full: 999px;
    --radius-sm: 8px;
    
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-grey {
    color: var(--text-grey);
}

/* ==========================================================================
   Layout Wrapper
   ========================================================================== */
.layout-wrapper {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Left Sidebar
   ========================================================================== */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--bg-white);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 100;
}

.profile-section {
    padding: 40px 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avatar-container {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-soft);
}

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

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.profile-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-grey);
    margin-bottom: 12px;
}

.handle {
    font-weight: 500;
}

.dot {
    font-size: 10px;
}

.location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.profile-role {
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.experience-section {
    width: 100%;
    margin-bottom: 32px;
}

.exp-label {
    font-size: 0.75rem;
    color: var(--text-light-grey);
    margin-bottom: 8px;
}

.exp-logos {
    display: flex;
    justify-content: center;
}

.company-logo-placeholder {
    width: 24px;
    height: 24px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.sidebar-actions {
    display: flex;
    gap: 12px;
    width: 100%;
}

.btn {
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-message {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 10px 16px;
    flex-grow: 1;
}

.btn-message:hover {
    background-color: #333;
}

.btn-icon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    flex-shrink: 0;
}

.btn-icon:hover {
    background-color: #F5F5F5;
}

.btn-icon i {
    font-size: 1.125rem;
}

.sidebar-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 0;
    width: calc(100% - 64px);
    margin-left: 32px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 24px 32px;
    gap: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--text-dark); /* Made all links dark and uniform */
    font-weight: 500;
    transition: all 0.2s;
}

.nav-item i {
    font-size: 1.25rem;
}

.nav-item:hover {
    background-color: #F5F5F5;
    color: var(--text-dark);
}

.nav-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

/* ==========================================================================
   Right Content Area
   ========================================================================== */
.content-area {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    position: relative;
    background: var(--bg-white);
}

/* Floating Top Nav Pill */
.floating-nav-pill {
    position: fixed;
    top: 24px;
    left: calc(50% + (var(--sidebar-width) / 2));
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full);
    padding: 6px 20px 6px 6px;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 50;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pill-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.pill-name {
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.pill-links-wrapper {
    display: flex;
    overflow: hidden;
    max-width: 300px;
    opacity: 1;
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-links {
    display: flex;
    gap: 20px;
}

.pill-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: opacity 0.2s;
    white-space: nowrap;
}

.pill-links a:hover {
    opacity: 0.7;
}

.pill-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-dots i {
    font-size: 1.25rem;
    color: var(--text-dark);
}

/* Collapsed State when scrolling down */
.floating-nav-pill.collapsed {
    gap: 12px;
    padding-right: 12px;
}

.floating-nav-pill.collapsed .pill-links-wrapper {
    max-width: 0;
    opacity: 0;
}

.floating-nav-pill.collapsed .pill-dots {
    max-width: 40px;
    opacity: 1;
}

/* Hover overrides collapsed state */
.floating-nav-pill:hover {
    gap: 24px;
    padding-right: 20px;
}

.floating-nav-pill:hover .pill-links-wrapper {
    max-width: 300px;
    opacity: 1;
}

.floating-nav-pill:hover .pill-dots {
    max-width: 0;
    opacity: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh; /* Made slightly smaller than full viewport */
    width: 100%;
    background: linear-gradient(180deg, #1DA1F2 0%, #7AC5FF 50%, #FFFFFF 100%);

    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden; /* Prevent image bleeding outside */
}

.hero-content {
    display: flex;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 40px 0 60px; /* Added 20px more padding on the left */
    position: relative;
    z-index: 10;
}

.hero-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    z-index: 2;
}

.greeting {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 32px;
}

.title-sans {
    color: var(--text-white);
    font-size: 8rem;
    font-weight: 400; /* Normal weight */
    letter-spacing: -0.05em;
    line-height: 0.8;
}

@keyframes floatText {
    0% { transform: rotate(-3deg) translateY(-20px) translateX(-20px); }
    100% { transform: rotate(-3deg) translateY(-35px) translateX(-20px); }
}

.title-script {
    color: var(--text-white);
    font-family: 'Caveat', cursive;
    font-size: 10rem; /* Increased size back up slightly */
    font-weight: 400; 
    line-height: 0.5;
    margin-left: 220px; /* Moved a bit further right to align beautifully with shorter expert text */
    text-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: floatText 3s ease-in-out infinite alternate;
}

.subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-size: 1.1875rem; /* Increased by ~5px (from 14px to 19px) */
    font-weight: 600;
}

.company-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* Sky Background Images */
.bg-sky {
    position: absolute;
    z-index: 0;
    opacity: 0.7;
    pointer-events: none;
}

.bg-sky-1 {
    width: 600px;
    left: 10%;
    top: 10%;
    animation: floatSky1 35s ease-in-out infinite alternate;
}

/* Clouds Animation */
.cloud {
    position: absolute;
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
    animation: floatCloud linear infinite alternate;
}

.cloud-1 {
    left: 10%; /* Center it more */
    top: 25%;
    width: 700px; /* Made bigger */
    animation-duration: 35s; /* Slower and smoother */
}

.cloud-2 {
    right: -10%;
    top: 5%;
    width: 550px;
    animation-duration: 35s;
    animation-delay: -10s;
}

.cloud-3 {
    right: 5%;
    bottom: 15%;
    width: 350px;
    animation-duration: 28s;
    animation-delay: -5s;
}

@keyframes floatCloud {
    0% { transform: translateX(0); }
    100% { transform: translateX(40px); }
}

/* Person Image */
.hero-image-block {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 1050px; /* Fixed width so it doesn't shrink when resizing screen */
    z-index: 1;
}

.person-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Masking gradient to fade out bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* Bottom Floating Tags */
.bottom-tag {
    position: absolute;
    bottom: 32px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 20;
}

.bottom-tag i {
    font-size: 0.875rem;
}

.tag-left {
    left: 40px;
}

.tag-right {
    right: 40px;
    text-transform: uppercase;
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    color: #e5e7eb;
    font-size: 14px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #e5e7eb;
}

.divider-plus {
    padding: 0 16px;
    margin-top: -2px; /* optical alignment */
    color: #9ca3af;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 120px 80px;
    background-color: var(--bg-white);
    position: relative;
    z-index: 5;
}

.about-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.about-label {
    flex: 0 0 150px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-grey);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 12px;
}

.about-content {
    flex: 1;
    max-width: 900px;
}

.about-headline {
    font-size: 2.75rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 80px;
    max-width: 800px;
    text-align: left;
}

/* Scroll Reveal Text */
.reveal-word {
    color: #e5e7eb;
    transition: color 0.4s ease;
}

.reveal-word.revealed {
    color: var(--text-dark);
}

.reveal-word.blue-cursive {
    font-family: 'Caveat', cursive;
    color: #e5e7eb;
    font-size: 1.1em;
    font-weight: 700;
    line-height: 0.5;
    vertical-align: -5px;
}

.reveal-word.blue-cursive.revealed {
    color: #1DA1F2;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.stat-box {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 600;
    color: #1DA1F2;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.stat-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-section {
    padding: 0 0 40px 0;
    background-color: var(--bg-white);
    position: relative;
    z-index: 5;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 0 80px 0;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-grey);
    max-width: 600px;
}

.journey-header {
    padding-top: 0;
    padding-bottom: 40px;
}

/* Portfolio Cards */
.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 15vh; /* Gap ensures we scroll a bit before the next card hits */
    width: 100%;
    position: relative;
    padding: 0 0 60px 0;
}

.sticky-card {
    position: sticky;
    top: 6vh;
    width: 100%;
    height: 85vh;
    padding: 0 80px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transform-origin: top center;
    background: #111;
}

.sticky-card:nth-child(1) { z-index: 1; top: 6vh; background: #024158; }
.sticky-card:nth-child(2) { z-index: 2; top: 9vh; background: #422100; }
.sticky-card:nth-child(3) { z-index: 3; top: 12vh; background: #590000; }
.sticky-card:nth-child(4) { z-index: 4; top: 15vh; background: #1c1c1c; }

.project-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.project-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
}

.project-glass-panel {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    height: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 28px 25px;
    display: flex;
    flex-direction: column;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.project-number {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.project-year {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.875rem;
}

.project-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

/* Custom Cursor */


.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem; /* 14px */
    line-height: 1.6;
    margin-bottom: auto;
}

.case-study-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #000;
    padding: 8px 24px 8px 8px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 32px;
    transition: color 0.4s ease-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.case-study-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: -2;
}

.case-study-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 36px;
    height: 36px;
    background: #000;
    border-radius: 50%;
    transform: translateY(-50%) scale(1);
    transform-origin: center;
    transition: transform 0.4s ease-out;
    z-index: -1;
}

.case-study-btn:hover::after {
    transform: translateY(-50%) scale(15);
}

.case-study-btn:hover {
    color: #fff;
}

.case-study-btn-icon {
    width: 36px;
    height: 36px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Personal About Section
   ========================================================================== */
.personal-about-section {
    padding: 0 0 120px 0;
    background-color: var(--bg-white);
    position: relative;
    z-index: 5;
}

.personal-about-section .hero-divider {
    margin-bottom: 80px;
}

.personal-about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 80px;
}

.personal-about-image-wrapper {
    flex: 0 0 450px;
    display: flex;
    justify-content: center;
}

.polaroid-frame {
    background: #fff;
    padding: 20px 20px 80px 20px;
    border: 1px solid var(--border-color);
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.04);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
    width: 100%;
}

.polaroid-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.polaroid-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.personal-about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.personal-about-headline {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    line-height: 1.1;
    color: var(--text-dark);
}

.personal-about-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-grey);
    margin-bottom: 24px;
    font-weight: 400;
}

.personal-about-text:last-of-type {
    margin-bottom: 40px;
}

.personal-about-signature {
    font-family: var(--font-script);
    font-size: 4rem;
    color: #1DA1F2;
    line-height: 1;
}

/* ==========================================================================
   Journey / Experience Section
   ========================================================================== */
.journey-section {
    padding: 0;
    background-color: var(--bg-white);
    position: relative;
    z-index: 5;
    /* Height is now dynamically set by JS based on horizontal scroll width */
}

.sticky-timeline-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    overflow: hidden;
}

/* White gradients for left and right edges */
.sticky-timeline-wrapper::before,
.sticky-timeline-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15vw;
    z-index: 10;
    pointer-events: none;
}

.sticky-timeline-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.sticky-timeline-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.timeline-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Boxed layout requested by user */
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-carousel {
    display: flex;
    flex-direction: row;
    position: relative;
    padding-left: calc(50% - 200px); /* Centers the first card perfectly within the wrapper */
    gap: 30px; /* 30px gap requested by user */
    will-change: transform; /* Optimized for JS translation */
}

.timeline-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.timeline-carousel-spacer {
    flex: 0 0 50vw; /* Guarantees enough scroll space to bring the last card past the center! */
}

.timeline-carousel-line-bg {
    position: absolute;
    top: 103px; /* Fixed position perfectly intersecting the node centers */
    left: 50%; /* Starts exactly at the first card's node (50% of wrapper) */
    height: 2px;
    background-color: var(--border-color); /* Theme gray */
    z-index: 1;
}

.timeline-carousel-line-progress {
    position: absolute;
    top: 103px; /* Fixed position perfectly intersecting the node centers */
    left: 50%; /* Starts exactly at the first card's node (50% of wrapper) */
    height: 2px;
    width: 0; /* Updated via JS */
    background-color: var(--bg-blue); /* Theme blue */
    z-index: 2;
}

.timeline-carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px; /* Matched to card max-width */
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    padding-top: 40px;
}

.timeline-content-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-node-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 72px; /* Fixes node exactly at 112px down */
    position: relative;
    z-index: 4;
}

.timeline-node {
    width: 16px;
    height: 16px;
    background-color: var(--border-color); /* Theme gray */
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 4px #F5F5F5;
}

.timeline-node.node-present,
.timeline-carousel-item.active .timeline-node {
    background-color: var(--bg-blue); /* Theme blue */
    box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.2);
}

.timeline-date-pill {
    padding: 6px 16px;
    background: #F5F5F5;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-grey); /* Theme text */
    white-space: nowrap;
    z-index: 3;
    margin: 0 0 12px 0;
}

.timeline-date-pill.pill-present,
.timeline-carousel-item.active .timeline-date-pill {
    color: var(--bg-blue);
    border-color: var(--bg-blue);
    background: rgba(10, 132, 255, 0.05); /* Soft blue bg */
}

.timeline-connector-vertical {
    width: 2px;
    background-color: var(--border-color); /* Theme gray connector */
}

.stagger-high .timeline-connector-vertical {
    height: 24px;
}

.stagger-low .timeline-connector-vertical {
    height: 64px;
}

.timeline-connector-vertical.line-present,
.timeline-carousel-item.active .timeline-connector-vertical {
    background-color: var(--bg-blue); /* Theme blue connector */
}

.timeline-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
    opacity: 0.8; /* Increased from 0.5 to 0.8 to make description fully visible */
    width: 100%;
    max-width: 400px;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-card.tilt-left {
    transform: translateY(20px) rotate(-3deg);
}

.timeline-card.tilt-right {
    transform: translateY(-20px) rotate(3deg);
}

.timeline-carousel-item.active .timeline-card.tilt-left {
    opacity: 1;
    transform: translateY(0) rotate(-1.5deg);
}

.timeline-carousel-item.active .timeline-card.tilt-right {
    opacity: 1;
    transform: translateY(0) rotate(1.5deg);
}

/* Card internal styling */
.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.timeline-company-logo {
    width: 48px;
    height: 48px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffd600; /* Yellow for Mygate logo representation */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.timeline-role-info {
    display: flex;
    flex-direction: column;
}

.timeline-role-info h3 {
    font-size: 9px;
    font-weight: 500;
    color: var(--text-grey);
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-role-info span {
    font-size: 14px;
    font-weight: 600; /* Semi-bold */
    color: var(--text-dark);
}

.timeline-location {
    margin-left: auto;
    font-size: 9px;
    color: var(--text-light-grey);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-card-bullets li {
    font-size: 13px; /* Increased from 10px to 13px */
    color: #2d3748; /* Darker charcoal gray for high visibility */
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 16px;
}

.timeline-card-bullets li:last-child {
    margin-bottom: 0;
}

.timeline-card-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--text-light-grey);
    border-radius: 50%;
}

.timeline-card-bullets li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ==========================================================================
   Responsive Logic
   ========================================================================== */
@media (max-width: 1024px) {
    .title-sans {
        font-size: 4rem;
    }
    .title-script {
        font-size: 5rem;
    }
    
    /* Portfolio Cards - Tablet Layout */
    .portfolio-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    .sticky-card {
        height: auto;
        min-height: auto;
        padding: 40px 30px;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        position: relative !important;
        top: 0 !important;
        transform: none !important;
    }
    .project-bg-img {
        position: relative;
        width: 100%;
        height: 350px;
        top: 0;
        right: 0;
        border-radius: 20px;
    }
    .project-content {
        position: relative;
        width: 100%;
        justify-content: center;
    }
    .project-glass-panel {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        padding: 24px;
    }
}

/* ==========================================================================
   Offcanvas Mobile Menu Drawer
   ========================================================================== */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #111;
    color: #fff;
    z-index: 10000;
    padding: 60px 30px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
}
.offcanvas-menu.active {
    right: 0;
}
.offcanvas-close {
    align-self: flex-end;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}
.offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.offcanvas-item {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.2s;
}
.offcanvas-item:hover {
    color: #1DA1F2;
}

.pill-actions-mobile {
    display: none;
}

.timeline-nav-arrows {
    display: none;
}

@media (max-width: 768px) {
    .layout-wrapper {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }
    
    /* Hide the entire sidebar on mobile as requested */
    .sidebar {
        display: none !important;
    }
    
    .pill-name {
        font-size: 1.1rem !important;
    }
    
    .content-area {
        width: 100%;
        height: auto;
        overflow-y: visible;
        margin-left: 0 !important; /* Fixed left whitespace issue */
    }
    
    .floating-nav-pill {
        display: flex !important; /* Show floating nav pill on mobile */
        position: fixed !important;
        top: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 92% !important;
        max-width: 340px !important; /* Smaller, compact width */
        z-index: 9999 !important;
        justify-content: space-between !important;
        padding: 6px 12px !important;
        transition: none !important; /* Disables all animations */
    }
    
    /* Disables width squeezing on scroll */
    .floating-nav-pill.collapsed {
        width: 92% !important;
        max-width: 340px !important;
        padding: 6px 12px !important;
    }
    
    .floating-nav-pill.collapsed .pill-actions-mobile {
        display: flex !important; /* Stay visible on scroll */
    }
    
    .pill-links-wrapper {
        display: none !important; /* Hide links directly inside the pill on mobile */
    }
    
    /* Hide the 3-dots completely on mobile since links are not required */
    .pill-dots {
        display: none !important;
    }
    
    /* Mobile Call & Message buttons in the header nav bar itself */
    .pill-actions-mobile {
        display: flex !important;
        align-items: center;
        gap: 8px;
        margin-right: 12px;
    }
    
    .pill-btn-message {
        background: #000 !important; /* Changed Message button color to black */
        color: #fff !important;
        border: none;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 11px !important; /* Font size set to 11px (2px extra) */
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .pill-btn-message i {
        font-size: 12px;
    }
    
    .pill-btn-call {
        background: #f3f4f6;
        color: #000;
        border: none;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 12px;
    }
    
    .sidebar-nav {
        display: none !important; /* Hide sidebar nav links on mobile */
    }
    
    /* Hero - Mobile Layout */
    .hero-section {
        height: auto;
        padding: 80px 0 40px 0 !important; /* Adjusted vertical padding */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .hero-content {
        position: relative;
        width: 100%;
        padding: 0 20px !important; /* Perfectly uniform padding on both sides */
        padding-top: 0;
    }
    
    .greeting {
        margin-bottom: 24px !important; /* Spacing between greeting and Digital */
    }
    
    .title-group {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 5px !important; /* Reduced margin under titles group */
    }
    
    .title-sans {
        font-size: 5.5rem !important; /* Make Digital 2x bigger */
        line-height: 0.95 !important;
        margin-bottom: 5px !important;
    }
    
    .title-script {
        font-size: 7.5rem !important; /* Make expert text even bigger */
        transform: rotate(-5deg) !important; /* Stacks and removes translateY overlapping */
        margin-left: 0 !important; /* Center alignment */
        margin-top: -30px !important; /* Move expert text higher */
        display: block !important;
        line-height: 1.1 !important; /* Resolved text overlap */
    }
    
    .hero-text-block {
        align-items: center;
        text-align: center;
    }
    
    .subtitle {
        display: block !important;
        text-align: center !important;
        line-height: 1.5 !important;
        font-size: 1.1rem !important;
        margin: 5px auto 20px auto !important; /* Top margin reduced to 5px to decrease gap */
        width: 100% !important;
        justify-content: center !important;
    }
    
    .hero-image-block {
        position: relative;
        width: 140% !important;
        max-width: none !important;
        margin: 20px 0 0 -10% !important;
        left: 15% !important;
        bottom: 0;
    }
    
    .bottom-tag {
        display: none; /* Hide floating tags on mobile */
    }
    
    .hero-divider {
        position: relative;
        left: 0;
        right: 0;
        margin-top: 40px;
    }
    
    /* About - Mobile Layout */
    .about-section {
        padding: 60px 20px 20px 20px !important; /* Move experiences little top by reducing bottom padding */
    }
    
    .about-grid {
        flex-direction: column;
        gap: 24px;
    }
    
    .about-label {
        flex: none;
        padding-top: 0;
    }
    
    .about-headline {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Portfolio - Mobile Layout */
    .portfolio-section {
        padding-bottom: 0 !important; /* Remove bottom padding after portfolio */
    }
    
    .project-bg-img {
        height: 200px;
    }
    
    .project-title {
        font-size: 1.35rem;
    }
    
    .project-glass-panel {
        padding: 20px 15px;
    }
    
    .case-study-btn {
        padding: 6px 16px 6px 6px;
        font-size: 0.85rem;
    }
    
    /* Journey / Experience - Mobile Swipe Layout */
    .journey-section {
        padding: 40px 0 !important;
        height: auto !important;
    }
    
    .journey-header {
        padding-bottom: 0px !important; /* Reduce space below journey header */
    }
    
    .sticky-timeline-wrapper {
        position: relative !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Hide white gradient fade overlays on mobile to prevent washing out experience cards */
    .sticky-timeline-wrapper::before,
    .sticky-timeline-wrapper::after {
        display: none !important;
    }
    
    .timeline-carousel-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0 !important;
        margin-top: 10px !important; /* Tighter layout spacing */
    }
    
    .timeline-carousel {
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        width: max-content !important;
        padding: 0 20px !important;
    }
    
    .timeline-carousel-line-bg,
    .timeline-carousel-line-progress,
    .timeline-connector-vertical {
        display: none !important;
    }
    
    /* Make Year & Date Pill Show on Mobile */
    .timeline-node-area {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 12px !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .timeline-node {
        display: none !important; /* Hide dot */
    }
    
    .timeline-date-pill {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        display: inline-block !important;
        background: #1DA1F2 !important;
        color: #fff !important;
        padding: 4px 12px !important;
        border-radius: 12px !important;
        font-size: 10px !important;
        font-weight: 700 !important;
    }
    
    .timeline-carousel-item {
        margin-right: 20px !important;
        transform: none !important;
        height: auto !important;
        flex-shrink: 0 !important;
        opacity: 1 !important; /* 100% opacity, completely visible on mobile */
    }
    
    .timeline-card {
        width: 270px;
        padding: 20px;
        transform: none !important; /* Disable translateY tilt shifts that clip the card */
        box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
        overflow: visible !important; /* Prevent internal scroll clipping */
    }
    
    .timeline-card h3 {
        font-size: 10px !important; /* Role in 10px */
    }
    
    .timeline-role-info span {
        font-size: 7px !important; /* Place in 7px */
    }
    
    .timeline-location {
        font-size: 7px !important; /* Location in 7px */
    }
    
    .timeline-card-bullets li {
        font-size: 12px !important; /* 2px extra (from 10px to 12px) */
        color: #2d3748 !important; /* Highly visible dark grey */
        line-height: 1.5 !important;
    }
    
    .timeline-card-bullets li strong {
        color: #000 !important; /* Pure black bold text */
    }
    
    /* Timeline Arrow Navigation Controls */
    .timeline-nav-arrows {
        display: flex !important;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }
    .timeline-arrow-btn {
        background: #111;
        color: #fff;
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        font-size: 1.1rem;
        transition: background 0.2s;
    }
    .timeline-arrow-btn:active {
        background: #1DA1F2;
    }
    
    /* Testimonials - Mobile Layout */
    .testimonials-section .section-header {
        padding-bottom: 0px !important;
    }
    .testimonials-marquee-container {
        padding: 10px 0 20px 0 !important;
    }
    
    .testimonial-card {
        width: 280px !important;
        min-height: auto;
        flex-direction: column;
        align-items: center;
        padding: 30px 20px !important; /* Regular padding */
        text-align: center;
        margin: 0 10px;
    }
    
    .testimonial-polaroid {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: rotate(-3deg) !important; /* Keep tilt */
        margin: 0 auto 24px auto !important;
        width: 180px !important; /* Made wider */
        padding: 8px 8px 20px 8px !important;
    }
    
    .testimonial-polaroid .polaroid-photo {
        height: 140px !important; /* Taller photo to match width */
    }
    
    .testimonial-card:hover .testimonial-polaroid {
        transform: rotate(0deg) scale(1.05) !important;
    }
    
    .testimonial-text {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        padding: 0 !important; /* Removed layout clipping */
        margin: 0 !important;
        text-align: center !important;
    }
    
    /* Footer - Mobile Layout */
    .cta-footer {
        padding: 40px 16px !important; /* Reduced padding left/right */
    }
    
    .cta-left {
        padding-bottom: 120px !important; /* Prevent overlap with SANJAY text */
    }
    
    .cta-heading {
        font-size: 2.2rem;
        line-height: 1.25;
    }
    
    .cta-bg-text {
        font-size: 26vw !important; /* Make background SANJAY text bigger */
        bottom: -2vw !important;
    }
    
    .cta-links {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .copyright-group {
        margin-left: 0 !important; /* Align left */
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 0 0 40px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, #7AC5FF 100%);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/Sky.png') repeat-x 0 bottom;
    background-size: 1200px auto;
    animation: panSkyBg 40s linear infinite;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.testimonials-section > * {
    position: relative;
    z-index: 1;
}

@keyframes panSkyBg {
    from { background-position: 0 bottom; }
    to { background-position: -1200px bottom; }
}

.testimonials-section .hero-divider {
    margin-bottom: 0px;
}

.testimonials-section .section-header {
    margin-bottom: 20px; /* Reduce gap under description */
}

.testimonials-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0 20px 0; /* Reduced top padding */
}

.testimonials-marquee {
    display: flex;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
}

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

.testimonials-marquee-track {
    display: flex;
    gap: 60px;
    padding: 0 30px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    width: 520px; /* Slightly wider to accommodate bigger polaroid */
    min-height: 240px; /* Made the box higher */
    position: relative;
    padding: 30px 30px 30px 160px; /* Adjusted space for polaroid */
}

.testimonial-polaroid {
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    background: #fff;
    padding: 10px 10px 24px 10px;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.1);
    width: 150px; /* Wider for bigger text */
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
    z-index: 2;
}

.testimonial-card:hover .testimonial-polaroid {
    transform: translateY(-50%) rotate(0deg) scale(1.05);
}

.paperclip {
    position: absolute;
    top: -20px;
    left: 15px;
    font-size: 30px;
    color: #666;
    transform: rotate(15deg);
    filter: drop-shadow(2px 4px 2px rgba(0,0,0,0.2));
    z-index: 3;
}

.paperclip i {
    font-weight: 700;
}

.polaroid-photo {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-bottom: 8px;
    background: #eee;
}

.polaroid-name {
    font-family: var(--font-script);
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
    text-align: center;
}

.polaroid-role {
    font-size: 12px;
    color: var(--text-grey);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.testimonial-text {
    font-family: var(--font-script);
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

/* ==========================================================================
   CTA Footer
   ========================================================================== */
.cta-footer {
    position: relative;
    background: linear-gradient(180deg, #7AC5FF 0%, #1DA1F2 100%); 
    background-size: cover;
    padding: 60px 80px 80px 80px; /* Increased bottom padding */
    overflow: hidden;
    color: #fff;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-cloud {
    position: absolute;
    opacity: 0;
    z-index: 1; /* Swapped z-index to sit behind the background text */
    pointer-events: none;
    will-change: transform, opacity;
    mix-blend-mode: screen; /* Blends out the black background of the cloud image */
}

.footer-cloud-left {
    left: -18%; /* Shifted further left */
    bottom: 8%; /* Moved more top */
    width: 600px;
}

.footer-cloud-right {
    right: -5%;
    top: 50%; /* Moved a little bit further down */
    width: 450px;
}

.cta-bg-text {
    position: absolute;
    bottom: -1vw;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 18vw;
    font-weight: 900;
    line-height: 0.8;
    z-index: 2; /* Swapped z-index to sit on top of the clouds */
    pointer-events: none;
    user-select: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 60px;
}

.cta-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 240px; /* Increased bottom padding to prevent overlap with background text */
}

.cta-heading {
    font-size: 4rem; /* Adjusted down from 5.5rem for better proportions */
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: normal;
    margin-bottom: 0; /* Removed bottom margin/padding */
}

.scrolling-words {
    display: inline-flex;
    flex-direction: column;
    height: 1.2em;
    overflow: hidden;
    vertical-align: middle;
    padding: 0 16px 0 8px; /* Added right padding to prevent slanting script text from cutting off */
    position: relative;
    top: -12px; /* Lifted higher to align perfectly with sans-serif "lets" */
    -webkit-mask-image: linear-gradient(transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(transparent, black 15%, black 85%, transparent);
}

.scrolling-words span {
    font-family: var(--font-script);
    color: #fff;
    font-weight: 400;
    font-size: 1.2em;
    height: 1.2em; /* Syncs perfectly with parent container height */
    line-height: 1.2em;
    animation: scrollWords 6s infinite cubic-bezier(0.64, 0, 0.35, 1);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

@keyframes scrollWords {
    0%, 20% { transform: translateY(0); }
    33%, 53% { transform: translateY(-100%); }
    66%, 86% { transform: translateY(-200%); }
    100% { transform: translateY(-300%); }
}

.cta-links {
    display: flex;
    gap: 80px;
    margin-top: 40px;
}

.cta-link-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copyright-group {
    margin-left: auto;
}

.cta-link-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-link-text {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.cta-social-icons {
    display: flex;
    gap: 12px;
}

.cta-social-circle {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.cta-social-circle:hover {
    transform: translateY(-3px);
}

.cta-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 60px;
    margin-bottom: 24px;
}

.cta-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* ==========================================================================
   WordPress Admin Bar Layout Fixes
   ========================================================================== */
.admin-bar .sidebar {
    top: 32px;
    height: calc(100vh - 32px);
}
.admin-bar .floating-nav-pill {
    top: calc(20px + 32px);
}
.admin-bar .sticky-card {
    top: calc(6vh + 32px);
}
@media (max-width: 782px) {
    .admin-bar .sidebar {
        top: 46px;
    }
    .admin-bar .floating-nav-pill {
        top: calc(20px + 46px);
    }
    .admin-bar .sticky-card {
        top: calc(6vh + 46px);
    }
}
