/* Root Variables */
:root {
    --primary: #0A0A0A;
    --secondary: #00D4FF;
    --accent: #FF0080;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --success: #00FF88;
    --bg-dark: #0A0A0A;
    --bg-light: #1A1A1A;
    --transition: all 0.3s ease;
}

/* Light Theme */
body.light-theme {
    --primary: #FFFFFF;
    --bg-dark: #F5F5F5;
    --bg-light: #FFFFFF;
    --text-primary: #0A0A0A;
    --text-secondary: #666666;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;            /* Center horizontally */
    padding: 0 20px;           /* Side padding */
          
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.accent {
    color: var(--accent);
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s;
}

.loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: var(--secondary);
}

.loader-cursor {
    animation: blink 1s infinite;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: transform 0.1s;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-trail {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s;
}

/* Navigation *//* Enhanced Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: var(--bg-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   
     
}

.navbar.scrolled {
    padding: 15px 0;
    background:var(--bg-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

/* Animated Logo */
.logo-animation {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float-rotate 6s ease-in-out infinite;
}

@keyframes float-rotate {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(180deg); }
}

.code-symbol {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.logo-animation:hover .logo-icon {
    animation-duration: 2s;
}

/* Enhanced Nav Links */
.nav-link {
    position: relative;
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    padding: 10px 20px;
    overflow: hidden;
    transition: color 0.3s ease;
    display: inline-block;
    border: none !important;
    outline: none !important;
}

.nav-link span {
    position: relative;
    z-index: 2;
}

.nav-link::before {
    display: none;
}

.nav-indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0; /* Hide by default */
}

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

.nav-link:hover .nav-indicator {
    transform: translateX(-50%) scaleX(1);
    opacity: 1; 
}

/* Magnetic Button Effect */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Theme Toggle */
.theme-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-icon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun-icon, .moon-icon {
    position: absolute;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.sun-icon {
    color: #FFD700;
    opacity: 0;
    transform: scale(0) rotate(180deg);
}

.moon-icon {
    color: var(--secondary);
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

body.light-theme .sun-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

body.light-theme .moon-icon {
    opacity: 0;
    transform: scale(0) rotate(180deg);
}

/* Enhanced Hamburger Menu */
.hamburger {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 12px; }
.hamburger span:nth-child(3) { bottom: 0; }

.nav-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 12px;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Hero Background Effects */
.hero-background {
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(100px);
    opacity: 0.5;
}

.orb {
    position: absolute;
    border-radius: 50%;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--success) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 10s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* 3D Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    transform-style: preserve-3d;
    animation: rotate-cube 20s linear infinite;
}

@keyframes rotate-cube {
    0% { transform: rotateX(0) rotateY(0) rotateZ(0); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 128, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cube-face.front { transform: translateZ(30px); }
.cube-face.back { transform: rotateY(180deg) translateZ(30px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(30px); }
.cube-face.right { transform: rotateY(90deg) translateZ(30px); }
.cube-face.top { transform: rotateX(90deg) translateZ(30px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(30px); }

.floating-icon {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    opacity: 0.3;
    animation: float-icon 15s ease-in-out infinite;
}
.floating-icon,
.floating-emoji {
    position: absolute;
    pointer-events: none;
    user-select: none;
}
.html-icon {
    top: 25%;
    left: 10%;
    font-size: 1.5rem;
    color: var(--secondary);
    animation-delay: 0s;
}

.css-icon {
    bottom: 30%;
    left: 20%;
    font-size: 1.25rem;
    color: var(--accent);
    animation-delay: 5s;
}

.js-icon {
    top: 40%;
    right: 10%;
    font-size: 1.75rem;
    color: var(--success);
    animation-delay: 10s;
}

@keyframes float-icon {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(10deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-10deg);
    }
    75% {
        transform: translate(30px, 10px) rotate(5deg);
    }
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    animation: bounce-float 4s ease-in-out infinite;
}

.floating-emoji:nth-child(4) {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.floating-emoji:nth-child(5) {
    bottom: 20%;
    right: 25%;
    animation-delay: 1.5s;
}

.floating-emoji:nth-child(6) {
    top: 60%;
    left: 15%;
    animation-delay: 3s;
}

@keyframes bounce-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}


/* Hero Content */
.hero-content {
   position: relative;
    z-index: 10; /* Increased from 3 */
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 136, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--success);
    font-size: 0.875rem;
    animation: pulse-glow 2s ease-in-out infinite;
    margin-top: 10px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
}

/* Enhanced Hero Title */
.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary); /* Ensure text is visible */
}

.title-word {
    display: inline-block;
    margin: 0 0.2em; /* Add spacing between words */
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }

@keyframes word-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #00D4FF, #FF0080, #00D4FF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* Enhanced Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle-icon {
    display: inline-block;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.highlight-text {
    color: var(--secondary);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: right;
    animation: underline-reveal 1s ease-out 1s forwards;
}

@keyframes underline-reveal {
    to { transform: scaleX(1); transform-origin: left; }
}

/* Hero Features Pills */
.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--secondary);
    transform: translateY(-2px);
    color: var(--secondary);
}

.feature-pill i {
    color: var(--secondary);
}

/* Enhanced CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.button-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover .button-bg {
    left: 0;
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

.cta-button.secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Social Proof Section */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.client-avatars {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    margin-left: -15px;
    transition: all 0.3s ease;
}

.client-avatar:first-child {
    margin-left: 0;
}

.client-avatar:hover {
    transform: scale(1.1) translateY(-5px);
    z-index: 10;
}

.more-clients {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: -15px;
    font-weight: 700;
    font-size: 0.875rem;
}

.social-proof-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.proof-highlight {
    color: var(--secondary);
    font-weight: 600;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse-wrapper {
    position: relative;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--secondary);
    border-radius: 25px;
    position: relative;
    margin: 0 auto;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--secondary);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: wheel-scroll 2s ease-in-out infinite;
}

@keyframes wheel-scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.arrow-down {
    margin-top: 10px;
    color: var(--secondary);
    animation: arrow-bounce 1s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-toggle {
    display: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .floating-cube {
        width: 40px;
        height: 40px;
        top: 10%;
        right: 5%;
    }
    
    .cube-face {
        width: 40px;
        height: 40px;
    }
    
    .cube-face.front,
    .cube-face.back,
    .cube-face.left,
    .cube-face.right,
    .cube-face.top,
    .cube-face.bottom {
        transform: translateZ(20px);
    }
    
    .floating-icon {
        font-size: 1rem;
    }
    
    .floating-emoji {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-features {
        padding: 0 20px;
    }
    
    .feature-pill {
        font-size: 0.75rem;
        padding: 10px 20px;
    }
    
    .hero-social-proof {
        flex-direction: column;
        gap: 15px;
    }
    
    .client-avatar {
        width: 35px;
        height: 35px;
    }
    
    .more-clients {
        width: 35px;
        height: 35px;
    }
    
    .gradient-orbs {
        opacity: 0.3;
    }
    
    .orb-1 {
        width: 300px;
        height: 300px;
    }
    
    .orb-2 {
        width: 200px;
        height: 200px;
    }
    
    .orb-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .feature-pill {
        gap: 5px;
        padding: 8px 16px;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Animation Classes for Scroll */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-up.animated {
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Disable animations for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}




/* Remove any default link styling */
a.nav-link:link,
a.nav-link:visited,
a.nav-link:hover,
a.nav-link:active {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

/* Remove the nav-indicator that might be causing issues */
.nav-link .nav-indicator {
    display: none !important;
}

/* Simple hover effect for nav links */
.nav-link:hover {
    color: var(--secondary) !important;
}

/* Add a simple underline animation on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Fix the nav-brand */
.nav-brand {
    display: flex;
    align-items: center;
}

/* Ensure theme toggle button has no text decoration */
.theme-toggle {
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Mobile menu fixes */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
}













/* About Section *//* About Section Enhanced Styles */
.about {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

/* About Background */
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float-shape 20s infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    opacity: 0.1;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    opacity: 0.1;
    bottom: 20%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--success);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--secondary);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.name-highlight {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wave-emoji {
    display: inline-block;
    animation: wave 2.5s ease-in-out infinite;
    transform-origin: 70% 70%;
    margin-left: 10px;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* About Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* Profile Card */
.profile-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.profile-image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.profile-status {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.profile-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.decor-circle {
    position: absolute;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate-scale 10s linear infinite;
}

.decor-1 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.decor-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -3s;
}

.decor-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -6s;
}

@keyframes rotate-scale {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.1); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

/* Quick Info */
.quick-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--secondary);
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.achievement-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.achievement-card:hover::before {
    opacity: 0.1;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: white;
}

.achievement-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.achievement-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Bio Content */
.bio-content {
    margin-bottom: 40px;
}

.bio-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.bio-text .highlight {
    color: var(--secondary);
    font-weight: 600;
    position: relative;
}

/* Fun Facts */
.fun-facts {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.fact-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.fact-icon {
    font-size: 1.5rem;
}

.fact-text {
    font-size: 0.9rem;
}

/* Skills Section */
.skills-wrapper {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.skills-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.skills-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

/* Skill Bars */
.skill-bars {
    margin-bottom: 40px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-name {
    font-weight: 600;
}

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

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
    position: relative;
    overflow: hidden;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Tech Stack */
.tech-stack {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tech-item {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--secondary);
}

.tech-item i {
    transition: all 0.3s ease;
}

.tech-item:nth-child(1) i { color: #E34C26; }
.tech-item:nth-child(2) i { color: #1572B6; }
.tech-item:nth-child(3) i { color: #F7DF1E; }
.tech-item:nth-child(4) i { color: #61DAFB; }
.tech-item:nth-child(5) i { color: #339933; }
.tech-item:nth-child(6) i { color: #F05032; }
.tech-item:nth-child(7) i { color: #F24E1E; }
.tech-item:nth-child(8) i { color: #21759B; }

/* Enhanced Stats Container */
.stats-container {
    background: linear-gradient(135deg, var(--bg-light), rgba(0, 212, 255, 0.05));
    border-radius: 30px;
    padding: 60px 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-box {
    text-align: center;
    position: relative;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.stat-box:nth-child(2) .stat-icon { animation-delay: 0.5s; }
.stat-box:nth-child(3) .stat-icon { animation-delay: 1s; }
.stat-box:nth-child(4) .stat-icon { animation-delay: 1.5s; }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.stat-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

/* About CTA */
.about-cta {
    text-align: center;
    margin-top: 60px;
}

.about-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.cta-link:hover::before {
    left: 100%;
}

.cta-link i {
    transition: transform 0.3s ease;
}

.cta-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .fun-facts {
        flex-direction: column;
        gap: 15px;
    }
    
    .fact-item {
        width: 100%;
        justify-content: center;
    }
    
    .tech-stack {
        justify-content: center;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .profile-card {
        padding: 30px 20px;
    }
    
    .bio-text {
        font-size: 1rem;
    }
    
    .skills-wrapper {
        padding: 30px 20px;
    }
    
    .tech-item {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .about-cta p {
        font-size: 1.125rem;
    }
    
    .cta-link {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Add stagger delay for elements */
.about-left.animated {
    animation: slideInLeft 0.8s ease forwards;
}

.about-right.animated {
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Services Section *//* ==========================================
   ENHANCED SERVICES SECTION
   ========================================== */

.services {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 50%, var(--bg-dark) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 15px;
    font-weight: 300;
}

/* Services Stats */
.services-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.services-stats .stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-stats .stat-item::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.6s ease;
}

.services-stats .stat-item:hover::before {
    left: 100%;
}

.services-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 0, 128, 0.2);
}

.services-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.services-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 0, 128, 0.3);
}

/* Featured Card */
.service-card.featured {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 60px rgba(255, 0, 128, 0.4);
}

/* Service Header */
.service-header {
    padding: 35px 35px 20px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--secondary);
    z-index: 3;
    position: relative;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 20px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.service-card:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* Service Badges */
.service-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
}

.featured-badge {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--primary);
}

.custom-badge {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
}

/* Service Content */
/* Service Content */
.service-content {
    padding: 0 35px 30px;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
}

/* Service Price */
.service-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 5px;
}

.custom-price {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Features */
.service-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Feature Item Types */
.feature-item i {
    color: var(--secondary);
}

.feature-item.bonus i {
    color: #00ff88;
}

.feature-item.requirement i {
    color: #feca57;
}

.feature-item.highlight i {
    color: var(--accent);
}

.feature-item.limitation i {
    color: #ff6b6b;
}

.feature-item.extra i {
    color: #a29bfe;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding-left: 15px;
}

/* Service Note */
.service-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    margin-bottom: 30px;
}

.service-note i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.service-note span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Service Footer */
.service-footer {
    padding: 0 35px 35px;
    position: relative;
    z-index: 2;
}

.service-button {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--primary);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

.service-button:hover::before {
    left: 100%;
}

.service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.4);
}

.service-button i {
    transition: transform 0.3s ease;
}

.service-button:hover i {
    transform: translateX(5px);
}

/* Featured Button */
.featured-button {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.3);
}

.featured-button:hover {
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.5);
}

/* Custom Button */
.custom-button {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.custom-button:hover {
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.4);
}

/* Services CTA */
.services-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-cta:hover::before {
    opacity: 1;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 0, 128, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-15px);
    }

    .services-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }

    .services-header {
        margin-bottom: 50px;
    }

    .services-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 60px;
    }

    .services-stats .stat-item {
        width: 100%;
        max-width: 250px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }

    .service-header {
        padding: 25px 25px 15px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .service-content {
        padding: 0 25px 25px;
    }

    .service-footer {
        padding: 0 25px 25px;
    }

    .service-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .service-button {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .services-cta {
        padding: 40px 20px;
        margin: 0 10px;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 60px 0;
    }

    .service-header {
        padding: 20px 20px 15px;
    }

    .service-content {
        padding: 0 20px 20px;
    }

    .service-footer {
        padding: 0 20px 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2rem;
    }

    .feature-item {
        padding: 10px 0;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

    .service-note {
        padding: 12px 15px;
    }

    .service-button {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
}

/* Dark/Light Theme Support */
.light-theme .services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.light-theme .service-card {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.light-theme .services-stats .stat-item {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.light-theme .services-cta {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05), rgba(0, 255, 255, 0.05));
    border-color: rgba(0, 0, 0, 0.1);
}

.light-theme .feature-item {
    border-color: rgba(0, 0, 0, 0.05);
}

.light-theme .service-note {
    background: rgba(0, 0, 0, 0.05);
}

/* Print Styles */
@media print {
    .services {
        background: white !important;
        color: black !important;
    }

    .service-card {
        background: white !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
    }

    .service-button {
        display: none;
    }
}

/* Accessibility Improvements */
.service-button:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

.cta-button:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card {
        border-width: 2px;
    }

    .service-card.featured {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .service-card {
        animation: none;
        transition: none;
    }

    .service-button::before,
    .services-cta::before {
        display: none;
    }
}


/* ==========================================
   SERVICE ENHANCEMENT STYLES
   ========================================== */

/* Compare Services Button */
.compare-services-btn,
.service-calculator-btn {
    margin: 20px 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--primary);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.compare-services-btn:hover,
.service-calculator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.3);
}

/* Modal Styles */
.service-comparison-modal,
.service-calculator-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-comparison-modal.active,
.service-calculator-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--bg-dark);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Comparison Table */
.comparison-table {
    padding: 30px;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(255, 0, 128, 0.1);
    color: var(--text-light);
    font-weight: 600;
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Calculator Form */
.calculator-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    /* background: transparent; */
    color: var(--text-light);
    font-weight: 600;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
}
.form-group option {
    background: var(--bg-dark);
    color: var(--text-light);
}
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary);
}

.checkbox-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Calculator Result */
.calculator-result {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-breakdown {
    margin-bottom: 25px;
}

.base-price,
.feature-item,
.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.base-price span:first-child,
.feature-item span:first-child,
.total-price span:first-child {
    color: var(--text-secondary);
}

.base-price span:last-child,
.feature-item span:last-child {
    color: var(--text-light);
    font-weight: 600;
}

.total-price {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--secondary);
}

.total-price span:last-child {
    color: var(--secondary);
    font-size: 1.5rem;
}

.get-quote-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.3);
}

/* FAQ Styles */
.services-faq {
    margin-bottom: 80px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.faq-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.2);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for New Features */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }

    .modal-header {
        padding: 20px;
    }

    .comparison-table {
        padding: 20px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .calculator-form {
        padding: 20px;
    }

    .checkbox-item {
        padding: 10px 12px;
    }

    .checkbox-item span {
        font-size: 0.9rem;
    }

    .compare-services-btn,
    .service-calculator-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 10px;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .comparison-table table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 5px;
    }

    .calculator-form {
        padding: 15px;
    }

    .calculator-result {
        padding: 20px;
    }

    .total-price span:last-child {
        font-size: 1.3rem;
    }
}

/* Additional Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom Scrollbar for Modals */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Service Card Interactions */
.service-card[data-service="student"] .service-icon i {
    color: #feca57;
}

.service-card[data-service="single"] .service-icon i {
    color: #48dbfb;
}

.service-card[data-service="business"] .service-icon i {
    color: var(--secondary);
}

.service-card[data-service="custom"] .service-icon i {
    color: #a29bfe;
}

/* Feature Icon Colors */
.feature-item i.fa-check {
    color: #00ff88;
}

.feature-item i.fa-times {
    color: #ff6b6b;
}

.feature-item i.fa-gift {
    color: #feca57;
}

.feature-item i.fa-file-pdf {
    color: #ff9ff3;
}

.feature-item i.fa-graduation-cap {
    color: #54a0ff;
}

.feature-item i.fa-exclamation-triangle {
    color: #ff9f43;
}

.feature-item i.fa-lightbulb {
    color: #feca57;
}

.feature-item i.fa-puzzle-piece {
    color: #5f27cd;
}

.feature-item i.fa-sync-alt {
    color: #00d2d3;
}

.feature-item i.fa-headset {
    color: #ff6b6b;
}

.feature-item i.fa-plus {
    color: #a29bfe;
}

/* Print Styles for Modals */
@media print {

    .service-comparison-modal,
    .service-calculator-modal {
        display: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .modal-content {
        border-width: 2px;
    }

    .faq-item.active {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .modal-content,
    .faq-answer,
    .faq-question i {
        transition: none;
    }

    .fade-in,
    .slide-in {
        animation: none;
    }
}
/* Portfolio Section *//* Portfolio Section Enhancements */
.portfolio {
    padding: 100px 0;
    background-image:
            linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.portfolio .container {
    position: relative;
    z-index: 2;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 10px;
    font-weight: 300;
}

.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-button {
    position: relative;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 128, 0.3);
    color: var(--text-light);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-button:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.filter-button.active {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    border-color: var(--secondary);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.filter-count {
    font-size: 0.8rem;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 500;
}

.filter-button.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.portfolio-item:nth-child(1) {
    animation-delay: 0.1s;
}

.portfolio-item:nth-child(2) {
    animation-delay: 0.2s;
}

.portfolio-item:nth-child(3) {
    animation-delay: 0.3s;
}

.portfolio-item:nth-child(4) {
    animation-delay: 0.4s;
}

.portfolio-item:nth-child(5) {
    animation-delay: 0.5s;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.2);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 20px 20px 0 0;
}

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

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    animation: pulse 2s infinite;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.95), rgba(0, 255, 255, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px 20px 0 0;
}

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

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

.overlay-content {
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.portfolio-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.portfolio-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.portfolio-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.portfolio-link.live:hover {
    background: #00ff88;
    border-color: #00ff88;
    color: var(--primary);
}

.portfolio-link.code:hover {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.portfolio-tech span {
    font-size: 0.8rem;
    padding: 6px 12px;
    background: rgba(255, 0, 128, 0.1);
    color: var(--secondary);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 128, 0.2);
    font-weight: 500;
}

.project-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.portfolio-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.portfolio-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-cta p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
/* Responsive Design - Continued */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-stats {
        gap: 30px;
    }

    .portfolio-filters {
        gap: 10px;
    }

    .filter-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .portfolio-item {
        margin: 0 10px;
    }

    .portfolio-image {
        height: 200px;
    }

    .overlay-content h3 {
        font-size: 1.3rem;
    }

    .overlay-content p {
        font-size: 0.9rem;
    }

    .portfolio-links {
        flex-direction: column;
        gap: 10px;
    }

    .portfolio-link {
        padding: 12px 20px;
        justify-content: center;
    }

    .portfolio-cta {
        padding: 40px 20px;
        margin: 0 10px;
    }

    .portfolio-cta h3 {
        font-size: 1.5rem;
    }

    .stat-item {
        min-width: 100px;
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .portfolio {
        padding: 80px 0;
    }

    .portfolio-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .portfolio-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .filter-button {
        flex-direction: column;
        gap: 5px;
        padding: 8px 15px;
    }

    .portfolio-tech {
        gap: 5px;
    }

    .portfolio-tech span {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* Additional Animation Classes */
.animate-in {
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-particle {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
}

/* Loading states */
.portfolio-grid.loading {
    opacity: 0.7;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

/* Enhanced hover states */
.portfolio-item:hover .project-status {
    animation: none;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    transform: scale(1.1);
}

.portfolio-tech span:hover {
    background: rgba(255, 0, 128, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}
/* Process Section *//* ==========================================
   ENHANCED PROCESS SECTION
   ========================================== */

.process {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 50%, var(--bg-dark) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 15px;
    font-weight: 300;
}

/* Process Stats */
.process-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::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;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Timeline Wrapper */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 100%;
    width: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    z-index: 1;
}

.progress-line {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--secondary), var(--accent));
    border-radius: 2px;
    transition: height 1s ease;
    position: relative;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
}

/* Timeline Items */
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

/* Timeline Icons */
.timeline-icon {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-inner {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-inner i {
    font-size: 1.8rem;
    color: var(--primary);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.timeline-item:hover .icon-inner {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

/* Timeline Content */
.timeline-content {
    width: 45%;
    position: relative;
    z-index: 2;
}

.content-inner {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-inner::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.6s ease;
}

.timeline-item:hover .content-inner::before {
    left: 100%;
}

.timeline-item:hover .content-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 0, 128, 0.2);
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 0, 128, 0.1);
    line-height: 1;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.process-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.feature {
    padding: 8px 16px;
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid rgba(255, 0, 128, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 0, 128, 0.2);
    transform: translateY(-2px);
}

/* Content Decoration */
.content-decoration {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item:nth-child(odd) .content-decoration {
    right: auto;
    left: -60px;
}

.floating-element {
    font-size: 3rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Process CTA */
/* Process CTA */
.process-cta {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-cta:hover::before {
    opacity: 1;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-stats {
        gap: 30px;
    }

    .stat-card {
        padding: 20px 30px;
    }

    .timeline-content {
        width: 42%;
    }

    .content-inner {
        padding: 30px;
    }

    .step-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 80px 0;
    }

    .process-header {
        margin-bottom: 60px;
    }

    .process-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 60px;
    }

    .stat-card {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .timeline-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }

    .timeline-progress {
        left: 30px;
        transform: none;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 60px;
        padding-left: 80px;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: column !important;
    }

    .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }

    .content-inner {
        padding: 25px;
    }

    .content-decoration {
        display: none;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .step-number {
        font-size: 2.5rem;
        top: -5px;
        right: 15px;
    }

    .process-features {
        gap: 8px;
    }

    .feature {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .process-cta {
        padding: 40px 20px;
        margin: 60px 10px 0;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process {
        padding: 60px 0;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-icon {
        left: 20px;
        width: 60px;
        height: 60px;
    }

    .icon-inner {
        width: 60px;
        height: 60px;
    }

    .icon-inner i {
        font-size: 1.4rem;
    }

    .timeline-progress {
        left: 20px;
    }

    .content-inner {
        padding: 20px;
    }

    .step-number {
        font-size: 2rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* Dark/Light Theme Adjustments */
.light-theme .process {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.light-theme .stat-card {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.light-theme .content-inner {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.light-theme .timeline-progress {
    background: rgba(0, 0, 0, 0.1);
}

.light-theme .icon-inner {
    border-color: var(--bg-light);
}

.light-theme .process-cta {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05), rgba(0, 255, 255, 0.05));
    border-color: rgba(0, 0, 0, 0.1);
}

/* Animation Classes */
.timeline-item.animate-in {
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects Enhancement */
.timeline-item:hover .floating-element {
    animation-duration: 1s;
    transform: scale(1.2);
}

.timeline-item:hover .feature {
    animation: bounce 0.5s ease infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-3px);
    }
}

/* Loading Animation for Progress Line */
.progress-line.animate {
    animation: fillProgress 3s ease-in-out forwards;
}

@keyframes fillProgress {
    from {
        height: 0%;
    }

    to {
        height: 100%;
    }
}

/* Accessibility Improvements */
.timeline-item:focus-within .content-inner {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

.cta-button:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .process {
        background: white !important;
        color: black !important;
    }

    .timeline-progress,
    .icon-pulse,
    .floating-element {
        display: none;
    }

    .timeline-item {
        page-break-inside: avoid;
    }
}
/* Testimonials Section */
.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.5s;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--text-secondary);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 64, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 18px;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    font-size: 1rem;
    font-weight: 500;
}

.form-group.focused label,
.form-group.has-value label,
.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
    top: -12px;
    left: 12px;
    font-size: 0.875rem;
    background: var(--bg-light);
    padding: 0 8px;
    color: var(--secondary);
    font-weight: 600;
}

.form-group select~label {
    top: -12px;
    left: 12px;
    font-size: 0.875rem;
    background: var(--bg-light);
    padding: 0 8px;
    color: var(--secondary);
    font-weight: 600;
}

/* Error states */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
    animation: shake 0.5s ease-in-out;
}

.form-group.error label {
    color: #ff4757;
}

.error-message {
    position: absolute;
    bottom: -25px;
    left: 15px;
    color: #ff4757;
    font-size: 0.875rem;
    font-weight: 500;
    animation: slideInUp 0.3s ease;
}

.form-error-message {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid #ff4757;
    color: #ff4757;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInUp 0.3s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

.submit-button:hover::before {
    left: 100%;
}

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

.submit-button.loading {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    cursor: not-allowed;
    pointer-events: none;
}

.submit-button.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.submit-button.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.submit-button:disabled {
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Contact Info Enhanced */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(0, 212, 255, 0.3);
}

.info-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: rotateY(360deg);
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-link {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* Notification Styles */
/* Notification Styles - Continuing from where I left off */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.notification.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.notification.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.notification.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px 12px;
    }

    .submit-button {
        padding: 15px;
        font-size: 0.95rem;
    }

    .info-item {
        padding: 20px 15px;
    }

    .info-item i {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .social-links {
        justify-content: center;
    }

    .notification {
        right: 10px;
        left: 10px;
        top: 10px;
        transform: translateY(-100%);
    }

    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 10px;
    }

    .form-group label {
        left: 12px;
        top: 12px;
    }

    .form-group.focused label,
    .form-group.has-value label,
    .form-group input:focus~label,
    .form-group input:valid~label,
    .form-group textarea:focus~label,
    .form-group textarea:valid~label {
        left: 8px;
        top: -10px;
    }

    .submit-button {
        padding: 12px;
        font-size: 0.9rem;
    }

    .info-item {
        padding: 15px 10px;
        gap: 15px;
    }

    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Additional Animation Classes */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.submit-button.loading {
    animation: pulse 2s infinite;
}

/* Focus visible for accessibility */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.submit-button:focus-visible,
.social-link:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .contact-form-wrapper {
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(0, 212, 255, 0.3);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(0, 212, 255, 0.3);
    }

    .info-item {
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(0, 212, 255, 0.2);
    }
}

/* Footer */
.footer {
    background: var(--primary);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--secondary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 100px 30px;
        transition: right 0.3s;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-icon {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 80px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        right: 30px;
        bottom: 110px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
}