/* Pixlr.com Inspired Design - Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pixlr Dark Colors */
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #242424;
    --bg-card: rgba(255, 255, 255, 0.03);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    /* Neon Accents */
    --accent-cyan: #00d9ff;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d9ff 0%, #a855f7 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    --gradient-tertiary: linear-gradient(135deg, #3b82f6 0%, #00d9ff 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="6" fill="%2300d9ff" opacity="0.8"/><circle cx="16" cy="16" r="10" fill="none" stroke="%2300d9ff" stroke-width="1.5" opacity="0.4"/></svg>') 16 16, auto;
}

/* Custom cursor for interactive elements */
a, button, [role="button"], input[type="button"], input[type="submit"], .clickable {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="6" fill="%23ec4899" opacity="0.9"/><circle cx="16" cy="16" r="10" fill="none" stroke="%23ec4899" stroke-width="1.5" opacity="0.5"/></svg>') 16 16, pointer;
}

/* Modern Preloader Animation */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.6s ease-in-out 2.4s forwards;
}

.preloader-content {
    text-align: center;
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: #00d9ff;
    border-right-color: #a855f7;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: #ec4899;
    border-right-color: #3b82f6;
    animation: spin 1.2s linear infinite reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: #3b82f6;
    border-right-color: #00d9ff;
    animation: spin 0.9s linear infinite;
}

.preloader-text {
    font-size: 1.2rem;
    color: #00d9ff;
    font-weight: 600;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}

/* Selection */
::selection {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

/* Gradient Text Utility */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}

.brand-icon {
    height: 35px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
    object-fit: contain;
    display: inline-block;
    max-width: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    top: -200px;
    right: -200px;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.sphere-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-pink);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(60px, -60px); }
    66% { transform: translate(-60px, 60px); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.hero-text-content {
    text-align: left;
}

.hero-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    filter: blur(60px);
    opacity: 0.3;
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.05); }
}

.image-border {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    z-index: 1;
    opacity: 0.5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-name {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.greeting {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.name-text {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
}

#typewriter {
    display: inline-block;
    min-width: 20px;
}

.cursor {
    display: inline-block;
    margin-left: 4px;
    animation: blink 0.7s infinite;
    font-weight: 400;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-bio {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-ghost::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;
}

.btn-ghost:hover::before {
    left: 100%;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-ghost svg {
    margin-right: 0.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    max-width: fit-content;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    color: var(--accent-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--bg-secondary);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.service-card:hover .card-glow {
    transform: translate(-50%, -50%) scale(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-color: rgba(168, 85, 247, 0.2);
}

.service-card.featured:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

.featured-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--gradient-secondary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-cyan);
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 217, 255, 0.15);
}

.service-card.featured .card-icon {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
}

.service-card.featured .card-icon svg {
    color: var(--accent-purple);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.95);
}

.service-card:hover .card-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.card-features {
    list-style: none;
    margin-bottom: 1.25rem;
    flex: 1;
}

.card-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    margin-top: auto;
}

.card-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--accent-cyan);
}

/* About Us Section */
.about-section {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text .section-header {
    margin-bottom: 2rem;
}

.about-text .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-expertise {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.expertise-item:hover {
    transform: translateX(8px);
}

.expertise-item h3 {
    color: var(--accent-cyan);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.expertise-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* About Features Section */
.about-features {
    margin-top: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.feature-column {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #ef4444;
    stroke-width: 2;
}

.feature-column:hover .feature-icon {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-bullet {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bullet-line {
    display: block;
    width: 24px;
    height: 3px;
    background: #ef4444;
    border-radius: 2px;
    margin-top: 10px;
    flex-shrink: 0;
}

.feature-bullet p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    perspective: 1000px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover {
    transform: rotateY(-8deg) rotateX(3deg);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transform: perspective(1000px) rotateY(-20deg) rotateX(5deg);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 217, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.image-frame:hover .about-img {
    transform: perspective(1000px) rotateY(-12deg) rotateX(2deg);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    border-radius: 16px;
    z-index: -1;
    box-shadow: 
        0 30px 60px rgba(0, 217, 255, 0.25),
        0 0 0 2px rgba(0, 217, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover::before {
    box-shadow: 
        0 40px 80px rgba(0, 217, 255, 0.35),
        0 0 0 2px rgba(0, 217, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: -25px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border-radius: 20px;
    z-index: -2;
    box-shadow: 0 40px 80px rgba(0, 217, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover::after {
    box-shadow: 0 50px 100px rgba(0, 217, 255, 0.25);
}

/* Portfolio Section */
.portfolio {
    background: var(--bg-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.portfolio-card-link {
    text-decoration: none;
    display: block;
}

.portfolio-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.15);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.project-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.project-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tag {
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-card:hover .tag {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.2);
    color: var(--accent-cyan);
}

.project-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    text-decoration: none;
}

.project-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.project-btn:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    transform: translateY(-2px);
}

.project-btn-secondary {
    background: transparent;
    border-color: #00d4ff;
}

.project-btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

.portfolio-card:hover .project-btn svg {
    transform: translate(3px, -3px);
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

/* Graphic Design Gallery Section */
.graphic-gallery {
    padding: 0px !important;
    margin-top: -135px !important;
    background: var(--bg-primary);
    position: relative;
    z-index: 10;
}

.gallery-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 217, 255, 0.3) 50%, transparent 100%);
    max-width: 200px;
}

.separator-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.graphic-scroll-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    border: none;
    outline: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.graphic-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Gallery Navigation Arrows */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: #00d4ff;
}

.gallery-nav-prev {
    left: 20px;
}

.gallery-nav-next {
    right: 20px;
}

/* Border Navigation Buttons */
.border-nav-buttons {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.border-nav-btn {
    padding: 0.65rem 1.75rem;
    background: #0d0d0d;
    border: 1px solid #00d4ff;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.border-nav-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    border-color: #00d4ff;
}

.border-nav-btn.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    border-color: #00d4ff;
}

.graphic-scroll-wrapper {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: scrollCards 30s linear infinite;
}

.graphic-scroll-wrapper:hover {
    animation-play-state: paused;
}

@keyframes scrollCards {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6 - 120px));
    }
}


.graphic-card {
    position: relative;
    min-width: 300px;
    height: auto;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid #00d4ff;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.5s ease;
    opacity: 1;
}

.graphic-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.graphic-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.graphic-content {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.graphic-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.graphic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.graphic-card:hover .graphic-image img {
    transform: scale(1.05);
}

.graphic-info {
    padding: 1.5rem;
    background: transparent;
    text-align: center;
}

.graphic-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.graphic-category {
    font-size: 0.875rem;
    color: #00d4ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.graphic-card-btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: transparent;
    border: 1px solid #00d4ff;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
}

.graphic-card-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    border-color: #00d4ff;
}

/* Graphic Gallery Responsive */
@media (max-width: 768px) {
    .graphic-gallery {
        padding: 4rem 0;
        margin-top: 3rem;
    }
    
    .gallery-separator {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .separator-line {
        width: 100%;
        max-width: 150px;
    }
    
    .separator-title {
        font-size: 1.75rem;
        white-space: normal;
        text-align: center;
    }
    
    .graphic-card {
        min-width: 250px;
        box-shadow: 0 0 8px rgba(0, 212, 255, 0.2);
    }
    
    .graphic-card:hover {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.35);
    }
    
    .graphic-image {
        height: 180px;
    }
    
    .graphic-info {
        padding: 1.25rem;
    }
    
    .graphic-title {
        font-size: 1rem;
    }
    
    .graphic-category {
        font-size: 0.8rem;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .gallery-nav-prev {
        left: 10px;
    }
    
    .gallery-nav-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .separator-title {
        font-size: 1.5rem;
    }
    
    .graphic-card {
        min-width: 220px;
        box-shadow: 0 0 6px rgba(0, 212, 255, 0.18);
    }
    
    .graphic-card:hover {
        box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
    }
    
    .graphic-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .separator-title {
        font-size: 1.5rem;
    }
    
    .graphic-card {
        min-width: 220px;
        height: 300px;
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    }
    
    .graphic-card:hover {
        box-shadow: 0 0 18px rgba(0, 212, 255, 0.35);
    }
    
    @keyframes scrollCards {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-240px * 6 - 120px));
        }
    }
}

/* CCTV Security Section */
.cctv-security {
    background: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #0f1419 100%);
    padding: 8rem 0;
    position: relative;
}

.cctv-security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.security-hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px solid #00d4ff;
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 0 15px #00d4ff, 0 0 30px rgba(0, 212, 255, 0.3);
    overflow: hidden;
    z-index: 1;
}

.security-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.security-content {
    position: relative;
    z-index: 2;
}

.security-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid #00d4ff;
    border-radius: 50px;
    color: #00d4ff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.security-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.security-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.security-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    text-decoration: none;
}

.security-demo-btn svg {
    width: 20px;
    height: 20px;
}

.security-demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

.security-visual {
    position: relative;
    z-index: 2;
}

.camera-display {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.security-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* Security Section Responsive */
@media (max-width: 1024px) {
    .security-hero-card {
        grid-template-columns: 1fr;
        padding: 3rem;
        gap: 2rem;
    }
    
    .security-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cctv-security {
        padding: 5rem 0;
    }
    
    .security-hero-card {
        padding: 2rem;
    }
    
    .security-title {
        font-size: 2rem;
    }
    
    .security-description {
        font-size: 1rem;
    }
    
    .security-demo-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-content {
    position: sticky;
    top: 120px;
}

.contact-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: rgba(0, 217, 255, 0.2);
    transform: translateX(8px);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: var(--radius-sm);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.info-text {
    flex: 1;
}

.info-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group select {
    background: rgba(20, 20, 20, 0.9);
    color: var(--text-primary);
    cursor: pointer;
}

.form-group select option {
    background: rgba(20, 20, 20, 0.95);
    color: var(--text-primary);
    padding: 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-name .name-text {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .hero-content-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text-content {
        text-align: center;
    }
    
    .hero-name {
        justify-content: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        margin: 0 auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .profile-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-name .name-text {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* About Us Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text .section-title {
        font-size: 2rem;
    }
    
    .image-frame {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-text .section-title {
        font-size: 1.5rem;
    }
    
    .expertise-item h3 {
        font-size: 1.1rem;
    }
    
    .expertise-item p {
        font-size: 0.9rem;
    }
    
    .feature-column {
        gap: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .features-list {
        gap: 1.25rem;
    }
    
    .feature-bullet p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .brand-icon {
        height: 28px;
        margin-right: 8px;
    }
    
    .logo-text {
        display: none;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-name .name-text {
        font-size: 2.5rem;
    }
    
    .greeting {
        font-size: 1.25rem;
    }
    
    .hero-bio {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .profile-image-wrapper {
        max-width: 320px;
    }
    
    .section-container {
        padding: 5rem 1rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        min-height: 400px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .brand-icon {
        height: 24px;
        margin-right: 6px;
    }
    
    .hero-name .name-text {
        font-size: 2rem;
    }
    
    .greeting {
        font-size: 1rem;
    }
    
    .hero-bio {
        font-size: 1.125rem;
    }
    
    .profile-image-wrapper {
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .project-title {
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
*:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Product Details Page */
.product-details-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #0f1419 100%);
    padding: 4rem 2rem;
    position: relative;
}

.product-details-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.back-button svg {
    width: 20px;
    height: 20px;
}

.back-button:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(-5px);
}

.product-main-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid #00d4ff;
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: 0 0 15px #00d4ff, 0 0 30px rgba(0, 212, 255, 0.2);
}

.product-border-text {
    position: absolute;
    top: -14px;
    left: 3rem;
    background: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #0f1419 100%);
    padding: 0 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
}

.product-header {
    margin-bottom: 3rem;
    text-align: center;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.product-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.spec-box {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid #00d4ff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.spec-box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.spec-border-text {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #0f1419 100%);
    padding: 0 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.spec-content {
    text-align: center;
}

.spec-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-md);
    margin: 0 auto 1.25rem;
}

.spec-icon svg {
    width: 28px;
    height: 28px;
    color: #00d4ff;
}

.spec-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.spec-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.product-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.product-cta-btn svg {
    width: 20px;
    height: 20px;
}

.product-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

/* Product Details Responsive */
@media (max-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-details-page {
        padding: 3rem 1rem;
    }
    
    .product-main-card {
        padding: 2.5rem 1.5rem;
    }
    
    .product-border-text {
        font-size: 0.75rem;
        left: 1.5rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-subtitle {
        font-size: 1rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .spec-box {
        padding: 1.5rem;
    }
    
    .product-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Quote Request Modal */
.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.quote-modal.active {
    display: flex;
}

.quote-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    cursor: pointer;
}

.quote-modal-content {
    position: relative;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid #00d4ff;
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 20px #00d4ff, 0 25px 80px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    padding: 3rem;
}

.quote-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.quote-modal-close:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff4444;
    transform: rotate(90deg);
}

.quote-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.quote-modal-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.quote-form-group select {
    background: rgba(20, 20, 20, 0.9);
    color: var(--text-primary);
    cursor: pointer;
}

.quote-form-group select option {
    background: rgba(20, 20, 20, 0.95);
    color: var(--text-primary);
    padding: 0.5rem;
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.quote-form-group input::placeholder,
.quote-form-group textarea::placeholder {
    color: var(--text-muted);
}

.quote-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.quote-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    margin-top: 1rem;
}

.quote-submit-btn svg {
    width: 20px;
    height: 20px;
}

.quote-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

/* Success Message */
.quote-success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.quote-success-message.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid #00d4ff;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: #00d4ff;
}

.quote-success-message h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.quote-success-message p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.success-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.success-close-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-2px);
}

/* Quote Modal Responsive */
@media (max-width: 768px) {
    .quote-modal {
        padding: 1rem;
    }
    
    .quote-modal-content {
        padding: 2rem 1.5rem;
        max-height: 95vh;
    }
    
    .quote-modal-title {
        font-size: 1.5rem;
    }
    
    .quote-modal-subtitle {
        font-size: 0.9rem;
    }
    
    .quote-form {
        gap: 1.25rem;
    }
}

/* Product Image Styling */
.product-image-container {
    margin: 3rem 0;
    text-align: center;
}

.product-main-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border: 2px solid #00d4ff;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 15px 50px rgba(0, 0, 0, 0.6);
}

/* Spec Detail Text (Amharic) */
.spec-detail {
    font-size: 0.85rem;
    color: rgba(0, 212, 255, 0.8);
    line-height: 1.7;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

/* Responsive for Product Image */
@media (max-width: 768px) {
    .product-image-container {
        margin: 2rem 0;
    }
    
    .product-main-image {
        max-width: 100%;
    }
    
    .spec-detail {
        font-size: 0.8rem;
    }
}


/* ===================================
   PRINT DESIGN PAGE STYLES
   =================================== */

/* Print Hero Section */
.print-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 2rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.print-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.print-hero-content {
    text-align: center;
    margin-top: -125px !important;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.print-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.print-hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Print Gallery Section */
.print-gallery {
    padding: 0px !important;
    margin-top: -180px !important;
    background: var(--bg-primary);
    position: relative;
    z-index: 10;
}

.print-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

/* Pricing Banner */
.pricing-banner {
    display: flex;
    justify-content: center;
    margin: 2rem 0 1rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

.pricing-icon {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    flex-shrink: 0;
}

.pricing-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.pricing-text strong {
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(102, 126, 234, 0.5), 0 0 20px rgba(118, 75, 162, 0.3);
    }
}

/* Quote Button Container */
.quote-button-container {
    text-align: center;
    margin-top: 150px;
    padding-bottom: 1rem;
}

.quote-button-container .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
   

}


/* Print Card Styles */
.print-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid #00d4ff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.print-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.05);
}

.print-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.print-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.print-card:hover .print-card-image img {
    transform: scale(1.1);
}

/* Back Section */
.back-section {
    padding: 2rem 0 3rem;
    background: var(--bg-primary);
    text-align: center;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #00d4ff;
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* Responsive Styles for Print Design Page */
@media (max-width: 768px) {
    .print-hero {
        padding: 6rem 0 3rem;
        min-height: 50vh;
    }
    
    .print-hero-title {
        font-size: 2.5rem;
    }
    
    .print-hero-description {
        font-size: 1.1rem;
    }
    
    .print-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .print-card-image {
        height: 220px;
    }
    
    .pricing-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
        gap: 0.5rem;
    }
    
    .pricing-text {
        font-size: 1rem;
    }
    
    .pricing-text strong {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .print-hero-title {
        font-size: 2rem;
    }
    
    .print-hero-description {
        font-size: 1rem;
    }
    
    .print-card-image {
        height: 180px;
    }
    
    .pricing-badge {
        padding: 0.875rem 1.25rem;
    }
    
    .pricing-text {
        font-size: 0.9rem;
    }
    
    .pricing-text strong {
        font-size: 1.05rem;
    }
}

/* ===================================
   PROJECT DETAILS PAGE STYLES
   =================================== */

/* Project Details Hero */
.project-details-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: var(--bg-primary);
    position: relative;
}

.project-details-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.project-details-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.project-details-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Project Description Section */
.project-description-section {
    padding: 0px !important;
    margin-top: -135px !important;
    background: var(--bg-primary);
    position: relative;
    z-index: 10;
}

.project-description-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1rem ;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.project-full-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.project-full-description:last-child {
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 0px !important;
    margin-top: -135px !important;
    background: var(--bg-primary);
    position: relative;
    z-index: 10;

    
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.pricing-card-featured {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #8a2be2 100%);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #00d4ff;
    line-height: 1;
}

.price-currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: #00d4ff;
    flex-shrink: 0;
}

/* Project CTA Section */
.project-cta-section {
    padding: 0px !important;
    margin-top: -135px !important;
    background: var(--bg-primary);
    position: relative;
    z-index: 10;
}

.project-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.project-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.project-cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Styles for Project Details Page */
@media (max-width: 768px) {
    .project-details-hero {
        padding: 6rem 0 2rem;
    }
    
    .project-details-title {
        font-size: 2.5rem;
    }
    
    .project-details-subtitle {
        font-size: 1.1rem;
    }
    
    .project-description-card {
        padding: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-cta-content {
        padding: 3rem 1.5rem;
    }
    
    .project-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .project-details-title {
        font-size: 2rem;
    }
    
    .project-details-subtitle {
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .project-full-description {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}


/* ===================================
   LATEST PROJECTS SECTION
   =================================== */

.latest-projects-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #0d1419 100%);
    padding: 6rem 0;
    position: relative;
}

.projects-images-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.project-image {
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 3px solid #ff9d00;
    box-shadow: 0 0 20px #ff9d00, 0 10px 40px rgba(0, 0, 0, 0.3);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
    filter: brightness(0.95);
}

.project-image:hover img {
    filter: brightness(1);
    transform: scale(1.05);
}

.project-image-left,
.project-image-right {
    width: 280px;
    height: 350px;
    z-index: 1;
}

.project-image-center {
    width: 380px;
    height: 450px;
    z-index: 2;
    transform: scale(1.05);
    box-shadow: 0 0 25px #ff9d00, 0 0 40px rgba(255, 157, 0, 0.5), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.project-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px #ff9d00, 0 0 50px rgba(255, 157, 0, 0.6), 0 15px 50px rgba(0, 0, 0, 0.4);
}

.project-image-center:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 0 35px #ff9d00, 0 0 60px rgba(255, 157, 0, 0.7), 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* Neon Border 2-Image Section */
.neon-images-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0 3rem;
    padding: 2rem 0;
}

.neon-image-wrapper {
    position: relative;
    width: 450px;
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
    border: 3px solid #ff9d00;
    box-shadow: 0 0 20px #ff9d00;
    transition: all 0.4s ease;
    cursor: pointer;
}

.neon-image-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px #ff9d00, 0 0 50px rgba(255, 157, 0, 0.5);
}

.neon-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.95);
}

.neon-image-wrapper:hover img {
    filter: brightness(1);
}

/* Large Merge Image Section */
.merge-image-section {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.merge-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 950px;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    border: 3px solid #ff9d00;
    box-shadow: 0 0 20px #ff9d00;
    transition: all 0.4s ease;
    cursor: pointer;
}

.merge-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #ff9d00 10%, 
        #ff9d00 90%, 
        transparent 100%);
    box-shadow: 0 0 20px #ff9d00, 0 0 40px rgba(255, 157, 0, 0.6);
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.merge-image-wrapper:hover::after {
    opacity: 0;
}

.merge-image-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px #ff9d00, 0 0 50px rgba(255, 157, 0, 0.5);
}

.merge-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.95);
}

.merge-image-wrapper:hover img {
    filter: brightness(1);
}

/* 3D Folding Image Section */
.folding-image-section {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
    perspective: 2000px;
}

.folding-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    gap: 0;
    border-radius: 40px;
    overflow: hidden;
    border: 3px solid #ff9d00;
    box-shadow: 0 0 20px #ff9d00, 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.6s ease;
}

.folding-container:hover {
    box-shadow: 0 0 35px #ff9d00, 0 0 60px rgba(255, 157, 0, 0.7), 0 25px 70px rgba(0, 0, 0, 0.4);
}

.folding-part {
    flex: 1;
    height: 100%;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: relative;
}

.folding-part img {
    width: 300%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.9);
}

.folding-left {
    transform: rotateY(15deg);
    transform-origin: right center;
}

.folding-left img {
    object-position: left center;
    margin-left: 0;
}

.folding-center {
    transform: rotateY(0deg);
    z-index: 2;
}

.folding-center img {
    object-position: center center;
    margin-left: -100%;
}

.folding-right {
    transform: rotateY(-15deg);
    transform-origin: left center;
}

.folding-right img {
    object-position: right center;
    margin-left: -200%;
}

.folding-container:hover .folding-left,
.folding-container:hover .folding-center,
.folding-container:hover .folding-right {
    transform: rotateY(0deg);
}

.folding-container:hover .folding-part img {
    filter: brightness(1);
}

.projects-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.projects-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.projects-list {
    list-style-position: inside;
    margin: 2rem 0;
    color: #333;
}

.projects-list li {
    font-size: 1.1rem;
    line-height: 2;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.projects-list li:last-child {
    border-bottom: none;
}

.projects-content-card .btn {
    display: inline-flex;
    margin: 2rem auto 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #ff9d00;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.projects-content-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px #ff9d00, 0 0 50px rgba(255, 157, 0, 0.6), 0 8px 25px rgba(102, 126, 234, 0.6);
    border-color: #ffb84d;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.projects-content-card .btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.projects-content-card .btn:hover svg {
    transform: translateX(5px);
}

.projects-content-card {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-images-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .project-image-left,
    .project-image-right,
    .project-image-center {
        width: 100%;
        max-width: 350px;
        height: 300px;
    }
    
    .project-image-center {
        transform: scale(1);
    }
    
    .neon-images-section {
        flex-direction: column;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .neon-image-wrapper {
        width: 100%;
        max-width: 400px;
        height: 320px;
    }
    
    .merge-image-section {
        margin: 2rem 0;
    }
    
    .merge-image-wrapper {
        height: 350px;
    }
    
    .folding-image-section {
        margin: 2rem 0;
        perspective: 1000px;
    }
    
    .folding-container {
        height: 300px;
        flex-direction: column;
    }
    
    .folding-part {
        transform: rotateY(0deg) !important;
    }
    
    .folding-part img {
        width: 100%;
        height: 300%;
        object-position: center top;
        margin-left: 0 !important;
    }
    
    .folding-left img {
        object-position: center top;
        margin-top: 0;
    }
    
    .folding-center img {
        object-position: center center;
        margin-top: -100%;
    }
    
    .folding-right img {
        object-position: center bottom;
        margin-top: -200%;
    }
    
    .projects-content-card {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .projects-card-title {
        font-size: 1.5rem;
    }
    
    .projects-list li {
        font-size: 1rem;
    }
}

/* ===================================
   VIDEO SHOWCASE SECTION STYLES
   =================================== */

.video-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 157, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Featured Landscape Video with 3D Folding */
.featured-video-section {
    margin: 4rem 0 6rem;
    display: flex;
    justify-content: center;
    perspective: 2000px;
}

.folding-video-container {
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-width: 1400px;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: all 0.6s ease;
    background: #000;
    position: relative;
}

.folding-video-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
}

.folding-video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    background: #000;
}

.folding-video-part {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex: 1;
    height: auto;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: relative;
    background: #000;
}

.folding-video-part video {
    width: 300%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: fill !important;
    object-position: center;
    transition: all 0.6s ease;
    filter: brightness(0.9);
    background: #000;
    display: block;
}

.folding-left {
    transform: rotateY(15deg);
    transform-origin: right center;
}

.folding-left video {
    object-position: left center;
    margin-left: 0;
}

.folding-center {
    transform: rotateY(0deg);
    z-index: 2;
}

.folding-center video {
    object-position: center center;
    margin-left: -100%;
}

.folding-right {
    transform: rotateY(-15deg);
    transform-origin: left center;
}

.folding-right video {
    object-position: right center;
    margin-left: -200%;
}

.folding-video-container:hover .folding-left,
.folding-video-container:hover .folding-center,
.folding-video-container:hover .folding-right {
    transform: rotateY(0deg);
}

.folding-video-container:hover .folding-video-part video {
    filter: brightness(1);
}

/* TikTok-Style Grid Layout */
.tiktok-portfolio {
    margin: 6rem 0;
    padding: 2rem 0;
}

.tiktok-slider-container {
    position: relative;
    padding: 0 2rem;
}

.tiktok-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 1rem;
}

.tiktok-video-card {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    background: #000;
    cursor: pointer;
}

.tiktok-video-card:hover {
    transform: translateY(-5px) scale(1.02);
    border: 1px solid rgba(255, 157, 0, 0.5);
    box-shadow: 0 8px 25px rgba(255, 157, 0, 0.3), 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Video Thumbnail Image */
.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.tiktok-video-card:hover .video-thumbnail {
    filter: brightness(1);
}

/* Play Button Overlay - Hidden by Default, Shows on Hover */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(239, 68, 68, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(239, 68, 68, 0.95);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.tiktok-video-card:hover .play-button-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Watch More Card */
.watch-more-card {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 2px solid rgba(0, 217, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.watch-more-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.35;
}

.watch-more-card .watch-more-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.watch-more-card:hover {
    border: 2px solid rgba(0, 217, 255, 0.6);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Letter animation */
.watch-more-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.wm-word {
    display: flex;
    gap: 0.05em;
}

.wm-letter {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00d9ff, #a855f7, #ff6b6b, #00d9ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wmLetterFloat 3s ease-in-out infinite, wmGradientShift 4s ease infinite;
    animation-delay: calc(var(--i) * 0.08s);
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6));
}

#wm-more .wm-letter {
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.7));
}

@keyframes wmLetterFloat {
    0%, 100% { transform: translateY(0) scaleY(1); }
    30%       { transform: translateY(-6px) scaleY(1.05); }
    60%       { transform: translateY(2px) scaleY(0.97); }
}

@keyframes wmGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Pulse ring */
.wm-pulse-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(0, 217, 255, 0.6);
    animation: wmPulse 2s ease-out infinite;
    position: relative;
}

.wm-pulse-ring::before,
.wm-pulse-ring::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1.5px solid rgba(168, 85, 247, 0.4);
    animation: wmPulse 2s ease-out infinite;
    animation-delay: 0.4s;
}

.wm-pulse-ring::after {
    inset: -24px;
    border-color: rgba(0, 217, 255, 0.2);
    animation-delay: 0.8s;
}

/* Play icon inside pulse ring */
.wm-pulse-ring svg {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    fill: #ffffff;
    filter: drop-shadow(0 0 6px rgba(0, 217, 255, 0.8));
}

@keyframes wmPulse {
    0%   { transform: scale(1);   opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Hover: letters scatter then reassemble */
.watch-more-card:hover .wm-letter {
    animation: wmLetterPop 0.4s ease forwards, wmGradientShift 4s ease infinite;
    animation-delay: calc(var(--i) * 0.05s);
}

@keyframes wmLetterPop {
    0%   { transform: translateY(0) scale(1); }
    40%  { transform: translateY(-12px) scale(1.2) rotate(calc(var(--i) * 3deg - 12deg)); }
    100% { transform: translateY(0) scale(1) rotate(0); }
}

.watch-more-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.watch-more-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: 0.5px;
}

.play-button-overlay:hover {
    background: rgba(239, 68, 68, 1);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 50px rgba(239, 68, 68, 0.8), inset 0 0 25px rgba(255, 255, 255, 0.2);
}

.play-button-overlay svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
    margin-left: 3px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Video CTA Section */
.video-cta-section {
    text-align: center;
    margin-top: 6rem;
}

.video-project-btn {
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    border: 2px solid #ff9d00;
    color: #000;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(255, 157, 0, 0.4), 0 8px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-project-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px #ff9d00, 0 0 80px rgba(255, 157, 0, 0.8), 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffb84d 0%, #ff9d00 100%);
    border-color: #ffb84d;
}

.video-project-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.video-project-btn:hover svg {
    transform: translateX(8px);
}

/* Responsive Design for Video Sections */
@media (max-width: 768px) {
    .featured-video-section {
        margin: 2rem 0 4rem;
        perspective: 1000px;
    }
    
    .folding-video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        flex-direction: column;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
    }
    
    .folding-video-container video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 15px;
        background: #000;
    }
    
    .folding-video-part {
        transform: rotateY(0deg) !important;
        height: auto;
    }
    
    .folding-video-part video {
        width: 100%;
        height: auto;
        object-fit: fill !important;
        object-position: center;
        margin-left: 0 !important;
        margin-top: 0 !important;
        background: #000;
    }
    
    .folding-left video {
        object-position: center;
    }
    
    .folding-center video {
        object-position: center;
    }
    
    .folding-right video {
        object-position: center;
    }
    
    .tiktok-slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 1rem;
    }
    
    .tiktok-video-card {
        border-radius: 12px;
    }
    
    .play-button-overlay {
        width: 60px;
        height: 60px;
    }
    
    .play-button-overlay svg {
        width: 24px;
        height: 24px;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-close {
        width: 45px;
        height: 45px;
        top: 10px;
        right: 10px;
    }
    
    .modal-close svg {
        width: 20px;
        height: 20px;
    }
    
    #modalVideo {
        max-width: 90vw;
        max-height: 90vh;
    }
    
    .video-project-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .folding-video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
    }
    
    .folding-video-container video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 15px;
        background: #000;
    }
    
    .tiktok-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .tiktok-video-card {
        border-radius: 10px;
    }
    
    .play-button-overlay {
        width: 50px;
        height: 50px;
    }
    
    .play-button-overlay svg {
        width: 20px;
        height: 20px;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        top: 8px;
        right: 8px;
    }
    
    .modal-close svg {
        width: 18px;
        height: 18px;
    }
    
    .portfolio-row {
        gap: 0.5rem;
    }
}
/* Premium Monthly Partnership Section */
.premium-partnership-section {
    margin: 8rem 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnership-card {
    max-width: 800px;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 157, 0, 0.3);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 157, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 157, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.partnership-card > * {
    position: relative;
    z-index: 2;
}

.partnership-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 157, 0, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 157, 0, 0.2);
}

.partnership-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.partnership-features {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.checkmark {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 157, 0, 0.5));
}

.feature-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    line-height: 1.4;
}

.partnership-cta {
    margin-top: 3rem;
}

.partnership-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    color: #000;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(255, 157, 0, 0.4), 0 8px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ff9d00;
    position: relative;
    overflow: hidden;
}

.partnership-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.partnership-btn:hover::before {
    left: 100%;
}

.partnership-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px #ff9d00, 0 0 80px rgba(255, 157, 0, 0.8), 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffb84d 0%, #ff9d00 100%);
    border-color: #ffb84d;
}

.partnership-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.partnership-btn:hover svg {
    transform: translateX(8px);
}

/* Responsive Design for Partnership Section */
@media (max-width: 768px) {
    .premium-partnership-section {
        margin: 4rem 0;
        padding: 1rem;
    }
    
    .partnership-card {
        padding: 3rem 2rem;
        border-radius: 20px;
    }
    
    .partnership-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .partnership-features {
        gap: 1rem;
    }
    
    .feature-text {
        font-size: 1.1rem;
    }
    
    .partnership-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .partnership-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .partnership-title {
        font-size: 1.8rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .partnership-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .partnership-btn svg {
        width: 20px;
        height: 20px;
    }
}
/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
}

.contact-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 157, 0, 0.3);
    overflow-y: auto;
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff9d00;
    color: #ff9d00;
    transform: scale(1.1);
}

.contact-modal-close svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.contact-form-container {
    padding: 3rem 2.5rem;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9d00;
    background: rgba(255, 157, 0, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 157, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #000;
    color: #fff;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.4);
    background: linear-gradient(135deg, #ffb84d 0%, #ff9d00 100%);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover svg {
    transform: translateX(4px);
}

.thank-you-message {
    text-align: center;
    padding: 2rem;
    color: #fff;
}

.thank-you-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 157, 0, 0.5));
}

.thank-you-message h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff9d00;
}

.thank-you-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Responsive Design for Contact Modal */
@media (max-width: 768px) {
    .contact-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-title {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Website Development Section */
.website-development-container {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.website-dev-card {
    max-width: 600px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 157, 0, 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 157, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.website-dev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 157, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.website-dev-card > * {
    position: relative;
    z-index: 2;
}

.website-dev-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 157, 0, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 157, 0, 0.2);
}

.website-dev-header {
    margin-bottom: 2rem;
}

.website-dev-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(255, 157, 0, 0.4);
}

.website-dev-icon svg {
    width: 40px;
    height: 40px;
    color: #000;
}

.website-dev-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.website-dev-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.website-dev-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.feature-preview:hover {
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 157, 0, 0.5));
}

.feature-preview span:last-child {
    color: #fff;
    font-size: 1rem;
    text-align: left;
}

.website-details-btn {
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(255, 157, 0, 0.4), 0 8px 25px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.website-details-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 50px #ff9d00, 0 0 80px rgba(255, 157, 0, 0.8), 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffb84d 0%, #ff9d00 100%);
}

.website-details-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.website-details-btn:hover svg {
    transform: translateX(4px);
}

/* Website Details Modal */
.website-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
}

.website-details-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.website-modal-content {
    position: relative;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 157, 0, 0.3);
    overflow-y: auto;
}

.website-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.website-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff9d00;
    color: #ff9d00;
    transform: scale(1.1);
}

.website-modal-close svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.website-modal-container {
    padding: 3rem 2.5rem;
}

.website-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.website-modal-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.website-modal-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.website-features-section {
    margin-bottom: 3rem;
}

.features-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.website-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.website-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.website-feature-item:hover {
    transform: translateX(10px);
}

.website-checkmark {
    font-size: 1.3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 157, 0, 0.5));
    margin-top: 0.2rem;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.feature-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-amharic {
    color: rgba(255, 157, 0, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

.website-contact-section {
    border-top: 1px solid rgba(255, 157, 0, 0.2);
    padding-top: 2rem;
}

.contact-section-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.website-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.website-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.website-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.website-form-group label {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.website-form-group input,
.website-form-group select,
.website-form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.website-form-group input:focus,
.website-form-group select:focus,
.website-form-group textarea:focus {
    outline: none;
    border-color: #ff9d00;
    background: rgba(255, 157, 0, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 157, 0, 0.2);
}

.website-form-group input::placeholder,
.website-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.website-form-group select option {
    background: #000;
    color: #fff;
}

.website-submit-btn {
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    color: #000;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.website-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.4);
    background: linear-gradient(135deg, #ffb84d 0%, #ff9d00 100%);
}

.website-submit-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.website-submit-btn:hover svg {
    transform: translateX(4px);
}

.website-thank-you-message {
    text-align: center;
    padding: 2rem;
    color: #fff;
}

.website-thank-you-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 157, 0, 0.5));
}

.website-thank-you-message h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff9d00;
}

.website-thank-you-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Responsive Design for Website Development */
@media (max-width: 768px) {
    .website-dev-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .website-dev-title {
        font-size: 1.6rem;
    }
    
    .website-modal-container {
        padding: 2rem 1.5rem;
    }
    
    .website-modal-title {
        font-size: 1.8rem;
    }
    
    .website-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .website-dev-card {
        padding: 1.5rem 1rem;
    }
    
    .website-dev-title {
        font-size: 1.4rem;
    }
    
    .website-modal-container {
        padding: 1.5rem 1rem;
    }
    
    .website-modal-title {
        font-size: 1.5rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .feature-amharic {
        font-size: 0.8rem;
    }
}

/* Portfolio Main CTA Button */
.portfolio-main-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
}

.gk-details-btn {
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    color: #000;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(255, 157, 0, 0.4), 0 8px 25px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.gk-details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.gk-details-btn:hover::before {
    left: 100%;
}

.gk-details-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px #ff9d00, 0 0 80px rgba(255, 157, 0, 0.8), 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffb84d 0%, #ff9d00 100%);
}

.gk-details-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.gk-details-btn:hover svg {
    transform: translateX(8px);
}

/* GK Digital Solutions Modal */
.gk-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
}

.gk-details-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gk-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.gk-modal-content {
    position: relative;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 157, 0, 0.3);
    overflow-y: auto;
}

.gk-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.gk-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff9d00;
    color: #ff9d00;
    transform: scale(1.1);
}

.gk-modal-close svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.gk-modal-container {
    padding: 3rem 2.5rem;
}

.gk-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gk-modal-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gk-modal-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.gk-features-section {
    margin-bottom: 3rem;
}

.gk-features-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gk-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.gk-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.gk-feature-item:hover {
    transform: translateX(10px);
}

.gk-checkmark {
    font-size: 1.3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 157, 0, 0.5));
    margin-top: 0.2rem;
}

.gk-feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.gk-feature-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.gk-feature-amharic {
    color: rgba(255, 157, 0, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

.gk-contact-section {
    border-top: 1px solid rgba(255, 157, 0, 0.2);
    padding-top: 2rem;
}

.gk-contact-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.gk-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.gk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gk-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gk-form-group label {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.gk-form-group input,
.gk-form-group select,
.gk-form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.gk-form-group input:focus,
.gk-form-group select:focus,
.gk-form-group textarea:focus {
    outline: none;
    border-color: #ff9d00;
    background: rgba(255, 157, 0, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 157, 0, 0.2);
}

.gk-form-group input::placeholder,
.gk-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.gk-form-group select option {
    background: #000;
    color: #fff;
}

.gk-submit-btn {
    background: linear-gradient(135deg, #ff9d00 0%, #ffb84d 100%);
    color: #000;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.gk-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.4);
    background: linear-gradient(135deg, #ffb84d 0%, #ff9d00 100%);
}

.gk-submit-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.gk-submit-btn:hover svg {
    transform: translateX(4px);
}

.gk-thank-you-message {
    text-align: center;
    padding: 2rem;
    color: #fff;
}

.gk-thank-you-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 157, 0, 0.5));
}

.gk-thank-you-message h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff9d00;
}

.gk-thank-you-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Responsive Design for GK Modal */
@media (max-width: 768px) {
    .portfolio-main-cta {
        margin-top: 3rem;
        padding: 1.5rem 0;
    }
    
    .gk-details-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .gk-modal-container {
        padding: 2rem 1.5rem;
    }
    
    .gk-modal-title {
        font-size: 1.8rem;
    }
    
    .gk-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gk-details-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .gk-modal-container {
        padding: 1.5rem 1rem;
    }
    
    .gk-modal-title {
        font-size: 1.5rem;
    }
    
    .gk-feature-text {
        font-size: 1rem;
    }
    
    .gk-feature-amharic {
        font-size: 0.8rem;
    }
}
/* Infinite Scrolling Marquee Section */
.marquee-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 157, 0, 0.1);
    border-bottom: 1px solid rgba(255, 157, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: marqueeScroll 30s linear infinite;
    gap: 4rem;
    align-items: center;
}

.marquee-text {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 157, 0, 0.8);
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    white-space: nowrap;
    user-select: none;
    transition: all 0.3s ease;
}

.marquee-text:hover {
    -webkit-text-stroke: 2px #ff9d00;
    text-shadow: 0 0 20px rgba(255, 157, 0, 0.5);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Design for Marquee */
@media (max-width: 768px) {
    .marquee-section {
        padding: 3rem 0;
    }
    
    .marquee-text {
        font-size: 4rem;
        -webkit-text-stroke: 1.5px rgba(255, 157, 0, 0.8);
    }
    
    .marquee-content {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .marquee-section {
        padding: 2rem 0;
    }
    
    .marquee-text {
        font-size: 2.5rem;
        -webkit-text-stroke: 1px rgba(255, 157, 0, 0.8);
        letter-spacing: 0.05em;
    }
    
    .marquee-content {
        gap: 2rem;
        animation: marqueeScroll 20s linear infinite;
    }
}

/* ===================================
   GK DIGITAL TECH HERO SECTION
   =================================== */

.gk-tech-hero {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0f1419 100%);
    overflow: hidden;
}

/* Background Elements */
.tech-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tech-circle {
    position: absolute;
    border: 1px solid rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    animation: techCircleRotate 30s linear infinite;
}

.tech-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
}

.tech-circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-direction: reverse;
    animation-duration: 40s;
}

.tech-circle-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation-duration: 35s;
}

@keyframes techCircleRotate {
    0% {
        transform: rotate(0deg);
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.1;
    }
}

/* Hero Container */
.tech-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.tech-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    min-height: 600px;
}

/* Left Side Content */
.tech-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.provider-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.badge-dash {
    color: #FF5722;
    font-weight: 700;
    font-size: 1.2rem;
}

.badge-text {
    color: #FF5722;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tech-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.business-orange {
    color: #FF5722;
    background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
}

.tech-hero-actions {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.tech-btn-primary {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #00d9ff 0%, #0ea5e9 100%);
    border: none;
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.tech-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
}

.tech-btn-video {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.tech-btn-video:hover {
    color: #FF5722;
    transform: translateX(5px);
}

.video-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
}

.tech-btn-video:hover .video-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 87, 34, 0.6);
}

.video-icon-circle svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    margin-left: 3px;
}

.video-highlight {
    color: #FF5722;
}

/* Right Side: Diagonal Cut Visual */
.tech-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.diagonal-cut-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagonal-shape {
    position: absolute;
    width: 450px;
    height: 550px;
    background: linear-gradient(135deg, #FF5722 0%, #FF7043 50%, #FF8A65 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    z-index: 1;
    box-shadow: 0 20px 60px rgba(255, 87, 34, 0.3);
    animation: diagonalPulse 4s ease-in-out infinite;
}

@keyframes diagonalPulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(255, 87, 34, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 25px 80px rgba(255, 87, 34, 0.5);
        transform: scale(1.02);
    }
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    width: 350px;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.tech-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.tech-hero-image:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tech-hero-title {
        font-size: 3.5rem;
    }
    
    .tech-hero-grid {
        gap: 4rem;
    }
    
    .diagonal-shape {
        width: 400px;
        height: 500px;
    }
    
    .hero-image-wrapper {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .tech-hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .tech-hero-title {
        font-size: 3rem;
    }
    
    .tech-hero-actions {
        justify-content: center;
    }
    
    .diagonal-cut-container {
        max-width: 400px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .gk-tech-hero {
        padding: 5rem 0;
    }
    
    .tech-hero-container {
        padding: 0 1rem;
    }
    
    .tech-hero-title {
        font-size: 2.5rem;
    }
    
    .tech-hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .tech-hero-actions {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .tech-btn-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .diagonal-shape {
        width: 320px;
        height: 400px;
    }
    
    .hero-image-wrapper {
        width: 260px;
        height: 340px;
    }
    
    .diagonal-cut-container {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .tech-hero-title {
        font-size: 2rem;
    }
    
    .tech-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tech-btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .diagonal-shape {
        width: 280px;
        height: 350px;
    }
    
    .hero-image-wrapper {
        width: 220px;
        height: 300px;
    }
}

/* ===================================
   SERVICE DETAIL PAGES
   =================================== */

.service-detail-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 87, 34, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 87, 34, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #FF5722;
    transform: translateX(-5px);
}

.back-link svg {
    width: 20px;
    height: 20px;
}

.service-detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 87, 34, 0.1);
    border: 2px solid rgba(255, 87, 34, 0.3);
    border-radius: 20px;
}

.service-icon-large svg {
    width: 50px;
    height: 50px;
    stroke: #FF5722;
}

.service-detail-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-detail-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Service Content Section */
.service-content-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

.service-main-content {
    max-width: 100%;
}

.content-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.content-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.content-subheading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 3rem 0 2rem;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item-detail {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item-detail:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 87, 34, 0.2);
    transform: translateX(10px);
}

.feature-icon-detail {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: 10px;
}

.feature-icon-detail svg {
    width: 24px;
    height: 24px;
    stroke: #FF5722;
}

.feature-text-detail h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-text-detail p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.step-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.sidebar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.sidebar-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.sidebar-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.inquire-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.inquire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5);
}

.inquire-btn svg {
    width: 20px;
    height: 20px;
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF5722;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 6rem 0 3rem;
    }
    
    .service-detail-title {
        font-size: 2.5rem;
    }
    
    .service-detail-subtitle {
        font-size: 1.125rem;
    }
    
    .content-heading {
        font-size: 2rem;
    }
    
    .content-subheading {
        font-size: 1.5rem;
    }
    
    .service-content-section {
        padding: 4rem 0;
    }
    
    .feature-item-detail {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .service-detail-container {
        padding: 0 1rem;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
    
    .content-heading {
        font-size: 1.75rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
}

/* Video Overlay Modal */
.video-overlay-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-overlay-modal.active {
    display: flex;
    animation: overlayFadeIn 0.5s ease-out forwards;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Animated backdrop with moving gradient */
.video-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #050510;
    backdrop-filter: blur(0px);
    z-index: -1;
    overflow: hidden;
}

/* Mac-style fluid color blobs */
.mac-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.75;
    will-change: transform;
}

.mac-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #5e17eb 0%, #2d0a8a 60%, transparent 100%);
    top: -150px; left: -100px;
    animation: blobDrift1 18s ease-in-out infinite;
}

.mac-blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #c026d3 0%, #7c3aed 60%, transparent 100%);
    top: 30%; right: -100px;
    animation: blobDrift2 22s ease-in-out infinite;
}

.mac-blob-3 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, #0ea5e9 0%, #0369a1 60%, transparent 100%);
    bottom: -100px; left: 20%;
    animation: blobDrift3 20s ease-in-out infinite;
}

.mac-blob-4 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #f43f5e 0%, #9f1239 60%, transparent 100%);
    top: 10%; left: 40%;
    animation: blobDrift4 25s ease-in-out infinite;
}

.mac-blob-5 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #10b981 0%, #065f46 60%, transparent 100%);
    bottom: 10%; right: 15%;
    animation: blobDrift5 16s ease-in-out infinite;
}

@keyframes blobDrift1 {
    0%,100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(120px, 80px) scale(1.15); }
    66%      { transform: translate(-60px, 140px) scale(0.9); }
}
@keyframes blobDrift2 {
    0%,100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-100px, 60px) scale(1.1); }
    66%      { transform: translate(80px, -120px) scale(0.95); }
}
@keyframes blobDrift3 {
    0%,100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(80px, -100px) scale(1.2); }
    66%      { transform: translate(-120px, 60px) scale(0.85); }
}
@keyframes blobDrift4 {
    0%,100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50%      { transform: translate(-80px, 100px) scale(1.15) rotate(180deg); }
}
@keyframes blobDrift5 {
    0%,100% { transform: translate(0, 0) scale(1); }
    40%      { transform: translate(-60px, -80px) scale(1.1); }
    80%      { transform: translate(100px, 40px) scale(0.9); }
}

.video-overlay-content {
    position: relative;
    width: 100%;
    max-width: 1600px;
    max-height: 90vh;
    background: rgba(10, 8, 25, 0.55);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border-radius: 24px;
    padding: 4rem;
    overflow-y: auto;
    z-index: 10000;
    animation: overlaySlideUp 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(94, 23, 235, 0.2);
}

/* Animated top accent line */
.video-overlay-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, #5e17eb, #c026d3, #0ea5e9, #f43f5e, #5e17eb);
    background-size: 300% 100%;
    animation: overlayTopLine 5s linear infinite;
    z-index: 1;
}

/* Floating ambient orb bottom-right */
.video-overlay-content::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    animation: orbFloat 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes overlaySlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes overlayTopLine {
    0%   { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-20px, -20px) scale(1.1); }
}

.video-overlay-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.video-overlay-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.video-overlay-close svg {
    width: 24px;
    height: 24px;
}

/* Split Layout */
.overlay-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
}

/* Video Section */
.overlay-video-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    width: 100%;
}

.video-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    pointer-events: none;
}

.animated-arrow {
    width: 32px;
    height: 32px;
    color: var(--accent-cyan);
    stroke: var(--accent-cyan);
    animation: bounce 2s ease-in-out infinite;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    display: block;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
    50% {
        transform: translateY(8px) translateX(-50%);
        opacity: 0.7;
    }
}

/* Video Overlay Grid */
.video-overlay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
    gap: 2rem;
    width: 100%;
    overflow: visible;
    padding: 1rem 0;
}

/* Video Frame Wrapper with Label and Arrow */
.video-frame-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 85%;
    max-width: 100%;
    margin: 50px auto 0;
    overflow: visible;
    position: relative;
}

.video-frame {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 90%;
    max-width: 100%;
}

/* Animated rotating border via pseudo-element */
.video-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: conic-gradient(
        from var(--angle, 0deg),
        rgba(0, 217, 255, 0.8),
        rgba(168, 85, 247, 0.6),
        rgba(0, 217, 255, 0.1),
        rgba(0, 217, 255, 0.8)
    );
    animation: videoFrameSpin 4s linear infinite;
    z-index: 0;
}

/* Inner background to mask the conic gradient */
.video-frame::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    border-radius: 15px;
    background: #0a0a0f;
    z-index: 0;
}

.video-frame > * {
    position: relative;
    z-index: 1;
}

@keyframes videoFrameSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.video-frame:hover::before {
    animation-duration: 1.5s;
    background: conic-gradient(
        from var(--angle, 0deg),
        rgba(0, 217, 255, 1),
        rgba(168, 85, 247, 0.9),
        rgba(255, 107, 107, 0.6),
        rgba(0, 217, 255, 1)
    );
}

.video-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.2);
}

.video-frame video,
.video-frame iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border: none;
}

.youtube-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    opacity: 0.9;
}

.youtube-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.tiktok-overlay-frame {
    aspect-ratio: 9 / 16;
    width: 50%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    background: #000;
    cursor: pointer;
}

.youtube-overlay-frame {
    aspect-ratio: 16 / 9;
}

/* Testimonial Search Bar Card in Grid */
.testimonial-search-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 40px;
    border-radius: 90px;
    gap: 10px;
    transition: all 0.4s ease;
    overflow: hidden;
    grid-column: 1 / span 2;
    grid-row: 3;
    align-self: start;
    margin-top: 5%;
    position: relative;
    /* Deep dark base */
    background: #08050f;
    /* Neon border via box-shadow */
    box-shadow:
        0 0 0 2px rgba(168, 85, 247, 0.6),
        0 0 20px rgba(168, 85, 247, 0.3),
        0 0 60px rgba(168, 85, 247, 0.1),
        inset 0 0 40px rgba(94, 23, 235, 0.08);
}

/* Aurora background layer */
.testimonial-search-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 90px;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(94, 23, 235, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 50%, rgba(192, 38, 211, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 80%, rgba(14, 165, 233, 0.3) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: tsbAurora 8s ease-in-out infinite;
    z-index: 0;
}

/* Light streak sweep */
.testimonial-search-bar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255, 255, 255, 0.07) 45%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.07) 55%,
        transparent 65%
    );
    animation: tsbStreak 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.testimonial-search-bar > * {
    position: relative;
    z-index: 2;
}

@keyframes tsbAurora {
    0%   { background-position: 0% 50%; opacity: 1; }
    33%  { background-position: 60% 30%; opacity: 0.85; }
    66%  { background-position: 100% 70%; opacity: 1; }
    100% { background-position: 0% 50%; opacity: 1; }
}

@keyframes tsbStreak {
    0%   { left: -80%; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 120%; opacity: 0; }
}

/* Neon border pulse */
@keyframes tsbNeonPulse {
    0%, 100% {
        box-shadow:
            0 0 0 2px rgba(168, 85, 247, 0.6),
            0 0 20px rgba(168, 85, 247, 0.3),
            0 0 60px rgba(168, 85, 247, 0.1),
            inset 0 0 40px rgba(94, 23, 235, 0.08);
    }
    50% {
        box-shadow:
            0 0 0 2px rgba(192, 38, 211, 0.8),
            0 0 30px rgba(192, 38, 211, 0.5),
            0 0 80px rgba(14, 165, 233, 0.2),
            inset 0 0 50px rgba(94, 23, 235, 0.12);
    }
}

.testimonial-search-bar {
    animation: tsbNeonPulse 4s ease-in-out infinite;
}

.testimonial-search-bar:hover {
    transform: translateY(-3px) scale(1.01);
}

.testimonial-search-text {
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    font-style: italic;
    flex: 0 0 auto;
    text-align: center;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.testimonial-search-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* Rotating ring container around photo */
.testimonial-photo-ring {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Spinning conic gradient ring */
.testimonial-photo-ring::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #ff8c00, #ff3cac, #00d9ff, #a855f7, #ff8c00
    );
    animation: photoRingRotate 3s linear infinite;
    z-index: 0;
}

/* Inner mask so only the ring shows */
.testimonial-photo-ring::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #1a0a00;
    z-index: 0;
}

.testimonial-photo-ring img {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes photoRingRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.testimonial-search-bar:hover .testimonial-photo-ring::before {
    animation-duration: 1.2s;
}

.testimonial-search-bar:hover .testimonial-search-photo {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

/* Testimonial Search Bar Responsive */
@media (max-width: 768px) {
    .testimonial-search-bar {
        padding: 12px 20px;
        gap: 1rem;
    }

    .testimonial-search-text {
        font-size: 0.95rem;
    }

    .testimonial-search-photo {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .testimonial-search-bar {
        flex-direction: row;
        padding: 10px 15px;
        gap: 0.75rem;
    }

    .testimonial-search-text {
        font-size: 0.85rem;
    }

    .testimonial-search-photo {
        width: 50px;
        height: 50px;
    }
}

/* Testimonial Banner - Top of Watch More Section */
.testimonial-banner {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    background: linear-gradient(135deg, rgba(120, 80, 60, 0.8) 0%, rgba(239, 140, 80, 0.9) 100%);
    border: 2px solid #ffffff;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    gap: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-banner:hover {
    box-shadow: 0 15px 50px rgba(239, 100, 60, 0.3);
    transform: translateY(-4px);
}

.testimonial-banner-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
    font-style: italic;
    flex: 1;
}

.testimonial-banner-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.testimonial-banner:hover .testimonial-banner-photo {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Testimonial Banner Responsive */
@media (max-width: 1024px) {
    .testimonial-banner {
        max-width: 700px;
        padding: 20px 30px;
        gap: 1.5rem;
    }

    .testimonial-banner-text {
        font-size: 1.4rem;
    }

    .testimonial-banner-photo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .testimonial-banner {
        max-width: 100%;
        margin: 1.5rem auto;
        padding: 15px 25px;
        gap: 1.5rem;
    }

    .testimonial-banner-text {
        font-size: 1.1rem;
    }

    .testimonial-banner-photo {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .testimonial-banner {
        flex-direction: column;
        padding: 15px 20px;
        gap: 1rem;
        margin: 1rem auto;
    }

    .testimonial-banner-text {
        font-size: 0.95rem;
        text-align: center;
    }

    .testimonial-banner-photo {
        width: 80px;
        height: 80px;
    }
}

/* Overlay Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Overlay Responsive */
@media (max-width: 1200px) {
    .overlay-split-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .video-overlay-modal {
        padding: 1rem;
    }

    .video-overlay-content {
        padding: 2rem;
        border-radius: 16px;
        max-height: 95vh;
    }

    .overlay-split-layout {
        gap: 0;
    }

    .video-overlay-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .tiktok-overlay-frame {
        max-width: 280px;
        margin: 0 auto;
    }

    .youtube-overlay-frame {
        max-width: 100%;
    }

    .video-overlay-close {
        width: 44px;
        height: 44px;
        top: 1.5rem;
        right: 1.5rem;
    }

    .video-overlay-close svg {
        width: 22px;
        height: 22px;
    }

    .video-label {
        font-size: 1rem;
    }

    .animated-arrow {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .video-overlay-modal {
        padding: 0.5rem;
    }

    .video-overlay-content {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .overlay-split-layout {
        gap: 0;
    }

    .video-overlay-grid {
        gap: 1rem;
    }

    .tiktok-overlay-frame {
        max-width: 240px;
    }

    .video-label {
        font-size: 0.95rem;
    }

    .animated-arrow {
        width: 24px;
        height: 24px;
    }

    .video-overlay-close {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }

    .video-overlay-close svg {
        width: 20px;
        height: 20px;
    }
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.4s ease-out;
    z-index: 1;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 0, 0, 0.7);
    border-color: rgba(255, 0, 0, 0.5);
    transform: scale(1.1);
}

.video-modal-close svg { width: 20px; height: 20px; }

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Watch More Button Styles */
.watch-more-section {
    text-align: center;
    padding: 3rem 0;
    margin-top: 2rem;
}

.watch-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.watch-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
}

.watch-more-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.watch-more-btn:hover svg {
    transform: translateX(3px);
}

/* Testimonial Section */
.testimonial-section {
    width: 100%;
    padding: 6rem 2rem;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-container {
    max-width: 1400px;
    width: 100%;
}

.testimonial-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.testimonial-text {
    flex: 1;
    min-width: 300px;
}

.testimonial-quote {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
    max-width: 400px;
}

.testimonial-profile {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-image:hover {
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.3);
    transform: scale(1.05);
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Testimonial Responsive */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 4rem 1.5rem;
    }

    .testimonial-content {
        gap: 2rem;
    }

    .testimonial-quote {
        font-size: 1.5rem;
    }

    .testimonial-image {
        width: 150px;
        height: 150px;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding: 3rem 1rem;
    }

    .testimonial-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1.2rem;
        text-align: center;
    }

    .testimonial-image {
        width: 120px;
        height: 120px;
    }

    .testimonial-name {
        font-size: 1rem;
    }
}

/* Portfolio Modal Styles */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.portfolio-modal.active {
    display: flex;
}

.portfolio-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.portfolio-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: portfolioSlideIn 0.5s ease-out;
    padding: 3rem;
}

@keyframes portfolioSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.portfolio-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.portfolio-modal-close:hover {
    background: rgba(255, 0, 0, 0.7);
    border-color: rgba(255, 0, 0, 0.5);
    transform: scale(1.1);
}

.portfolio-modal-close svg {
    width: 22px;
    height: 22px;
}

/* Portfolio Header */
.portfolio-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-avatar {
    flex-shrink: 0;
}

.avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.portfolio-intro h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-title {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.portfolio-location {
    font-size: 1rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

/* Portfolio Stats */
.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Headings */
.section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* Services Grid */
.portfolio-services {
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Portfolio Gallery */
.portfolio-gallery {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.portfolio-cta h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.portfolio-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.portfolio-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.portfolio-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

.portfolio-contact-btn svg {
    width: 18px;
    height: 18px;
}

/* Portfolio Modal Responsive */
@media (max-width: 768px) {
    .portfolio-modal {
        padding: 1rem;
    }
    
    .portfolio-modal-content {
        padding: 2rem;
        max-height: 95vh;
    }
    
    .portfolio-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .avatar-image {
        width: 100px;
        height: 100px;
    }
    
    .portfolio-intro h1 {
        font-size: 2rem;
    }
    
    .portfolio-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .watch-more-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-modal-content {
        padding: 1.5rem;
    }
    
    .portfolio-intro h1 {
        font-size: 1.75rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .watch-more-section {
        padding: 2rem 0;
    }
}
/* Portfolio Showcase Section */
.portfolio-showcase-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.portfolio-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.portfolio-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Showcase Header */
.showcase-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.showcase-avatar {
    position: relative;
}

.showcase-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.status-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    border: 3px solid var(--bg-secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.showcase-info h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-role {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.showcase-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

.showcase-location svg {
    width: 18px;
    height: 18px;
}

.showcase-stats {
    display: flex;
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 217, 255, 0.1);
    min-width: 100px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 0.25rem;
}

.stat-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Titles */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Skills Section */
.showcase-skills {
    margin-bottom: 5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.skill-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.2);
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.skill-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.skill-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.skill-level {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.level-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 1s ease;
}

/* Projects Section */
.showcase-projects {
    margin-bottom: 5rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.15);
}

.project-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.project-type {
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.9);
    color: var(--bg-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-info {
    padding: 1.5rem;
}

.project-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.project-info p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* CTA Section */
.showcase-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.showcase-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.showcase-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

.showcase-contact-btn svg {
    width: 20px;
    height: 20px;
}

.cta-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .showcase-stats {
        justify-content: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .showcase-image {
        width: 100px;
        height: 100px;
    }
    
    .showcase-info h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-showcase-container {
        padding: 0 1rem;
    }
    
    .showcase-header {
        padding: 2rem;
    }
    
    .skill-card {
        padding: 2rem;
    }
    
    .showcase-cta {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* Form Message Styles */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.form-message.error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Loading State */
.contact-form.loading {
    opacity: 0.6;
    pointer-events: none;
}

.contact-form.loading button {
    position: relative;
}

.contact-form.loading button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* Works in 3 Easy Steps Section */
.works-section {
    background: var(--bg-primary);
    padding: 8rem 2rem;
    position: relative;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.works-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
}

.works-card:hover {
    transform: translateY(-8px);
}

.works-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.works-circle-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px dashed rgba(0, 217, 255, 0.4);
    border-radius: 50%;
    animation: rotate-border 20s linear infinite;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.works-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
    z-index: 10;
}

.works-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.works-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.works-image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--accent-cyan);
    opacity: 0.6;
}

.works-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.works-card-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 280px;
}

.works-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.works-footer-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.highlight-text {
    color: var(--accent-cyan);
    font-weight: 700;
}

/* Works Section Responsive */
@media (max-width: 1024px) {
    .works-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    
    .works-image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .works-step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .works-image-placeholder svg {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .works-section {
        padding: 5rem 2rem;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .works-image-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .works-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .works-image-placeholder svg {
        width: 60px;
        height: 60px;
    }
    
    .works-card-title {
        font-size: 1.25rem;
    }
    
    .works-card-description {
        font-size: 0.9rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .works-section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .works-image-wrapper {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }
    
    .works-step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .works-image-placeholder svg {
        width: 50px;
        height: 50px;
    }
    
    .works-card-title {
        font-size: 1.1rem;
    }
    
    .works-footer-text {
        font-size: 1rem;
    }
}


/* Business Hours Section */
.business-hours-section {
    background: var(--bg-secondary);
    padding: 6rem 2rem;
    position: relative;
}

.business-hours-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.business-hours-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hours-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

.hours-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-cyan);
}

.hours-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.hours-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hours-card:hover::before {
    transform: scaleX(1);
}

.hours-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.15);
}

.day-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.time-display {
    margin-bottom: 1.5rem;
}

.time-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.time-local {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.open {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.status-badge.closed {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.hours-note {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: var(--radius-md);
    margin-top: 2rem;
}

.hours-note p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Business Hours Responsive */
@media (max-width: 768px) {
    .business-hours-section {
        padding: 4rem 1.5rem;
    }
    
    .business-hours-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hours-title {
        font-size: 1.875rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hours-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .business-hours-section {
        padding: 3rem 1rem;
    }
    
    .hours-title {
        font-size: 1.5rem;
    }
    
    .day-label {
        font-size: 1rem;
    }
    
    .time-main {
        font-size: 1.25rem;
    }
}

/* TikTok Video Labels */
.video-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 217, 255, 0.9);
    color: var(--bg-primary);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Ensure TikTok video cards have position relative for label positioning */
.tiktok-video-card {
    position: relative;
}


/* Video Lightbox Modal */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    z-index: 10000;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#lightboxVideo {
    width: 100%;
    height: 100%;
    max-height: 85vh;
    object-fit: contain;
    background: #000;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(239, 68, 68, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    color: #fff;
}

.lightbox-close:hover {
    background: rgba(239, 68, 68, 1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        max-height: 95vh;
    }
    
    #lightboxVideo {
        max-height: 90vh;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
    
    .lightbox-close svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        width: 98%;
        border-radius: 8px;
    }
    
    .lightbox-close {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }
}


/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Chat Toggle Button (Floating Icon) */
.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: chatBtnFloat 3s ease-in-out infinite;
}

/* Rotating gradient ring around button */
.chat-toggle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #ef4444, #ff6b6b, #fbbf24, #00d9ff, #a855f7, #ef4444
    );
    animation: chatRingRotate 3s linear infinite;
    z-index: -1;
}

/* Inner mask to keep button clean */
.chat-toggle::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    z-index: 0;
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
}

.chat-toggle:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 35px rgba(239, 68, 68, 0.7);
    animation: none;
}

.chat-toggle:active {
    transform: scale(0.95);
}

@keyframes chatBtnFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

@keyframes chatRingRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Chat Badge (Notification) */
.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fbbf24;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid #fff;
    z-index: 2;
    animation: chatBadgePop 1.5s ease-in-out infinite;
}

@keyframes chatBadgePop {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.2); }
}

.chat-badge.hidden {
    display: none;
}

/* Chat Window (Modal) */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 600px;
    background: linear-gradient(160deg, #0d0d1a 0%, #0a0a0f 60%, #120a0a 100%);
    border-radius: 16px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(239, 68, 68, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(239, 68, 68, 0.2);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

/* Animated top accent line */
.chat-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ef4444, #fbbf24, #00d9ff, #a855f7, #ef4444);
    background-size: 300% 100%;
    animation: chatTopLine 3s linear infinite;
    z-index: 10;
}

@keyframes chatTopLine {
    0%   { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 16px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(239, 68, 68, 0.3);
}

.chat-header-content h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.chat-status {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.chat-close {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-close svg {
    width: 20px;
    height: 20px;
}

/* Chat Messages Container */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #0a0a0f;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(239, 68, 68, 0.3);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(239, 68, 68, 0.5);
}

/* Chat Message */
.chat-message {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.user-message {
    align-items: flex-end;
}

.chat-message.bot-message {
    align-items: flex-start;
}

.message-content {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    word-wrap: break-word;
}

.user-message .message-content {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    border-radius: 12px 4px 12px 12px;
}

.bot-message .message-content {
    background: rgba(255, 255, 255, 0.05);
    color: #b4b4c8;
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: 4px 12px 12px 12px;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.message-time {
    font-size: 12px;
    color: #666;
    padding: 0 4px;
}

/* Chat Input Area */
.chat-input-area {
    padding: 12px;
    border-top: 1px solid rgba(239, 68, 68, 0.1);
    background: #0a0a0f;
    border-radius: 0 0 12px 12px;
}

.chat-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.chat-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.chat-input::placeholder {
    color: #666;
}

.chat-send {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.chat-send:active {
    transform: scale(0.95);
}

.chat-send svg {
    width: 18px;
    height: 18px;
}

/* File Upload Button */
.chat-file-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-right: 8px;
}

.chat-file-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.chat-file-btn:active {
    transform: scale(0.95);
}

.chat-file-btn svg {
    width: 18px;
    height: 18px;
}

.file-input-hidden {
    display: none;
}

/* File Message Styling */
.file-message {
    margin: 0.75rem 0;
}

.file-preview {
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.file-preview-image {
    max-width: 250px;
    max-height: 250px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.file-preview-image:hover {
    transform: scale(1.02);
}

.file-preview-pdf {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-preview-pdf:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.file-preview-pdf-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

.file-preview-pdf-info {
    flex: 1;
    min-width: 0;
}

.file-preview-pdf-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    word-break: break-word;
}

.file-preview-pdf-size {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.file-preview-pdf-download {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    flex-shrink: 0;
}

/* Chat Widget Responsive - Mobile First */

/* Tablets and smaller screens (600px and below) */
@media (max-width: 600px) {
    .chat-window {
        width: 95vw;
        height: 75vh;
        max-height: 600px;
        bottom: 80px;
        right: 2.5vw;
        left: 2.5vw;
        border-radius: 16px;
    }
    
    .chat-toggle {
        width: 58px;
        height: 58px;
        bottom: 20px;
        right: 20px;
    }
    
    .chat-toggle svg {
        width: 26px;
        height: 26px;
    }
    
    .chat-header {
        padding: 14px;
    }
    
    .chat-header-content h3 {
        font-size: 15px;
    }
    
    .chat-header-content p {
        font-size: 12px;
    }
    
    .chat-messages {
        padding: 12px;
    }
    
    .chat-message {
        margin-bottom: 10px;
    }
    
    .message-content {
        font-size: 14px;
        line-height: 1.5;
        max-width: 85%;
    }
    
    .message-time {
        font-size: 11px;
        margin-top: 4px;
    }
    
    .chat-input-area {
        padding: 14px;
        gap: 8px;
    }
    
    .chat-form {
        gap: 10px;
    }
    
    .chat-input {
        padding: 12px 14px;
        font-size: 15px;
        min-height: 44px;
        border-radius: 8px;
    }
    
    .chat-send {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 8px;
    }
    
    .chat-send svg {
        width: 20px;
        height: 20px;
    }
    
    .chat-file-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 8px;
        margin-right: 0;
    }
    
    .chat-file-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .chat-close {
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
    
    .file-preview-image {
        max-width: 100%;
        max-height: 250px;
    }
    
    .file-download-container {
        padding: 10px;
        font-size: 13px;
    }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 30px);
        height: 70vh;
        max-height: 500px;
        bottom: 75px;
        right: 15px;
        left: 15px;
        border-radius: 14px;
    }
    
    .chat-toggle {
        width: 54px;
        height: 54px;
        bottom: 15px;
        right: 15px;
    }
    
    .chat-toggle svg {
        width: 24px;
        height: 24px;
    }
    
    .chat-header {
        padding: 12px;
    }
    
    .chat-header-content h3 {
        font-size: 14px;
    }
    
    .chat-header-content p {
        font-size: 11px;
    }
    
    .chat-messages {
        padding: 10px;
    }
    
    .message-content {
        font-size: 13px;
        max-width: 90%;
    }
    
    .message-time {
        font-size: 10px;
    }
    
    .chat-input-area {
        padding: 12px;
    }
    
    .chat-form {
        gap: 8px;
    }
    
    .chat-input {
        padding: 11px 12px;
        font-size: 14px;
        min-height: 42px;
    }
    
    .chat-send {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }
    
    .chat-send svg {
        width: 18px;
        height: 18px;
    }
    
    .chat-file-btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }
    
    .chat-file-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .file-preview-image {
        max-height: 200px;
    }
}

/* Extra small phones (360px and below) */
@media (max-width: 360px) {
    .chat-window {
        width: calc(100vw - 20px);
        height: 65vh;
        max-height: 450px;
        bottom: 70px;
        right: 10px;
        left: 10px;
    }
    
    .chat-toggle {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }
    
    .chat-toggle svg {
        width: 22px;
        height: 22px;
    }
    
    .chat-header {
        padding: 10px;
    }
    
    .chat-header-content h3 {
        font-size: 13px;
    }
    
    .chat-header-content p {
        font-size: 10px;
    }
    
    .chat-messages {
        padding: 8px;
    }
    
    .message-content {
        font-size: 12px;
        max-width: 95%;
    }
    
    .message-time {
        font-size: 9px;
    }
    
    .chat-input-area {
        padding: 10px;
    }
    
    .chat-form {
        gap: 6px;
    }
    
    .chat-input {
        padding: 10px 11px;
        font-size: 13px;
        min-height: 40px;
    }
    
    .chat-send {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .chat-send svg {
        width: 16px;
        height: 16px;
    }
    
    .chat-file-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .chat-file-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .file-preview-image {
        max-height: 180px;
    }
}
