/* ==========================================================================
   1. Design System Tokens & Global Reset
   ========================================================================== */
:root {
    --bg-base: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.4);
    --border-glass: rgba(255, 255, 255, 0.6);
    --border-light: rgba(0, 0, 0, 0.08);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    
    /* Branding Accent Color (Sahariar's Premium Purple) */
    --accent: #963ef5;
    --accent-hover: #7e2bcf;
    --accent-glow: rgba(150, 62, 245, 0.12);
    --accent-bg-glow: rgba(150, 62, 245, 0.04);
    
    /* Radii & Shadows */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
    --card-shadow-hover: 0 25px 50px -10px rgba(150, 62, 245, 0.1), 0 5px 15px -5px rgba(0, 0, 0, 0.02);
    
    --header-height: 70px;
    --max-width: 1200px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ==========================================================================
   2. Fluid Ambient Background Warping Blobs
   ========================================================================== */
.fluid-background {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: #f8fafc;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.55;
    will-change: transform;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #e8d5ff 0%, transparent 70%);
    animation: morphBlob1 25s infinite alternate ease-in-out;
}

.blob-2 {
    bottom: -15%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, #ccfbf1 0%, transparent 70%);
    animation: morphBlob2 20s infinite alternate ease-in-out;
}

.blob-3 {
    top: 30%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #ffedd5 0%, transparent 70%);
    animation: morphBlob3 22s infinite alternate ease-in-out;
}

.blob-4 {
    bottom: 20%;
    left: -5%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, #fef9c3 0%, transparent 70%);
    animation: morphBlob1 30s infinite alternate ease-in-out;
}

@keyframes morphBlob1 {
    0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
    50% { transform: translate3d(4vw, -4vw, 0) scale(1.05) rotate(90deg); }
    100% { transform: translate3d(-2vw, 2vw, 0) scale(0.95) rotate(180deg); }
}

@keyframes morphBlob2 {
    0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
    50% { transform: translate3d(-3vw, 3vw, 0) scale(0.95) rotate(-90deg); }
    100% { transform: translate3d(2vw, -2vw, 0) scale(1.05) rotate(-180deg); }
}

@keyframes morphBlob3 {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(3vw, 2vw, 0) scale(1.08); }
    100% { transform: translate3d(-3vw, -2vw, 0) scale(0.92); }
}

/* ==========================================================================
   3. Header Navigation (Floating Glass Pill Design)
   ========================================================================== */
.site-header {
    position: fixed;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.floating-pill-header {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--max-width);
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.header-container {
    width: 94%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    padding: 6px 0;
    position: relative;
    text-decoration: none;
}

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

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

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

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 6px 18px -3px var(--accent-glow);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -3px var(--accent-glow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--accent-bg-glow);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 20px;
}

/* Hamburger mobile toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-card);
    z-index: 999;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
}

.mobile-nav-overlay.active {
    left: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    height: 80%;
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
}

.mobile-nav-link:hover {
    color: var(--accent);
}

/* ==========================================================================
   4. Page Container & Layout Sections
   ========================================================================== */
.page-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: calc(var(--header-height) + 50px);
}

.section-spacing {
    padding: 60px 0;
}

/* Reusable card panels */
.section-card-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px 50px 50px;
    box-shadow: var(--card-shadow);
}

.section-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-header.text-center {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 32px;
    font-weight: 850;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 15.5px;
}

/* Animated load hooks */
.gsap-reveal {
    opacity: 0;
    transform: translateY(20px);
}

/* --------------------------------------------------------------------------
   Interactive Cursor Border Spotlights (.spotlight-card)
   -------------------------------------------------------------------------- */
.spotlight-card {
    position: relative;
    overflow: hidden;
}

.glow-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(150, 62, 245, 0.08), transparent 80%);
    transition: opacity 0.5s ease;
    z-index: 1;
}

.spotlight-card:hover .glow-overlay {
    opacity: 1;
}

/* ==========================================================================
   5. Component Layout Blocks
   ========================================================================== */

/* EDITORIAL SPLIT HERO SECTION */
.hero-split-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    min-height: 75vh;
    padding: 30px 0;
}

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

.intro-badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.badge-animated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-bg-glow);
    border: 1px solid rgba(150, 62, 245, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--accent);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

.local-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
}

.local-time-badge i {
    color: var(--accent);
}

@keyframes statusPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 8px #10b981; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-title .accent-text {
    color: var(--accent);
}

.hero-desc-text {
    font-size: 17.5px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 90%;
    line-height: 1.6;
}

/* Integrated Sleek horizontal stats row */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 30px 0 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

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

.stat-large {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-sub {
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: var(--border-light);
}

.hero-ctas {
    display: flex;
    gap: 15px;
}

/* Free-floating Profile Image styling */
.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-photo-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-glow-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    background: radial-gradient(circle, rgba(150, 62, 245, 0.22) 0%, transparent 70%);
    filter: blur(25px);
    z-index: 1;
}

.floating-photo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%; /* Moves focus up to prevent hair cut */
    border-radius: 60px; /* Squircle */
    border: 1px solid var(--border-glass);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Scrolling Text Marquee Ticker */
.marquee-ticker {
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 18px 0;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: marqueeTranslate 28s linear infinite;
}

.marquee-content span {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

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

/* ABOUT BENTO LAYOUT */
.about-bento-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.bio-text-cell p {
    font-size: 15.5px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.bio-text-cell p:last-child {
    margin-bottom: 0;
}

.skills-highlight {
    margin-top: 30px;
}

.skills-highlight h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.chips-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    background-color: var(--bg-base);
    border: 1px solid var(--border-light);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.chip i {
    color: var(--accent);
    font-size: 10px;
}

.bio-visual-cell {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--card-shadow);
}

.about-workspace-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* SERVICES LIST GRID */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--card-shadow);
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.service-box * {
    position: relative;
    z-index: 2;
}

.service-box:hover {
    border-color: rgba(150, 62, 245, 0.2);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.service-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background-color: var(--accent-bg-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-wrap img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.service-box h3 {
    font-size: 18px;
    font-weight: 750;
    margin-bottom: 12px;
    transform: translateZ(10px);
}

.service-box p {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin: 0;
}

/* TIMELINE WORKING JOURNEY */
.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.timeline-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    align-items: flex-start;
}

.timeline-brand-logo {
    width: 120px;
    height: 60px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.timeline-brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.timeline-details {
    background-color: rgba(255,255,255,0.25);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 25px;
    transition: var(--transition-smooth);
}

.timeline-row:hover .timeline-details {
    background-color: var(--bg-card);
    border-color: rgba(150, 62, 245, 0.15);
    box-shadow: var(--card-shadow-hover);
}

.details-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 10px;
}

.details-top h3 {
    font-size: 18px;
    font-weight: 750;
}

.timeline-years {
    font-size: 11.5px;
    font-weight: 750;
    color: var(--accent);
    background-color: var(--accent-bg-glow);
    padding: 4px 10px;
    border-radius: 20px;
}

.company-sub {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.location-badge {
    color: var(--text-secondary);
    background-color: rgba(0,0,0,0.04);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 10px;
    margin-left: 5px;
    display: inline-block;
}

.timeline-details p {
    font-size: 13.5px;
    color: var(--text-secondary);
}

/* PORTFOLIO CREATIONS */
.portfolio-filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 8px 18px;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-card-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.portfolio-card-item * {
    position: relative;
}

.portfolio-card-item:hover {
    border-color: rgba(150, 62, 245, 0.2);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.card-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card-item:hover .portfolio-img {
    transform: scale(1.03);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
}

.portfolio-card-item:hover .card-overlay {
    opacity: 1;
}

.launch-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: var(--transition-smooth);
}

.launch-icon:hover {
    background-color: var(--accent-hover);
    transform: scale(1.08);
}

.card-meta {
    padding: 20px;
    transform: translateZ(10px);
    z-index: 2;
}

.card-meta .tag {
    font-size: 10.5px;
    font-weight: 750;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.card-meta h3 {
    font-size: 17px;
    font-weight: 750;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 12px;
}

.card-logo {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.visit-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.portfolio-card-item.hide {
    display: none;
}

/* CLIENT TESTIMONIAL SLIDER */
.feedback-slider-container {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.feedback-slides-wrapper {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
}

.feedback-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.feedback-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    position: relative;
}

.rating-stars {
    color: #f59e0b;
    font-size: 11.5px;
    margin-bottom: 15px;
}

.feedback-quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 25px;
}

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

.author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.feedback-author h4 {
    font-size: 14px;
    font-weight: 750;
}

.feedback-author p {
    font-size: 11px;
    color: var(--text-secondary);
    margin: 0;
}

.slider-controls-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.slider-arrow {
    background-color: var(--bg-base);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.slider-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--border-light);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--accent);
    width: 16px;
    border-radius: 4px;
}

/* CONTACT CTA CARD */
.cta-banner-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(150, 62, 245, 0.03) 100%);
    border: 1px solid var(--border-glass);
    box-shadow: var(--card-shadow);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content-inner {
    position: relative;
    z-index: 2;
}

.cta-banner-card h2 {
    font-size: 32px;
    font-weight: 850;
    margin-bottom: 12px;
}

.cta-banner-card p {
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 30px;
    font-size: 15.5px;
}

.cta-actions-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* CLIENT LOGOS TICKER BANNER */
.client-logos-banner {
    margin-top: 35px;
    text-align: center;
    position: relative;
    z-index: 2;
}

#home {
    padding-bottom: 25px;
}

#about {
    padding-top: 25px;
}

.logos-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    opacity: 0.8;
    display: block;
    margin-bottom: 25px;
}

.logos-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.logos-slider::before,
.logos-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.logos-slider::before {
    left: 0;
    background: linear-gradient(to right, #fbfbfe 0%, transparent 100%);
}

.logos-slider::after {
    right: 0;
    background: linear-gradient(to left, #fbfbfe 0%, transparent 100%);
}

.logos-track {
    display: inline-flex;
    align-items: center;
    gap: 70px;
    animation: logosTicker 30s linear infinite;
}

.logos-track img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) contrast(85%);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.logos-track img:hover {
    filter: none;
    opacity: 0.95;
}

@keyframes logosTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 35px)); }
}

/* COMPANIES I FOUNDED (VENTURES) SECTION */
.ventures-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.venture-detail-block {
    background-color: rgba(255, 255, 255, 0.22);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 35px;
    transition: var(--transition-smooth);
}

.venture-detail-block:hover {
    background-color: var(--bg-card);
    border-color: rgba(150, 62, 245, 0.2);
    box-shadow: var(--card-shadow-hover);
}

.venture-main-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.venture-logo-wrap {
    display: flex;
    align-items: center;
}

.venture-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.role-badge {
    font-size: 11.5px;
    font-weight: 750;
    color: var(--accent);
    background-color: var(--accent-bg-glow);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 4px;
}

.venture-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.venture-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feat-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feat-tag i {
    color: var(--accent);
}

/* FOOTER */
.site-footer {
    border-top: 1px solid var(--border-light);
    padding: 40px 0;
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-secondary);
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

/* ==========================================================================
   6. Responsive Layout Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .site-header {
        background-color: var(--bg-card);
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none; /* Hide desktop nav */
    }
    
    .page-container {
        width: 95%;
        padding-top: calc(var(--header-height) + 20px);
    }
    
    .section-card-panel {
        padding: 30px 20px;
    }
    
    /* Hero split columns stack */
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .hero-content-col {
        text-align: center;
        align-items: center;
    }
    
    .intro-badge-row {
        justify-content: center;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 32px;
    }
    .hero-title br {
        display: none;
    }
    
    .hero-image-col {
        order: -1; /* image on top on mobile */
        margin-bottom: 10px;
    }
    
    .floating-photo-wrapper {
        width: 280px;
        height: 280px;
    }
    .floating-photo-wrapper .photo-glow-bg,
    .floating-photo-wrapper .floating-photo {
        border-radius: 40px;
    }
    
    /* About bento stack */
    .about-bento-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bio-visual-cell {
        max-width: 320px;
        margin: 0 auto;
        order: -1;
    }
    
    .services-list-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ventures & Logos Overrides */
    .venture-detail-block {
        padding: 25px;
    }
    .logos-track {
        gap: 45px;
    }
    .logos-track img {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 26px;
        line-height: 1.45;
    }
    
    .hero-title .accent-text {
        display: block;
        margin-top: 8px;
    }
    
    .hero-stats-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 15px 0;
    }
    
    .stat-divider {
        display: none;
    }
    
    .intro-badge-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .timeline-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .timeline-brand-logo {
        width: 100px;
        height: 50px;
        padding: 4px;
    }
    
    .details-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-card {
        padding: 30px 15px;
    }
    
    .cta-banner-card h2 {
        font-size: 24px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Mobile specific adjustments for ventures & logo banners */
    .venture-main-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .venture-logo-img {
        height: 36px;
    }
    .venture-detail-block {
        padding: 20px;
    }
    .logos-slider::before,
    .logos-slider::after {
        width: 60px; /* shorter gradient overlays so more brand logos are visible */
    }
    .logos-track {
        gap: 30px;
    }
    .logos-track img {
        height: 25px;
    }
    .section-spacing {
        padding: 15px 0;
    }
    .client-logos-banner {
        display: none;
    }
    .marquee-ticker {
        margin-top: 20px;
    }
    .logos-title {
        margin-bottom: 10px;
    }
    #works .section-header {
        text-align: center;
    }
    .portfolio-filter-bar {
        justify-content: center;
    }
}


