/*
Theme Name: Ali Musa Portfolio
Theme URI: https://alimusa.so
Author: Ali Musa
Author URI: https://github.com/alimusa80
Description: Professional portfolio theme optimized for performance and accessibility. Features unified gradient backgrounds, cross-browser compatibility, GPU-accelerated animations, and comprehensive security measures. Production-ready with complete debug code removal.
Version: 1.1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alimusa-portfolio
Domain Path: /languages
Tags: portfolio, blog, one-column, two-columns, custom-logo, custom-menu, featured-images, footer-widgets, custom-colors, custom-background, theme-options, translation-ready, accessibility-ready, threaded-comments, block-styles, wide-blocks, editor-style, full-site-editing, performance-optimized, cross-browser-compatible
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
Network: false
Update URI: false
*/

/* Reset and Base Styles - Cross-browser compatibility */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Normalize browser defaults */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Fix for Safari backdrop-filter */
@supports (-webkit-backdrop-filter: blur(10px)) {
    .page-preloader,
    .lightbox-overlay,
    .floating-share-buttons {
        -webkit-backdrop-filter: blur(10px);
    }
}

:root {
    /* Color Palette - Dark theme with yellow accents */
    --background: hsl(210, 11%, 7%);
    --foreground: hsl(0, 0%, 98%);
    --card: hsl(210, 11%, 9%);
    --card-foreground: hsl(0, 0%, 98%);
    --primary: hsl(45, 93%, 58%);
    --primary-foreground: hsl(210, 11%, 7%);
    --secondary: hsl(210, 11%, 15%);
    --secondary-foreground: hsl(0, 0%, 98%);
    --muted: hsl(210, 11%, 15%);
    --muted-foreground: hsl(0, 0%, 65%);
    --accent: hsl(45, 93%, 58%);
    --border: hsl(210, 11%, 20%);
    
    /* Custom design tokens */
    --hero-gradient: linear-gradient(135deg, hsl(210, 11%, 7%), hsl(210, 11%, 12%));
    --card-gradient: linear-gradient(145deg, hsl(210, 11%, 9%), hsl(210, 11%, 12%));
    --glow-primary: 0 0 40px hsl(45, 93%, 58%, 0.3);
    --shadow-card: 0 10px 30px -10px hsl(0, 0%, 0%, 0.5);
    
    /* Animation variables */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--hero-gradient);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Large Desktop Containers */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 2rem;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1540px;
        padding: 0 2.5rem;
    }
}
/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    backdrop-filter: blur(10px);
    background: hsl(210, 11%, 9%, 0.8);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .header-nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 2rem;
    }
}

.logo {
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--foreground);
}

.logo .highlight {
    color: var(--primary);
}

/* Logo positioning */
.logo-container {
    justify-self: start;
}

/* Desktop Navigation - Center */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    justify-self: center;
}

/* Desktop Actions - Right */
.desktop-actions {
    display: none;
    align-items: center;
    gap: 1rem;
    justify-self: end;
}

/* Mobile Menu Toggle - Show on mobile only */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile elements - Show on mobile only */
.mobile-only {
    display: block;
}

/* Desktop responsive styles */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex !important;
    }
    .desktop-actions {
        display: flex !important;
    }
    .mobile-only {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Navigation Menu Styles */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a,
.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-link:hover {
    color: var(--primary);
}

.nav-menu a:focus,
.nav-link:focus {
    outline: none;
    color: var(--primary);
}

/* Current menu item */
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: var(--primary);
}

/* Header secondary menu */
.header-secondary-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-secondary-menu li {
    margin: 0;
}

.header-secondary-menu a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
}

/* Button Styles */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: scale(1.05);
    transition: var(--transition-bounce);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--hero-gradient);
    padding: 5rem 0;
}

@media (min-width: 1400px) {
    .hero {
        padding: 6rem 0;
    }
}
.hero-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

/* Desktop layout for hero section */
@media (min-width: 768px) {
    .hero .hero-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 4rem !important;
        text-align: left !important;
        align-items: center !important;
    }
}

@media (min-width: 1024px) {
    .hero .hero-grid {
        grid-template-columns: 1.2fr 1fr !important;
        gap: 5rem !important;
    }
}

@media (min-width: 1400px) {
    .hero .hero-grid {
        grid-template-columns: 1.3fr 1fr !important;
        gap: 6rem !important;
    }
}

@media (min-width: 1600px) {
    .hero .hero-grid {
        grid-template-columns: 1.4fr 1fr !important;
        gap: 7rem !important;
    }
}
.hero-content {
    animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) {
    .hero .hero-content {
        text-align: left !important;
        max-width: none !important;
    }
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.availability-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1600px) {
    .hero-title {
        font-size: 5rem;
    }
}
.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    font-weight: normal;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 2.25rem;
    }
}

@media (min-width: 1400px) {
    .hero-subtitle {
        font-size: 2.5rem;
    }
}

@media (min-width: 1600px) {
    .hero-subtitle {
        font-size: 2.75rem;
    }
}
.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    line-height: 1.7;
    margin: 1.5rem 0 2rem 0;
}

@media (min-width: 1400px) {
    .hero-description {
        font-size: 1.25rem;
        max-width: 36rem;
        line-height: 1.8;
    }
}

@media (min-width: 1600px) {
    .hero-description {
        font-size: 1.375rem;
        max-width: 40rem;
    }
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero .hero-actions {
        justify-content: flex-start !important;
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero .stats-grid {
        text-align: left !important;
        gap: 2rem !important;
    }
}

.stat-item {
    text-align: center;
}

@media (min-width: 768px) {
    .hero .stat-item {
        text-align: left !important;
    }
}

@media (min-width: 1024px) {
    .stat-item {
        text-align: left;
    }
}

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero .social-links {
        justify-content: flex-start !important;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

/* Profile Image */
.hero-image {
    display: flex;
    justify-content: center;
    animation: slideUp 1s ease-out 0.3s both;
}

@media (min-width: 1024px) {
    .hero-image {
        justify-content: end;
    }
}

.profile-container {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    padding: 4px;
    background: #ffd700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .profile-image {
        width: 24rem;
        height: 24rem;
    }
}

@media (min-width: 1400px) {
    .profile-image {
        width: 28rem;
        height: 28rem;
    }
}

@media (min-width: 1600px) {
    .profile-image {
        width: 32rem;
        height: 32rem;
    }
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.profile-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Decorative elements */
.profile-container::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 6rem;
    height: 6rem;
    background: hsl(45, 93%, 58%, 0.2);
    border-radius: 50%;
    filter: blur(1rem);
}

.profile-container::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: hsl(45, 93%, 58%, 0.1);
    border-radius: 50%;
    filter: blur(2rem);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(4rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Mobile Menu - Styles moved to main header section above */

.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
    .mobile-menu-content {
        display: none !important;
    }
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-menu a,
.mobile-nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
    font-weight: 500;
}

.mobile-nav-menu a:hover,
.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-nav-menu .current-menu-item > a,
.mobile-nav-menu .current_page_item > a {
    color: var(--primary);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
}

.mobile-btn {
    justify-content: center;
    width: 100%;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1400px) {
    .section-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1600px) {
    .section-title {
        font-size: 4rem;
    }
}
.section-title .highlight {
    color: var(--primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--hero-gradient);
}

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

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}
.about-content {
    space-y: 2rem;
}

.about-text p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.skills-list {
    margin: 2rem 0;
}

.skill-item {
    margin-bottom: 2rem;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-weight: 500;
    color: var(--foreground);
}

.skill-percentage {
    font-weight: 600;
    color: var(--primary);
}

.skill-bar {
    width: 100%;
    height: 0.5rem;
    background: var(--secondary);
    border-radius: 9999px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary);
    border-radius: 9999px;
    transition: width 1s ease-in-out;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-card {
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    box-shadow: var(--shadow-card);
}

.feature-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--hero-gradient);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1400px) {
    .services-section {
        padding: 6rem 0 !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 3.5rem !important;
        max-width: 70rem !important;
    }
    
    .service-card {
        padding: 2.5rem !important;
    }
    
    .service-title {
        font-size: 1.375rem !important;
    }
    
    .service-description {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }
}

@media (min-width: 1600px) {
    .services-section {
        padding: 7rem 0 !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4rem !important;
        max-width: 80rem !important;
    }
    
    .service-card {
        padding: 3rem !important;
    }
    
    .service-title {
        font-size: 1.5rem !important;
    }
    
    .service-features li {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
}
.service-card {
    padding: 2rem;
    background: var(--card-gradient);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.service-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-icon {
    color: var(--primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    color: var(--accent);
}

.service-price {
    padding: 0.25rem 0.75rem;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.service-features svg {
    color: var(--primary);
    flex-shrink: 0;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 0;
    background: var(--hero-gradient);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1400px) {
    .portfolio-section {
        padding: 6rem 0 !important;
    }
    
    .portfolio-filters {
        margin-bottom: 4rem !important;
        gap: 1.5rem !important;
    }
    
    .filter-btn {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4rem !important;
        max-width: 80rem !important;
        margin: 0 auto !important;
    }
    
    .portfolio-image img {
        height: 16rem !important;
    }
    
    .portfolio-content {
        padding: 2.5rem !important;
    }
    
    .portfolio-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .portfolio-title a {
        color: var(--foreground) !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
    }
    
    .portfolio-title a:hover {
        color: var(--primary) !important;
    }
    
    .portfolio-description {
        font-size: 1.125rem !important;
        line-height: 1.7 !important;
        margin-bottom: 2rem !important;
        color: var(--muted-foreground) !important;
    }
    
    .portfolio-links {
        display: flex !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .portfolio-links .btn {
        flex: 1 !important;
        justify-content: center !important;
    }
}

@media (min-width: 1600px) {
    .portfolio-section {
        padding: 7rem 0 !important;
    }
    
    .portfolio-filters {
        margin-bottom: 5rem !important;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 5rem !important;
        max-width: 90rem !important;
    }
    
    .portfolio-image img {
        height: 18rem !important;
    }
    
    .portfolio-content {
        padding: 3rem !important;
    }
    
    .portfolio-title {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .portfolio-description {
        font-size: 1.25rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .portfolio-links {
        gap: 1.5rem !important;
    }
    
    .portfolio-links .btn {
        padding: 1rem 2rem !important;
        font-size: 1.125rem !important;
    }
    
    .portfolio-github-link {
        padding: 1rem !important;
        min-width: 3rem !important;
        height: 3rem !important;
    }
}
.portfolio-item {
    background: var(--card-gradient);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.portfolio-item:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: hsl(0, 0%, 0%, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.portfolio-github {
    border-color: white;
    color: white;
}

.portfolio-github:hover {
    background: white;
    color: black;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.portfolio-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.25rem 0.5rem;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.portfolio-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.portfolio-links .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-github-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.portfolio-github-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}

.portfolio-cta p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--hero-gradient);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

@media (min-width: 1400px) {
    .contact-section {
        padding: 6rem 0 !important;
    }
    
    .contact-grid {
        gap: 6rem !important;
        max-width: 80rem !important;
    }
    
    .contact-form-container {
        padding: 3rem !important;
    }
    
    .contact-form-title {
        font-size: 1.75rem !important;
        margin-bottom: 2rem !important;
    }
    
    .contact-info-title {
        font-size: 1.75rem !important;
    }
    
    .contact-info-item {
        padding: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .contact-info-label {
        font-size: 1rem !important;
    }
    
    .contact-info-value {
        font-size: 1.125rem !important;
    }
}

@media (min-width: 1600px) {
    .contact-section {
        padding: 7rem 0 !important;
    }
    
    .contact-grid {
        gap: 7rem !important;
        max-width: 90rem !important;
    }
    
    .contact-form-container {
        padding: 3.5rem !important;
    }
    
    .contact-form-title {
        font-size: 2rem !important;
    }
    
    .contact-info-title {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .contact-info-item {
        padding: 1.5rem !important;
    }
    
    .contact-info-label {
        font-size: 1.125rem !important;
    }
    
    .contact-info-value {
        font-size: 1.25rem !important;
    }
}
.contact-form-container {
    background: var(--card-gradient);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(45, 93%, 58%, 0.1);
}

.contact-submit {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

.contact-info-item:hover {
    border-color: var(--primary);
}

.contact-info-icon {
    color: var(--primary);
    transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-info-icon {
    color: var(--accent);
}

.contact-info-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-info-value {
    font-weight: 500;
    color: var(--foreground);
}

.contact-info-value a {
    color: inherit;
    text-decoration: none;
}

.social-section {
    margin-top: 1rem;
}

.social-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.ready-to-start {
    padding: 1.5rem;
    background: hsl(45, 93%, 58%, 0.1);
    border: 1px solid hsl(45, 93%, 58%, 0.2);
    border-radius: 0.5rem;
}

.ready-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.ready-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
}

.footer-main {
    padding: 4rem 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 24rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-logo .highlight {
    color: var(--primary);
}

.footer-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-menu a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.heart-icon {
    color: var(--primary);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Page Builder Support */
.page-content {
    padding-top: 0;
}

.page-article {
    margin-bottom: 0;
}

.page-content-wrapper {
    min-height: 50vh;
}

.page-builder-content {
    width: 100%;
}

/* WPBakery Page Builder Support */
.vc-page .hero {
    display: none;
}

.vc_row {
    margin-bottom: 0 !important;
}

.vc_column_container {
    padding: 15px;
}

/* Full width content */
.full-width-content-wrapper {
    width: 100%;
}

.full-width-content-wrapper .vc_row[data-vc-full-width="true"] {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}

/* Page templates */
.page-template-page-blank .site-header,
.page-template-page-blank .site-footer {
    display: none;
}

.blank-page-content {
    min-height: 100vh;
    width: 100%;
}

/* Page header */
.page-header {
    padding: 2rem 0;
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin: 0;
}

/* Gutenberg Blocks */
.wp-block-group {
    background: var(--card);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    margin: 2rem 0;
}

.wp-block-columns {
    gap: 2rem;
}

.wp-block-column {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.wp-block-button .wp-block-button__link {
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.wp-block-button .wp-block-button__link:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Color classes */
.has-primary-color {
    color: var(--primary) !important;
}

.has-primary-background-color {
    background-color: var(--primary) !important;
}

.has-dark-bg-color {
    color: var(--background) !important;
}

.has-dark-bg-background-color {
    background-color: var(--background) !important;
}

.has-light-text-color {
    color: var(--foreground) !important;
}

.has-light-text-background-color {
    background-color: var(--foreground) !important;
}

.has-muted-text-color {
    color: var(--muted-foreground) !important;
}

.has-muted-text-background-color {
    background-color: var(--muted-foreground) !important;
}

/* No content page */
.no-content {
    text-align: center;
    padding: 4rem 2rem;
}

.no-content h2 {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.no-content p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* Responsive */

/* Large Desktop Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
    }
    
    .hero-title {
        font-size: 4.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.5rem !important;
    }
    
    .hero-description {
        font-size: 1.125rem !important;
    }
    
    .profile-image {
        width: 28rem !important;
        height: 28rem !important;
    }
    
    /* Section titles for all sections */
    .section-title {
        font-size: 2.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .section-subtitle {
        font-size: 1.25rem !important;
        margin-bottom: 3rem !important;
    }
    
    /* General section spacing */
    .section {
        padding: 6rem 0 !important;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1540px !important;
    }
    
    .hero .hero-grid {
        grid-template-columns: 1.2fr 1fr !important;
        gap: 6rem !important;
        align-items: center !important;
    }
    
    .hero-title {
        font-size: 5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.75rem !important;
    }
    
    .profile-image {
        width: 32rem !important;
        height: 32rem !important;
    }
    
    /* Section titles for all sections */
    .section-title {
        font-size: 3rem !important;
        margin-bottom: 2rem !important;
    }
    
    .section-subtitle {
        font-size: 1.375rem !important;
        margin-bottom: 4rem !important;
    }
    
    /* General section spacing */
    .section {
        padding: 7rem 0 !important;
    }
}
/* Tablet and Desktop */
@media (min-width: 768px) {
    .hero .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-actions {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero .hero-grid {
        gap: 5rem;
    }
    
    .profile-image {
        width: 24rem;
        height: 24rem;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - CONSOLIDATED MEDIA QUERIES
   ========================================================================== */

/* Large Desktop Screens - 1400px+ */
@media (min-width: 1400px) {
    /* Container & General */
    .container {
        max-width: 1320px !important;
    }
    
    .section {
        padding: 6rem 0 !important;
    }
    
    .section-title {
        font-size: 2.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .section-subtitle {
        font-size: 1.25rem !important;
        margin-bottom: 3rem !important;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 4.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.5rem !important;
    }
    
    .hero-description {
        font-size: 1.125rem !important;
    }
    
    .profile-image {
        width: 28rem !important;
        height: 28rem !important;
    }
    
    /* About Section */
    .about-section {
        padding: 6rem 0 !important;
    }
    
    .about-grid {
        gap: 6rem !important;
    }
    
    .about-text p {
        font-size: 1.125rem !important;
        line-height: 1.8 !important;
    }
    
    /* Services Section */
    .services-section {
        padding: 6rem 0 !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 3.5rem !important;
        max-width: 70rem !important;
    }
    
    .service-card {
        padding: 2.5rem !important;
    }
    
    .service-title {
        font-size: 1.375rem !important;
    }
    
    .service-description {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }
    
    /* Portfolio Section */
    .portfolio-section {
        padding: 6rem 0 !important;
    }
    
    .portfolio-filters {
        margin-bottom: 4rem !important;
        gap: 1.5rem !important;
    }
    
    .filter-btn {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4rem !important;
        max-width: 80rem !important;
        margin: 0 auto !important;
    }
    
    .portfolio-image img {
        height: 16rem !important;
    }
    
    .portfolio-content {
        padding: 2.5rem !important;
    }
    
    .portfolio-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .portfolio-description {
        font-size: 1.125rem !important;
        line-height: 1.7 !important;
        margin-bottom: 2rem !important;
    }
    
    .portfolio-links {
        gap: 1rem !important;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 6rem 0 !important;
    }
    
    .contact-grid {
        gap: 6rem !important;
        max-width: 80rem !important;
    }
    
    .contact-form-container {
        padding: 3rem !important;
    }
    
    .contact-form-title {
        font-size: 1.75rem !important;
        margin-bottom: 2rem !important;
    }
    
    .contact-info-title {
        font-size: 1.75rem !important;
    }
    
    .contact-info-item {
        padding: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Extra Large Desktop - 1600px+ */
@media (min-width: 1600px) {
    /* Container & General */
    .container {
        max-width: 1540px !important;
    }
    
    .section {
        padding: 7rem 0 !important;
    }
    
    .section-title {
        font-size: 3rem !important;
        margin-bottom: 2rem !important;
    }
    
    .section-subtitle {
        font-size: 1.375rem !important;
        margin-bottom: 4rem !important;
    }
    
    /* Hero Section */
    .hero .hero-grid {
        grid-template-columns: 1.2fr 1fr !important;
        gap: 6rem !important;
        align-items: center !important;
    }
    
    .hero-title {
        font-size: 5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.75rem !important;
    }
    
    .profile-image {
        width: 32rem !important;
        height: 32rem !important;
    }
    
    /* About Section */
    .about-section {
        padding: 7rem 0 !important;
    }
    
    .about-grid {
        gap: 7rem !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
    
    .feature-card {
        padding: 2rem !important;
    }
    
    /* Services Section */
    .services-section {
        padding: 7rem 0 !important;
    }
    
    .services-grid {
        gap: 4rem !important;
        max-width: 80rem !important;
    }
    
    .service-card {
        padding: 3rem !important;
    }
    
    .service-title {
        font-size: 1.5rem !important;
    }
    
    .service-features li {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Portfolio Section */
    .portfolio-section {
        padding: 7rem 0 !important;
    }
    
    .portfolio-filters {
        margin-bottom: 5rem !important;
    }
    
    .portfolio-grid {
        gap: 5rem !important;
        max-width: 90rem !important;
    }
    
    .portfolio-image img {
        height: 18rem !important;
    }
    
    .portfolio-content {
        padding: 3rem !important;
    }
    
    .portfolio-title {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .portfolio-description {
        font-size: 1.25rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .portfolio-links {
        gap: 1.5rem !important;
    }
    
    .portfolio-links .btn {
        padding: 1rem 2rem !important;
        font-size: 1.125rem !important;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 7rem 0 !important;
    }
    
    .contact-grid {
        gap: 7rem !important;
        max-width: 90rem !important;
    }
    
    .contact-form-container {
        padding: 3.5rem !important;
    }
    
    .contact-form-title {
        font-size: 2rem !important;
    }
    
    .contact-info-title {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .contact-info-item {
        padding: 1.5rem !important;
    }
}

/* Ultra Wide Screens - 1920px+ */
@media (min-width: 1920px) {
    /* Container & General */
    .container {
        max-width: 1800px !important;
    }
    
    .section {
        padding: 8rem 0 !important;
    }
    
    .section-title {
        font-size: 3.5rem !important;
        margin-bottom: 2.5rem !important;
        line-height: 1.1 !important;
    }
    
    .section-subtitle {
        font-size: 1.5rem !important;
        margin-bottom: 5rem !important;
    }
    
    /* Hero Section */
    .hero .hero-grid {
        grid-template-columns: 1.5fr 1fr !important;
        gap: 8rem !important;
        align-items: center !important;
        display: grid !important;
    }
    
    .hero-title {
        font-size: 5.5rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtitle {
        font-size: 2rem !important;
    }
    
    .hero-description {
        font-size: 1.25rem !important;
        max-width: none !important;
    }
    
    .hero-actions {
        margin-top: 3rem !important;
    }
    
    .profile-image {
        width: 36rem !important;
        height: 36rem !important;
    }
    
    .hero-content {
        padding-right: 2rem !important;
    }
    
    /* About Section */
    .about-section {
        padding: 8rem 0 !important;
    }
    
    .about-grid {
        gap: 8rem !important;
        grid-template-columns: 1.2fr 1fr !important;
    }
    
    .about-text p {
        font-size: 1.25rem !important;
        margin-bottom: 2rem !important;
    }
    
    .features-grid {
        gap: 2.5rem !important;
    }
    
    .feature-card {
        padding: 2.5rem !important;
    }
    
    .feature-title {
        font-size: 1.25rem !important;
    }
    
    /* Services Section */
    .services-section {
        padding: 8rem 0 !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6rem !important;
        max-width: 90rem !important;
    }
    
    .service-card {
        padding: 3.5rem !important;
    }
    
    .service-title {
        font-size: 1.625rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-description {
        font-size: 1.125rem !important;
        margin-bottom: 2rem !important;
    }
    
    .service-features li {
        font-size: 1.125rem !important;
    }
    
    .services-cta {
        margin-top: 4rem !important;
    }
    
    .services-cta p {
        font-size: 1.125rem !important;
    }
    
    /* Portfolio Section */
    .portfolio-section {
        padding: 8rem 0 !important;
    }
    
    .portfolio-filters {
        margin-bottom: 6rem !important;
        gap: 2rem !important;
    }
    
    .filter-btn {
        padding: 1.25rem 2.5rem !important;
        font-size: 1.125rem !important;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6rem !important;
        max-width: 100rem !important;
    }
    
    .portfolio-image img {
        height: 20rem !important;
    }
    
    .portfolio-content {
        padding: 3.5rem !important;
    }
    
    .portfolio-title {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .portfolio-description {
        font-size: 1.375rem !important;
        margin-bottom: 3rem !important;
        line-height: 1.8 !important;
    }
    
    .portfolio-links {
        gap: 2rem !important;
    }
    
    .portfolio-links .btn {
        padding: 1.25rem 2.5rem !important;
        font-size: 1.25rem !important;
    }
    
    .portfolio-github-link {
        padding: 1.25rem !important;
        min-width: 3.5rem !important;
        height: 3.5rem !important;
    }
    
    .portfolio-tags {
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .portfolio-cta {
        margin-top: 5rem !important;
    }
    
    .portfolio-cta p {
        font-size: 1.125rem !important;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 8rem 0 !important;
    }
    
    .contact-grid {
        gap: 8rem !important;
        max-width: 100rem !important;
        grid-template-columns: 1.2fr 1fr !important;
    }
    
    .contact-form-container {
        padding: 4rem !important;
    }
    
    .contact-form-title {
        font-size: 2.25rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .contact-form {
        gap: 2rem !important;
    }
    
    .form-group label {
        font-size: 1.125rem !important;
    }
    
    .form-control {
        padding: 1rem 1.25rem !important;
        font-size: 1.125rem !important;
    }
    
    .contact-submit {
        padding: 1.25rem 2.5rem !important;
        font-size: 1.125rem !important;
    }
    
    .contact-info-title {
        font-size: 2.25rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .contact-info-item {
        padding: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .contact-info-label {
        font-size: 1.25rem !important;
    }
    
    .contact-info-value {
        font-size: 1.375rem !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .portfolio-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .vc_column_container {
        padding: 10px;
    }
}

/* ==========================================================================
   PROFESSIONAL LOADING PRELOADER
   ========================================================================== */

.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--foreground);
}

.preloader-logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary), #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for browsers that don't support background-clip */
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
    /* Cross-browser animation prefixes */
    -webkit-animation: pulse 2s ease-in-out infinite;
    -moz-animation: pulse 2s ease-in-out infinite;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

.preloader-text {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Cross-browser keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes spin {
    0% { -moz-transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@-webkit-keyframes pulse {
    0%, 100% { opacity: 1; -webkit-transform: scale(1); }
    50% { opacity: 0.8; -webkit-transform: scale(1.05); }
}

@-moz-keyframes pulse {
    0%, 100% { opacity: 1; -moz-transform: scale(1); }
    50% { opacity: 0.8; -moz-transform: scale(1.05); }
}

/* ==========================================================================
   SMOOTH SCROLL AND PAGE TRANSITIONS
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

/* Fallback for browsers without smooth scroll support */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* IE11 and older browser support */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* IE11 specific styles */
    .floating-share-buttons {
        display: none; /* Hide complex features in IE11 */
    }
    
    .preloader-logo {
        color: var(--primary);
        background: none;
    }
}

.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for sections */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

.section-animate:nth-child(1) { transition-delay: 0.1s; }
.section-animate:nth-child(2) { transition-delay: 0.2s; }
.section-animate:nth-child(3) { transition-delay: 0.3s; }
.section-animate:nth-child(4) { transition-delay: 0.4s; }

/* ==========================================================================
   ENHANCED HOVER EFFECTS AND MICRO-INTERACTIONS
   ========================================================================== */

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hover-glow {
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px var(--primary);
}

.hover-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.hover-glow:hover::before {
    left: 100%;
}

/* Button hover enhancements */
.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), #f39c12);
    border: none;
    color: var(--primary-foreground);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f39c12, var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   PROFESSIONAL IMAGE LIGHTBOX
   ========================================================================== */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid var(--border);
}

.lightbox-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.lightbox-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary-foreground);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--foreground);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* Portfolio item enhancements for lightbox */
.portfolio-item {
    cursor: pointer;
    position: relative;
}

.portfolio-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.portfolio-item:hover::after {
    opacity: 1;
}

/* ==========================================================================
   ENHANCED CONTACT FORM
   ========================================================================== */

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--foreground);
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
}

.form-label {
    position: absolute;
    left: 1.5rem;
    top: 1rem;
    color: var(--muted-foreground);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--card);
    padding: 0 0.5rem;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
    top: -0.5rem;
    font-size: 0.875rem;
    color: var(--primary);
    transform: scale(0.9);
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-error.show {
    opacity: 1;
}

.form-success {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-success.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-submit {
    background: linear-gradient(135deg, var(--primary), #f39c12);
    border: none;
    color: var(--primary-foreground);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
}

.contact-submit:active {
    transform: translateY(-1px);
}

.contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ==========================================================================
   PERFORMANCE OPTIMIZATIONS
   ========================================================================== */

/* GPU acceleration for smooth animations */
.page-preloader,
.lightbox-overlay,
.floating-share-buttons,
.portfolio-item,
.service-card,
.hover-lift,
.btn-primary {
    will-change: transform;
    transform: translateZ(0);
}

/* Optimize reflows and repaints */
.section-animate,
.page-transition {
    contain: layout style paint;
}

/* Optimize font loading */
@font-display: swap;

/* Critical resource hints */
.hero-image,
.profile-image {
    content-visibility: auto;
    contain-intrinsic-size: 300px;
}

/* Reduce paint complexity on mobile */
@media (max-width: 768px) {
    .hover-glow::before {
        display: none; /* Remove complex animations on mobile */
    }
    
    .floating-share-buttons {
        will-change: auto; /* Reduce GPU usage on mobile */
    }
    
    /* Simplify shadows on mobile */
    .lightbox-overlay,
    .page-preloader {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Optimize animations for 60fps */
@media (prefers-reduced-motion: no-preference) {
    .hover-lift,
    .btn-primary,
    .floating-share-btn {
        transition: transform 0.16s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Battery saving mode */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .page-preloader {
        display: none; /* Skip preloader for battery saving */
    }
}

/* ==========================================================================
   FLOATING SHARE BUTTONS
   ========================================================================== */

.floating-share-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.floating-share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.2;
}

.floating-share-btn:hover::before {
    transform: scale(1.2);
}

.floating-share-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.floating-share-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease;
}

.floating-share-btn:hover svg {
    transform: scale(1.2);
}

/* Platform specific colors */
.floating-share-btn.facebook {
    background: linear-gradient(145deg, #1877f2, #166fe5);
}

.floating-share-btn.twitter {
    background: linear-gradient(145deg, #1da1f2, #1a91da);
}

.floating-share-btn.linkedin {
    background: linear-gradient(145deg, #0077b5, #006ba1);
}

.floating-share-btn.pinterest {
    background: linear-gradient(145deg, #bd081c, #a50719);
}

.floating-share-btn.email {
    background: linear-gradient(145deg, #666, #555);
}

.floating-share-btn.copy {
    background: linear-gradient(145deg, #667eea, #764ba2);
}

/* Tooltip for floating buttons */
.floating-share-btn::after {
    content: attr(aria-label);
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

.floating-share-btn:hover::after {
    opacity: 1;
}

/* Responsive behavior for floating buttons */
@media (max-width: 1200px) {
    .floating-share-buttons {
        left: 15px;
    }
    
    .floating-share-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-share-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .floating-share-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 10px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 12px;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .floating-share-btn {
        width: 40px;
        height: 40px;
    }
    
    .floating-share-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .floating-share-btn::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-share-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
        padding: 10px;
    }
    
    .floating-share-btn {
        width: 36px;
        height: 36px;
    }
    
    .floating-share-btn svg {
        width: 16px;
        height: 16px;
    }
}


/* ==========================================================================
   PROJECT SHARE WIDGET COMPONENT
   ========================================================================== */


.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--muted);
    color: var(--muted-foreground);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    justify-content: center;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: currentColor;
}

.share-btn:active {
    transform: translateY(-1px);
}

.share-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.share-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Platform specific colors for project share widget */
.share-btn.twitter {
    --platform-color: #1da1f2;
}

.share-btn.twitter:hover {
    background: var(--platform-color);
    color: white;
}

.share-btn.linkedin {
    --platform-color: #0077b5;
}

.share-btn.linkedin:hover {
    background: var(--platform-color);
    color: white;
}

.share-btn.facebook {
    --platform-color: #1877f2;
}

.share-btn.facebook:hover {
    background: var(--platform-color);
    color: white;
}

.share-btn.pinterest {
    --platform-color: #bd081c;
}

.share-btn.pinterest:hover {
    background: var(--platform-color);
    color: white;
}

.share-btn.email {
    --platform-color: #666;
}

.share-btn.email:hover {
    background: var(--platform-color);
    color: white;
}


/* ====================================
   FLOATING SOCIAL SHARE BUTTONS
   ==================================== */
.social-share-floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.share-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.share-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.share-toggle svg {
    fill: white;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.social-share-floating.active .share-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook svg {
    fill: white;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter svg {
    fill: white;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.linkedin svg {
    fill: white;
}

.share-btn.copy {
    background: #6b7280;
}

.share-btn.copy svg {
    fill: white;
}

.share-btn.copy:hover {
    background: #4b5563;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .social-share-floating {
        right: 15px;
        bottom: 15px;
    }
    
    .share-toggle {
        width: 48px;
        height: 48px;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
    }
    
    .share-btn svg {
        width: 16px;
        height: 16px;
    }
}