/* ==========================================================================
   0. CSS VARIABLE PALETTES (Theme Management)
   ========================================================================== */
:root {
    /* Premium Light Mode Palette */
    --bg-main: #ededed;             /* Outer background */
    --bg-card: #f7f7f7;             /* Bento section panels */
    --bg-inner: #ffffff;            /* Inner components (buttons, small cards) */
    --text-primary: #121212;        /* Headers / bold text */
    --text-secondary: #666666;      /* Paragraphs / labels */
    --text-muted: #b5b5b5;          /* Tickers / disabled text */
    --accent-color: #3b82f6;        /* Link accents */
    --border-subtle: rgba(0,0,0,0.05);
    --shadow-subtle: rgba(0,0,0,0.04);
    --shadow-avatar: rgba(0,0,0,0.06);
}

[data-theme="dark"] {
    /* Premium Dark Mode Palette */
    --bg-main: #0c0c0c;             /* Deep dark outer background */
    --bg-card: #161616;             /* Dark panel cards */
    --bg-inner: #222222;            /* Elevated interior components */
    --text-primary: #f3f4f6;        /* Crisp light grey/white headers */
    --text-secondary: #a1a1aa;      /* Soft grey body text */
    --text-muted: #52525b;          /* Dimmed ticker text */
    --accent-color: #60a5fa;        /* Electric blue accent */
    --border-subtle: rgba(255,255,255,0.08);
    --shadow-subtle: rgba(0,0,0,0.4);
    --shadow-avatar: rgba(0,0,0,0.4);
}

/* Custom Webfont Setup */
@font-face {
    font-family: 'Wilzten';
    src: url('font/Wilzten.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ==========================================================================
   1. GLOBAL RESET & BASE SETTINGS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-secondary);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Apply global accent adjustments to raw links */
a {
    color: var(--accent-color);
    transition: color 0.2s ease;
}

/* ==========================================================================
   2. HERO CONTAINER PANEL
   ========================================================================== */
.hero-card {
    background-color: var(--bg-card);
    border-radius: 32px;
    padding: 40px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: inset 0 0 0 1px var(--border-subtle);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Navigation Utilities */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-inner);
    padding: 6px 6px 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--border-subtle);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.email-tag {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.copy-btn, .cv-link {
    background-color: var(--text-primary);
    border: none;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--bg-main); /* Flips with theme naturally */
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.copy-btn:hover {
    filter: brightness(1.2);
}

.cv-link {
    background-color: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.cv-link:hover {
    background-color: var(--border-subtle);
}

.nav-right {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Hero Typography Content Layout */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto 0;
}

/* Premium Floating Avatar Badge Elements */
.profile-badge {
    position: relative;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-inner);
    box-shadow: 0 10px 30px var(--shadow-avatar);
    transition: border-color 0.3s ease;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name-bubble {
    position: absolute;
    bottom: -4px;
    left: 60px;
    background-color: var(--bg-inner);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    box-shadow: 0 4px 15px var(--shadow-subtle);
    border: 1px solid var(--border-subtle);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

h1 {
    font-family: 'Syne', sans-serif;
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -2px;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

/* Micro-interactive Action Button */
.cta-pill {
    background-color: var(--text-primary);
    color: var(--bg-main);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.cta-pill:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-subtle);
}

.cta-pill:hover .arrow-icon {
    transform: translate(2px, -2px);
}

/* ==========================================================================
   3. INFINITE HORIZONTAL TICKER LOOP ANIMATION
   ========================================================================== */
.ticker-container {
    background-color: var(--bg-card);
    border-radius: 32px;
    padding: 40px 0;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-move {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-loop 60s linear infinite;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-muted);
    padding: 0 40px;
    transition: color 0.3s ease;
    cursor: default;
}

.brand-item:hover {
    color: var(--text-primary);
}

@keyframes ticker-loop {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   4. PREMIUM BENTO SERVICES LAYOUT TIER
   ========================================================================== */
.services-section {
    background-color: var(--bg-card);
    border-radius: 32px;
    padding: 80px 40px;
    transition: background-color 0.3s ease;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    background-color: var(--bg-inner);
    border: 1px solid var(--border-subtle);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.services-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

/* Bento Grid System Setup */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    background-color: var(--bg-inner);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow-subtle);
}

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* ==========================================================================
   5. FOOTER DASHBOARD CARD CONTAINER
   ========================================================================== */
.footer-card {
    background-color: var(--bg-card);
    border-radius: 32px;
    padding: 80px 40px 30px 40px;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto 0;
}

.shake-hands-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-card h2 {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -2px;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.footer-buttons {
    display: flex;
    gap: 12px;
}

.footer-btn {
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-btn:hover {
    transform: translateY(-2px);
}

.footer-btn.dark {
    background-color: var(--text-primary);
    color: var(--bg-main);
}

.footer-btn.dark:hover {
    filter: brightness(1.15);
    box-shadow: 0 10px 20px var(--shadow-subtle);
}

.footer-btn.white {
    background-color: var(--bg-inner);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    transition: all 0.2s ease, background-color 0.3s ease;
}

.footer-btn.white:hover {
    background-color: var(--border-subtle);
    box-shadow: 0 10px 20px var(--shadow-subtle);
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-subtle);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: border-color 0.3s ease;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   6. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    .footer-card h2 {
        font-size: 2.5rem;
    }
    .services-header h2 {
        font-size: 1.8rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .nav-bar, .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-buttons {
        flex-direction: column;
        width: 100%;
    }
    .footer-btn {
        text-align: center;
    }
}

audio {
    display: none !important;
}

.split-screen {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Keeps left and right panels side-by-side */
.split-screen {
    display: flex;
    width: 100%;
    height: calc(100vh - 40px); /* Keeps it fitting perfectly on screen */
    gap: 20px;
}

/* Left panel centering settings */
/* Centering wrapper for the left side */
/* 1. Change align-items to flex-start to push everything to the top */
.left-side {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center; /* Keeps it horizontally centered in the column */
    align-items: flex-start;  /* Pushes content to the top instead of centering vertically */
    padding: 16px 40px 40px 40px; /* Top padding (16px) matches the alignment of the right card */
    box-sizing: border-box;
}

/* 2. Remove the vertical margin centering helper */
.intro-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 24px;               
    max-width: 480px; /* Increased from 420px to give the heading more breathing room */
    width: 100%;
    margin: 0;               
}
.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
    white-space: nowrap;
    transform: translateX(-70px);  /* Adjust this number (e.g., -10px or -15px) until it looks perfect to your eye */
   
}

.hero-bio {
    font-family: 'Inter', sans-serif;
    color:#666666;
    margin: 0;
    line-height: 1.2;
    transform: translateX(-70px);
    letter-spacing: -0.01em;
    font-weight: 400;
    max-width: 480px;
}

/* Right panel settings */
.right-side {
    width: 50%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url('img/WhatsApp\ Image\ 2026-07-13\ at\ 10.34.57\ PM.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.brand-logo {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Overlay Text layouts specs */
.overlay-text {
    color: #ffffff;
    max-width: 540px;
}

.quote {
    font-size: 1.45rem;
    line-height: 1.45;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -0.2px;
}

.author strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 2px;
}

.author span {
    font-size: 0.85rem;
    color: #d1d5db;
}
/* This wrapper ensures the title and paragraph stack vertically */
.intro-container {
    display: flex;
    flex-direction: column; /* Force elements to stack top-to-bottom */
    align-items: flex-start; /* Align text to the left */
    gap: 20px;              /* Creates modern spacing between 'Hi' and the paragraph */
    max-width: 480px;       /* Stops the text from stretching too wide */
    width: 100%;
}

/* Style for the "Hi" heading */
.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    color: var(--text-primary);
}

/* Style for the paragraph below "Hi" */
.hero-bio {
    font-family: 'Inter', sans-serif; /* Clean readable font */
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}
/* Top Welcome Banner */
#top-welcome-banner {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translate(-50%, -100px);
    opacity: 0;
    
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    /* 👇 THIS IS YOUR THIN STROKE 👇 */
    border: 3px solid black; /* 1px thick, very soft dark stroke */
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 24px;
    border-radius: 40px;
    z-index: 99999;
    
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

/* Class added by JavaScript to drop it down */
#top-welcome-banner.slide-down {
    transform: translate(-50%, 0);
    opacity: 1;
}

/* Text styling inside the banner */
.banner-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #121212;
    letter-spacing: -0.01em;
}

/* Sparkle icon style */
.banner-sparkle {
    font-size: 1rem;
    color: #121212;
}
.explore{
    
 display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
    background-color: var(--text-primary);
    border: none;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--bg-main); /* Flips with theme naturally */
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}