/* Creative Blend Portfolio - Styled with James Williams inspiration */

/* ========================================
   THEME SYSTEM & CSS VARIABLES
   ======================================== */

:root {
    /* Dark theme (default) */
    --bg-primary: #000;
    --bg-secondary: rgba(255, 255, 255, 0.05);
    --bg-tertiary: rgba(255, 255, 255, 0.1);
    --text-primary: #fff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-tertiary: rgba(255, 255, 255, 0.6);
    --border-primary: rgba(255, 255, 255, 0.1);
    --border-secondary: rgba(255, 255, 255, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(0, 0, 0, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-color: #fff;
    --gradient-start: rgba(0, 0, 0, 0.8);
    --gradient-end: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] {
    /* Light theme */
    --bg-primary: #fff;
    --bg-secondary: rgba(0, 0, 0, 0.03);
    --bg-tertiary: rgba(0, 0, 0, 0.06);
    --text-primary: #1a1a1a;
    --text-secondary: rgba(0, 0, 0, 0.8);
    --text-tertiary: rgba(0, 0, 0, 0.6);
    --border-primary: rgba(0, 0, 0, 0.1);
    --border-secondary: rgba(0, 0, 0, 0.15);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.1);
    --accent-color: #000;
    --gradient-start: rgba(255, 255, 255, 0.9);
    --gradient-end: rgba(255, 255, 255, 0.6);
}

/* Theme Toggle Button */
.theme-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
    z-index: 1001;
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.theme-toggle:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.theme-toggle svg {
    transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
    transform: scale(1.1);
}

/* Smooth theme transition */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border-bottom-color: var(--border-secondary);
    box-shadow: 0 2px 20px var(--shadow-color);
    padding: 0.5rem 0;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

/* Light theme overrides for contact section */
[data-theme="light"] .section_contact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
}

[data-theme="light"] .section_contact::before {
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
}

[data-theme="light"] .contact_hero-link {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .contact_hero-link:hover {
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .contact_background-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.03));
}

[data-theme="light"] .contact_hover-overlay {
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

[data-theme="light"] .contact_heading {
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .contact_subtitle {
    color: var(--text-secondary);
}

[data-theme="light"] .contact_email-display {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .contact_hero-link:hover .contact_email-display {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .email_text {
    color: var(--text-primary);
}

[data-theme="light"] .email_icon {
    color: var(--text-secondary);
}

[data-theme="light"] .contact_hero-link:hover .email_icon {
    color: var(--text-primary);
}

[data-theme="light"] .contact_option {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .contact_option:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .option_icon {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}

[data-theme="light"] .contact_option:hover .option_icon {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
}

[data-theme="light"] .option_text {
    color: var(--text-primary);
}

/* Light theme overrides for footer */
[data-theme="light"] .site_footer {
    background: rgba(248, 249, 250, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .footer_quote {
    color: var(--text-primary);
    border-left: 3px solid rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .footer_quote-author {
    color: var(--text-secondary);
}

[data-theme="light"] .contact_link {
    color: var(--text-secondary);
}

[data-theme="light"] .contact_link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .contact_address {
    color: var(--text-tertiary);
}

.navbar_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand/Logo */
.navbar_brand {
    flex-shrink: 0;
}

.navbar_logo {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.navbar_logo:hover {
    transform: translateY(-2px);
}

.logo_text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo_subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 2px;
}

/* Desktop Navigation */
.navbar_menu {
    display: flex;
    align-items: center;
}

.navbar_nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav_item {
    position: relative;
}

.nav_link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav_link:hover,
.nav_link.active {
    color: var(--text-primary);
}

.nav_link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav_link:hover::after,
.nav_link.active::after {
    width: 100%;
}

/* CTA Button */
.navbar_cta {
    flex-shrink: 0;
}

.cta_button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta_button:hover {
    background: var(--bg-secondary);
    border-color: var(--border-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.cta_icon {
    display: flex;
    align-items: center;
}

/* Mobile Menu Toggle */
.navbar_toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.toggle_line {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar_toggle.active .toggle_line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar_toggle.active .toggle_line:nth-child(2) {
    opacity: 0;
}

.navbar_toggle.active .toggle_line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile_menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile_menu_content {
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.mobile_menu.active .mobile_menu_content {
    transform: translateY(0);
}

.mobile_nav {
    list-style: none;
    margin: 0 0 3rem 0;
    padding: 0;
}

.mobile_nav_item {
    margin: 1.5rem 0;
}

.mobile_nav_link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: block;
    padding: 1rem;
}

.mobile_nav_link:hover {
    color: var(--text-secondary);
    transform: translateX(10px);
}

.mobile_cta_button {
    display: inline-block;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-primary);
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile_cta_button:hover {
    background: var(--bg-secondary);
    border-color: var(--border-secondary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar_container {
        padding: 0 1rem;
    }
    
    .navbar_menu {
        display: none;
    }
    
    .navbar_cta {
        display: none;
    }
    
    .navbar_toggle {
        display: flex;
    }
    
    .theme-toggle {
        width: 38px;
        height: 38px;
        margin-left: 0.5rem;
    }
    
    .theme-toggle svg {
        width: 16px;
        height: 16px;
    }
    
    .logo_text {
        font-size: 1.2rem;
    }
    
    .logo_subtitle {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .navbar_container {
        padding: 0 1rem;
    }
    
    .logo_text {
        font-size: 1rem;
    }
    
    .logo_subtitle {
        display: none;
    }
    
    .mobile_nav_link {
        font-size: 1.5rem;
    }
}

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 80px;
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
.hero_heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 7rem;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.hero_subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.about_heading {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.about_content {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.home-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.specialise_content {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
}

.latest_title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

/* Layout Components */
.page-wrapper {
    min-height: 100vh;
    position: relative;
}

.padding-global {
    padding-left: 2rem;
    padding-right: 2rem;
}

.container-large {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_menu-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
}

.navbar_logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.navbar_spacer {
    flex: 1;
}

.menu_text-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu_text-link:hover {
    color: var(--text-primary);
}

.navbar_message-wrapper {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-primary);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.navbar_message-wrapper:hover {
    background: var(--bg-tertiary);
}

.icon-embed-medium {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

/* Hero Section */
.section_footer {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_padding-section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.hero_background-image-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 4rem;
}

.hero_background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
    filter: blur(2px);
}


.hero_color-filter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    z-index: 2;
}

.hero_subtitle-wrapper {
    text-align: center;
    position: relative;
    z-index: 3;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.lottie-spacer {
    text-align: center;
    margin-top: 4rem;
}

.scroll-down-arrow {
    font-size: 2rem;
    color: var(--text-tertiary);
    animation: bounce 2s infinite;
}

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

/* Section Styles */
.section_about,
.section_specialise,
.section_latest,
.section_featured-video {
    padding: 4rem 0;
    position: relative;
}

.about_padding-section,
.specialise_padding-section,
.padding-section-latest,
.featured-video_padding-section {
    position: relative;
}

/* Featured Video Section */
.section_featured-video {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.featured-video_wrapper {
    width: 100%;
    max-width: none;
}

.video-embed-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-color);
    border: 1px solid var(--border-primary);
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.about_grid,
.specialise_grid,
.latest_grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about_grid {
    grid-template-columns: 1fr 1fr;
}

.specialise_grid {
    grid-template-columns: 1fr;
    text-align: center;
}

/* Specialization List */
.specialise_list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.specialise_list-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-primary);
}

.specialise_list-item:hover {
    background: var(--bg-tertiary);
    transform: translateY(-5px);
}

.specialise_arrow {
    width: 42px;
    height: 42px;
    margin-right: 1rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.specialise_list-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Portfolio Section */
.portfolio-placeholder {
    display: grid;
    gap: 4rem;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    background: var(--bg-tertiary);
    transform: translateY(-5px);
}

.portfolio-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.portfolio-item:nth-child(even) .portfolio-content {
    order: 2;
}

.portfolio-item:nth-child(even) .portfolio-media {
    order: 1;
}

.portfolio-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.portfolio-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.media-placeholder {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed var(--border-primary);
}

.media-placeholder p {
    color: var(--text-tertiary);
    font-style: italic;
}

/* Footer/Contact Section */
.footer_padding-section {
    padding: 6rem 0;
    position: relative;
    text-align: center;
}

.footer_background-image-wrapper {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 4rem;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer_background-image-wrapper:hover {
    transform: scale(1.02);
}

.hero_background-image.is-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.hero_heading.is-footer {
    position: relative;
    z-index: 3;
    font-size: 4rem;
    margin: 0;
    color: var(--text-primary);
}

.footer-hero-2_color-filter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    z-index: 2;
}

.footer-cta-component {
    margin-top: 3rem;
}

.button.is-secondary.is-v2 {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-primary);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.button.is-secondary.is-v2:hover {
    background: var(--bg-secondary);
    border-color: var(--border-secondary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero_heading {
        font-size: 6rem;
    }
    
    .latest_title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .padding-global {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero_heading {
        font-size: 5rem;
    }
    
    .about_grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .portfolio-item {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item:nth-child(even) .portfolio-content {
        order: 1;
    }
    
    .portfolio-item:nth-child(even) .portfolio-media {
        order: 2;
    }
    
    .specialise_list-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero_heading {
        font-size: 3.5rem;
    }
    
    .about_heading {
        font-size: 2rem;
    }
    
    .home-heading {
        font-size: 2rem;
    }
    
    .latest_title {
        font-size: 2.5rem;
    }
    
    .navbar_container {
        padding: 0 1rem;
    }
    
    .hero_profile-image {
        width: 150px;
        height: 150px;
    }
    
    .portfolio-item {
        padding: 2rem;
    }
    
    .section_featured-video {
        padding: 3rem 0;
    }
    
    .video-embed-container {
        border-radius: 8px;
        box-shadow: 0 10px 20px var(--shadow-color);
    }
}

@media (max-width: 479px) {
    .padding-global {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero_heading {
        font-size: 2.5rem;
    }
    
    .hero_subtitle {
        font-size: 1.2rem;
    }
    
    .about_heading {
        font-size: 1.8rem;
    }
    
    .about_content,
    .specialise_content {
        font-size: 1rem;
    }
    
    .specialise_list-item {
        padding: 1rem;
    }
    
    .portfolio-item {
        padding: 1.5rem;
    }
    
    .hero_heading.is-footer {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.w-inline-block {
    display: inline-block;
}

.w-button {
    cursor: pointer;
    border: none;
    outline: none;
}

.overflow-hidden {
    overflow: hidden;
}

/* Animation Support */
[text-split] {
    opacity: 0;
}

.w-mod-js [text-split] {
    opacity: 1;
}

/* Color Filter */
.color-filter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.3s ease;
}

/* ========================================
   VIDEO SHOWCASE SECTION
   ======================================== */

/* Portfolio Filter Tabs */
.portfolio-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 2px solid var(--border-primary);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-tab:hover,
.filter-tab.active {
    border-color: var(--accent-color);
    color: var(--text-primary);
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

/* Video Showcase Grid */
.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.video-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-primary);
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
    height: fit-content;
}

.video-item.featured {
    /* Remove grid-column span to make all items same size */
}

.video-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--border-secondary);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.video-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Video Container & Responsive Embed */
.video-container {
    position: relative;
    width: 100%;
}

.video-embed-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
}

.video-embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Video Overlay & Info */
.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, var(--glass-bg));
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
    transform: translateY(0);
}

.video-info {
    color: var(--text-primary);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.video-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.video-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Client Showcase Section */
.client-showcase-section {
    margin-top: 6rem;
    text-align: center;
}

.client-showcase-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* 3x3 Client Logos Grid Layout */
.client-logos-grid-3x3 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.client-logos-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    border-color: var(--border-secondary);
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.client-logo-placeholder {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .video-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-item {
        min-width: unset;
    }
    
    .portfolio-filter-tabs {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .video-overlay {
        padding: 1.5rem;
    }
    
    .video-title {
        font-size: 1.1rem;
    }
    
    .client-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .client-logos-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .client-logo-item {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .video-showcase-grid {
        gap: 1rem;
    }
    
    .portfolio-filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-tab {
        width: 200px;
        text-align: center;
    }
    
    .video-overlay {
        padding: 1rem;
    }
    
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-logos-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .client-logos-grid-3x3 {
        gap: 1.5rem;
    }
}

/* Animation Classes for GSAP */
.video-item-animate {
    opacity: 0;
    transform: translateY(50px);
}

.client-logo-animate {
    opacity: 0;
    transform: translateY(30px);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.section_services {
    background: var(--bg-secondary);
    padding: 6rem 0 4rem 0;
}

.services_padding-section {
    padding: 0 2rem;
}

.services_header {
    text-align: center;
    margin-bottom: 6rem;
}

.services_title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.services_subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 8rem;
}

/* 2x2 Services Grid Layout */
.services_grid-2x2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 8rem;
}

.services_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service_item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.service_item:hover {
    background: var(--bg-secondary);
    border-color: var(--border-secondary);
    transform: translateY(-5px);
}

.service_icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 12px;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.service_title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.service_features {
    list-style: none;
    padding: 0;
}

.service_features li {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-primary);
    position: relative;
    padding-left: 1.5rem;
}

.service_features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--text-primary);
    font-weight: bold;
}

.service_features li:last-child {
    border-bottom: none;
}

/* Process Section */
.process_section {
    margin-bottom: 6rem;
}

.process_title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

/* 2x2 Process Grid Layout */
.process_grid-2x2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.process_step {
    text-align: center;
    position: relative;
}

.process_number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border: 2px solid var(--border-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.process_step:hover .process_number {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-color: var(--border-secondary);
    transform: scale(1.1);
}

.process_step_title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

/* Services CTA */
.services_cta {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 4rem;
    max-width: 600px;
    margin: 0 auto;
}

.services_cta_title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.button.is-primary {
    background: var(--accent-color);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.button.is-primary:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Responsive Design for Services */
@media screen and (max-width: 768px) {
    .section_services {
        padding: 4rem 0;
    }
    
    .services_padding-section {
        padding: 0 1rem;
    }
    
    .services_title {
        font-size: 2.5rem;
    }
    
    .services_grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .services_grid-2x2 {
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .services_row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service_item {
        padding: 2rem;
    }
    
    .process_grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process_grid-2x2 {
        gap: 2rem;
    }
    
    .process_row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process_title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services_cta {
        padding: 2rem;
        margin: 2rem 1rem 0;
    }
    
    .services_cta_title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .services_title {
        font-size: 2rem;
    }
    
    .service_item {
        padding: 1.5rem;
    }
    
    .services_cta {
        padding: 1.5rem;
    }
}

/* ========================================
   ENHANCED ABOUT SECTION
   ======================================== */

.section_about {
    background: rgba(255, 255, 255, 0.01);
    padding: 4rem 0 3rem 0;
}

.about_padding-section {
    padding: 0 2rem;
}

.section_heading {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: center;
}

/* Main Bio Section */
.about_intro {
    margin-bottom: 4rem;
}

/* Unbalanced Grid Layout */
.about_unbalanced-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 3rem 4rem;
    grid-template-areas: 
        "bio profile"
        "skills skills"
        "experience experience";
}

/* Large Bio Section (Top Left - 2/3 width) */
.about_bio-large {
    grid-area: bio;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(10px);
}

.about_text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about_text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Profile Image (Top Right - 1/3 width) */
.about_profile-compact {
    grid-area: profile;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(10px);
    text-align: center;
}

.profile_highlight {
    padding-top: 1rem;
    border-top: 1px solid var(--border-primary);
}

.profile_tagline {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    letter-spacing: 0.2px;
    text-align: center;
    position: relative;
    font-feature-settings: 'liga' on, 'kern' on;
}

.profile_tagline::before {
    content: '"';
    font-size: 2rem;
    color: var(--text-tertiary);
    position: absolute;
    left: -0.6rem;
    top: -0.3rem;
    font-family: 'Crimson Text', serif;
    font-weight: 400;
}

.profile_tagline::after {
    content: '"';
    font-size: 2rem;
    color: var(--text-tertiary);
    position: absolute;
    right: -0.6rem;
    bottom: -0.3rem;
    font-family: 'Crimson Text', serif;
    font-weight: 400;
}

/* Skills Section (Full Width) */
.about_skills-full {
    grid-area: skills;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(10px);
}

.skills_grid-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Experience Section (Full Width) */
.about_experience-full {
    grid-area: experience;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.experience_grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Trusted By Section */
.about_trusted-full {
    grid-area: trusted;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(10px);
}

.services_trusted-section {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
}

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

/* 3x2 Trusted Logos Grid Layout */
.trusted_logos-grid-3x2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trusted_logos-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.trusted_logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trusted_logo-item:hover {
    background: var(--bg-secondary);
    border-color: var(--border-secondary);
    transform: translateY(-2px);
}

.trusted_logo-item svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Responsive adjustments for 3x2 grid */
@media screen and (max-width: 1024px) {
    .trusted_logos-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .trusted_logos-row {
        grid-template-columns: 1fr;
    }
    
    .trusted_logos-grid-3x2 {
        gap: 1.5rem;
    }
    
    .trusted_logos-row {
        gap: 1.5rem;
    }
}

/* Experience Grid Columns */
.experience_grid-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.experience_column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

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

.profile_image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.profile_image-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.profile_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile_image-wrapper:hover .profile_image {
    transform: scale(1.05);
}

/* Section Headings */
.subsection_heading {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Experience Section */
.experience_section {
    margin-bottom: 6rem;
}

.experience_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.experience_item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.experience_item:hover {
    background: var(--bg-secondary);
    border-color: var(--border-secondary);
    transform: translateY(-5px);
}

/* Compact Experience Grid for Unbalanced Layout */
.experience_grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.experience_grid-compact .experience_item {
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
}

.experience_content {
    flex: 1;
}

/* Education and Interests Flex Layout */
.education_interests-flex {
    display: flex;
    gap: 3rem;
}

.education_column,
.interests_column {
    flex: 1;
}

.education_items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience_icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.experience_title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.experience_description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
    display: flex;
    align-items: center;
}

/* Skills Section */
.skills_section {
    margin-bottom: 6rem;
}

.skills_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.skills_column {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 3rem;
}

.skills_list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill_item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.skill_item:hover {
    background: var(--bg-secondary);
    border-color: var(--border-secondary);
    transform: translateY(-2px);
}

.skill_header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
}

.skill_logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill_logo svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.skill_name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
}

.skill_proficiency {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill_level {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.skill_bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--text-secondary));
    border-radius: 4px;
    transition: width 0.8s ease;
    width: 0%;
}

.skill_bar.expert {
    /* Width animated by JavaScript to 90% */
}

.skill_bar.advanced {
    /* Width animated by JavaScript to 75% */
}

.skill_bar.intermediate {
    /* Width animated by JavaScript to 60% */
}

/* Interest Tags */
.interest_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.interest_tag {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.interest_tag:hover {
    background: var(--bg-secondary);
    border-color: var(--border-secondary);
    transform: translateY(-2px);
}

/* Education Section */
.education_section {
    margin-bottom: 4rem;
}

.education_grid {
    display: grid;
    gap: 2rem;
}

.education_item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.education_item:hover {
    background: var(--bg-secondary);
    border-color: var(--border-secondary);
}

.education_period {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.education_degree {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.education_institution {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .about_unbalanced-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "bio"
            "profile"
            "skills"
            "experience";
        gap: 2rem;
    }
    
    .about_bio-large,
    .about_profile-compact,
    .about_skills-full,
    .about_experience-full {
        padding: 2rem;
    }
    
    .services_trusted-section {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .skills_grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trusted_logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .experience_grid-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .education_interests-flex {
        flex-direction: column;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .section_about {
        padding: 4rem 0;
    }
    
    .about_padding-section {
        padding: 0 1rem;
    }
    
    .section_heading {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .about_content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about_bio-large,
    .about_profile-compact,
    .about_skills-full,
    .about_experience-full {
        padding: 1.5rem;
    }
    
    .services_trusted-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .skills_grid-horizontal {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trusted_logos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .experience_grid-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about_unbalanced-grid {
        gap: 1.5rem;
    }
    
    .profile_image-wrapper {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .experience_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .skills_grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skills_column {
        padding: 2rem;
    }
    
    .education_item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================
   ENHANCED CONTACT SECTION
   ======================================== */

.section_contact {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
    padding: 4rem 0 8rem 0;
    position: relative;
    overflow: hidden;
}

.section_contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact_padding-section {
    position: relative;
    z-index: 2;
}

/* Main Contact Hero */
.contact_hero-wrapper {
    margin-bottom: 4rem;
}

.contact_hero-link {
    display: block;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.contact_hero-link:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact_background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact_hero-link:hover .contact_background-overlay {
    opacity: 1;
}

.contact_hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact_hero-link:hover .contact_hover-overlay {
    opacity: 1;
}

.contact_content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.contact_heading {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact_subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem 0;
    font-weight: 300;
}

.contact_email-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.contact_hero-link:hover .contact_email-display {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.email_text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.email_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact_hero-link:hover .email_icon {
    color: #fff;
    transform: translateX(4px);
}

/* Quick Contact Options */
.contact_options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact_option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact_option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.contact_option.location_info {
    cursor: default;
}

.contact_option.location_info:hover {
    transform: none;
}

.option_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact_option:hover .option_icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.1);
}

.option_text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Contact Section Responsive */
@media screen and (max-width: 1024px) {
    .contact_hero-link {
        padding: 3rem 2rem;
    }
    
    .contact_heading {
        font-size: 3rem;
    }
    
    .contact_options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact_option {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }
    
    .option_icon {
        flex-shrink: 0;
    }
}

@media screen and (max-width: 768px) {
    .section_contact {
        padding: 4rem 0;
    }
    
    .contact_hero-link {
        padding: 2rem;
    }
    
    .contact_heading {
        font-size: 2.5rem;
    }
    
    .contact_subtitle {
        font-size: 1rem;
    }
    
    .contact_email-display {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .email_text {
        font-size: 1rem;
        text-align: center;
        word-break: break-all;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site_footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer_content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.footer_quote-section {
    text-align: left;
}

.footer_quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 2rem;
}

.footer_quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 2rem;
}

.footer_contact-section {
    text-align: right;
}

.footer_contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-media-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-secondary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* ========================================
   VIDEO THUMBNAIL STYLES
   ======================================== */

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0.9;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-thumbnail-wrapper:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

/* Video Player State */
.video-item.playing .video-thumbnail-wrapper {
    padding-bottom: 56.25%;
}

.video-item.playing .video-thumbnail,
.video-item.playing .play-button,
.video-item.playing .video-duration {
    display: none;
}

.video-item.playing .video-player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Loading state */
.video-thumbnail-wrapper.loading {
    background: linear-gradient(
        90deg,
        var(--bg-secondary) 25%,
        var(--bg-tertiary) 50%,
        var(--bg-secondary) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive thumbnail adjustments */
@media screen and (max-width: 768px) {
    .play-button svg {
        width: 50px;
        height: 50px;
    }
    
    .video-duration {
        font-size: 0.7rem;
        padding: 1px 4px;
    }
}

.contact_item {
    margin: 0;
}

.contact_link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact_link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.contact_address {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Footer Responsive */
@media screen and (max-width: 768px) {
    .site_footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer_content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer_quote-section,
    .footer_contact-section {
        text-align: center;
    }
    
    .social-media-links {
        justify-content: center;
    }
    
    .footer_quote {
        font-size: 1.4rem;
        border-left: none;
        border-top: 3px solid rgba(255, 255, 255, 0.3);
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .footer_quote-author {
        margin-left: 0;
    }
    
    .subsection_heading {
        font-size: 1.5rem;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .about_intro {
        margin-bottom: 3rem;
    }
    
    .experience_section,
    .skills_section,
    .education_section {
        margin-bottom: 3rem;
    }
    
    .experience_item,
    .skills_column {
        padding: 1.5rem;
    }
    
    .profile_image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .interest_tags {
        justify-content: center;
    }
    
    .skill_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .skill_level {
        width: 100%;
    }
}