/*

TemplateMo 593 personal shape

https://templatemo.com/tm-593-personal-shape

*/

@charset "utf-8";
/* CSS Document */

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

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
            color: var(--text-light);
            padding: 3rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
            opacity: 0.4;
        }

        .footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
        }

        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }

        .footer-left {
            text-align: center;
            width: 100%;
        }

        .footer-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 80px;
            width: auto;
            object-fit: contain;
            background: rgba(255, 255, 255, 0.95);
            padding: 0.75rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .footer-left p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
            text-align: center;
        }

        .footer-right {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-right a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-right a:hover {
            color: var(--text-light);
            transform: translateY(-1px);
        }

        .footer-right a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -3px;
            left: 0;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .footer-right a:hover::after {
            width: 100%;
        }

        .footer-copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
        }

        .footer-copyright p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0 0 1rem 0;
        }

        .footer-copyright-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }

        .footer-copyright-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-copyright-links a:hover {
            color: var(--text-light);
            transform: translateY(-1px);
        }

        .footer-copyright-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -3px;
            left: 0;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .footer-copyright-links a:hover::after {
            width: 100%;
        }

        /* Footer Mobile Responsiveness */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-right {
                justify-content: center;
                gap: 1.5rem;
            }

            .footer-right a {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .footer-right {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Scroll to Top Button */
        #scrollToTop,
        button#scrollToTop,
        .scroll-to-top {
            position: fixed !important;
            bottom: 2rem !important;
            right: 2rem !important;
            width: 50px !important;
            height: 50px !important;
            min-width: 50px !important;
            min-height: 50px !important;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
            border: none !important;
            border-radius: 50% !important;
            color: #ffffff !important;
            cursor: pointer !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            z-index: 99999 !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transform: translateY(20px) !important;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
            pointer-events: none !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        
        /* Show button when visible class is added or body has scrolled class */
        #scrollToTop.visible,
        button#scrollToTop.visible,
        .scroll-to-top.visible,
        body.scrolled #scrollToTop,
        body.scrolled button#scrollToTop,
        body.scrolled .scroll-to-top {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            pointer-events: auto !important;
        }
        
        /* Make button visible when body has scrolled class or has visible class */
        body.scrolled #scrollToTop,
        body.scrolled button#scrollToTop,
        body.scrolled .scroll-to-top,
        #scrollToTop.visible,
        button#scrollToTop.visible,
        .scroll-to-top.visible {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            pointer-events: auto !important;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .scroll-to-top:active {
            transform: translateY(-2px);
        }

        .scroll-to-top svg {
            width: 20px;
            height: 20px;
        }
        
        /* Navigation Help Button */
        .nav-help-btn {
            position: fixed !important;
            bottom: 5.5rem !important;
            right: 2rem !important;
            width: 50px !important;
            height: 50px !important;
            min-width: 50px !important;
            min-height: 50px !important;
            max-width: 50px !important;
            max-height: 50px !important;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
            border: none !important;
            border-radius: 50% !important;
            color: #ffffff !important;
            cursor: pointer !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            z-index: 99998 !important;
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
            margin: 0 !important;
            padding: 0 !important;
            box-sizing: border-box !important;
        }
        
        .nav-help-btn:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
        }
        
        .nav-help-btn:active {
            transform: translateY(-2px) !important;
        }
        
        .nav-help-btn svg {
            width: 20px;
            height: 20px;
        }
        
        /* Navigation Help Modal */
        .nav-help-modal {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background: rgba(0, 0, 0, 0.7) !important;
            backdrop-filter: blur(10px) !important;
            display: none !important;
            justify-content: center !important;
            align-items: center !important;
            z-index: 100002 !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transition: opacity 0.3s ease, visibility 0.3s ease !important;
            padding: 1rem;
            box-sizing: border-box;
        }
        
        .nav-help-modal.active {
            opacity: 1 !important;
            visibility: visible !important;
            display: flex !important;
        }
        
        .nav-help-modal-content {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            border-radius: 25px;
            padding: 0;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.9) translateY(20px);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .nav-help-modal.active .nav-help-modal-content {
            transform: scale(1) translateY(0);
        }
        
        .nav-help-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 2rem 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .nav-help-modal-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-light);
            margin: 0;
        }
        
        .nav-help-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-light);
        }
        
        .nav-help-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
        
        .nav-help-close svg {
            width: 20px;
            height: 20px;
        }
        
        .nav-help-modal-body {
            padding: 2rem;
        }
        
        .nav-help-intro {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem 1.75rem;
            margin: -0.5rem -0.5rem 1.75rem;
            border-radius: 20px;
            background: rgba(15, 23, 42, 0.35);
            border: 1px solid rgba(148, 163, 184, 0.35);
        }
        
        .nav-help-brand-logo {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 18px;
            background: radial-gradient(circle at 0% 0%, #f97316, #ec4899 45%, #6366f1 90%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(15, 23, 42, 0.7);
        }
        
        .nav-help-brand-logo img {
            max-width: 70%;
            max-height: 70%;
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.6));
        }
        
        .nav-help-brand-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        
        .nav-help-company-name {
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(248, 250, 252, 0.95);
        }
        
        .nav-help-tagline {
            font-size: 0.95rem;
            color: rgba(226, 232, 240, 0.9);
        }
        
        .nav-help-section {
            margin-bottom: 2rem;
        }
        
        .nav-help-section:last-child {
            margin-bottom: 0;
        }
        
        .nav-help-section h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.22);
        }
        
        .nav-help-text {
            color: rgba(226, 232, 240, 0.9);
            font-size: 0.98rem;
            line-height: 1.8;
            margin: 0;
        }
        
        .nav-help-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .nav-help-list li {
            color: rgba(248, 250, 252, 0.95);
            font-size: 0.98rem;
            line-height: 1.8;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .nav-help-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: rgba(209, 213, 219, 0.9);
            font-weight: bold;
        }
        
        .nav-help-contact-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
            gap: 1.5rem;
            align-items: stretch;
        }
        
        .nav-help-contact-details {
            font-size: 0.95rem;
            color: rgba(226, 232, 240, 0.9);
            line-height: 1.7;
        }
        
        .nav-help-contact-details p {
            margin: 0 0 0.75rem;
        }
        
        .nav-help-contact-details strong {
            font-weight: 600;
        }
        
        .nav-help-contact-details a {
            color: inherit;
            text-decoration: none;
            border-bottom: 1px dashed rgba(226, 232, 240, 0.6);
        }
        
        .nav-help-contact-details a:hover {
            border-bottom-style: solid;
        }
        
        .nav-help-map {
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 14px 35px rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(148, 163, 184, 0.4);
            min-height: 200px;
        }
        
        .nav-help-map iframe {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 220px;
            border: 0;
        }
        
        .nav-help-list li strong {
            color: var(--text-light);
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .nav-help-btn,
            #navHelpBtn.nav-help-btn,
            button#navHelpBtn.nav-help-btn,
            #navHelpBtn {
                position: fixed !important;
                bottom: calc(1.5rem + 45px + 0.5rem) !important;
                right: 1.5rem !important;
                left: auto !important;
                top: auto !important;
                width: 45px !important;
                height: 45px !important;
                min-width: 45px !important;
                min-height: 45px !important;
                max-width: 45px !important;
                max-height: 45px !important;
                z-index: 99998 !important;
                margin: 0 !important;
                padding: 0 !important;
                box-sizing: border-box !important;
                border: none !important;
                outline: none !important;
                transform: none !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                flex-shrink: 0 !important;
                flex-grow: 0 !important;
            }
            
            .nav-help-btn svg,
            #navHelpBtn svg,
            button#navHelpBtn svg {
                width: 18px !important;
                height: 18px !important;
                margin: 0 !important;
                padding: 0 !important;
                display: block !important;
                flex-shrink: 0 !important;
            }
            
            .nav-help-btn:hover,
            .nav-help-btn:active,
            .nav-help-btn:focus,
            #navHelpBtn:hover,
            #navHelpBtn:active,
            #navHelpBtn:focus {
                transform: none !important;
            }
            
            .nav-help-modal-content {
                max-width: 95%;
                max-height: 85vh;
            }
            
            .nav-help-modal-header {
                padding: 1.5rem 1.5rem 1rem;
            }
            
            .nav-help-modal-header h3 {
                font-size: 1.5rem;
            }
            
            .nav-help-modal-body {
                padding: 1.5rem;
            }
            
            .nav-help-section h4 {
                font-size: 1.1rem;
            }
            
            .nav-help-list li {
                font-size: 0.95rem;
            }
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            z-index: 100000 !important;
            padding: 1.5rem 2rem;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            display: none;
        }
        
        .cookie-banner.show {
            transform: translateY(0) !important;
            display: block !important;
        }
        
        .cookie-banner-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .cookie-banner-text {
            flex: 1;
            min-width: 300px;
        }
        
        .cookie-banner-text h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }
        
        .cookie-banner-text p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }
        
        .cookie-banner-text a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .cookie-banner-text a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        
        .cookie-banner-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .cookie-btn {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.3px;
        }
        
        .cookie-btn-accept {
            background: var(--gradient-elegant);
            color: var(--text-light);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }
        
        .cookie-btn-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }
        
        .cookie-btn-decline {
            background: var(--bg-secondary);
            color: var(--text-primary);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .cookie-btn-decline:hover {
            background: var(--text-secondary);
            color: var(--text-light);
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .cookie-banner {
                padding: 1.25rem 1.5rem;
            }
            
            .cookie-banner-content {
                flex-direction: column;
                align-items: stretch;
                gap: 1.25rem;
            }
            
            .cookie-banner-text {
                min-width: 100%;
            }
            
            .cookie-banner-buttons {
                width: 100%;
                flex-direction: column;
            }
            
            .cookie-btn {
                width: 100%;
                padding: 0.875rem 2rem;
            }
        }

        @media (max-width: 768px) {
            #scrollToTop,
            button#scrollToTop,
            .scroll-to-top,
            #scrollToTop.scroll-to-top,
            button#scrollToTop.scroll-to-top,
            .scroll-to-top#scrollToTop {
                position: fixed !important;
                bottom: 1.5rem !important;
                right: 1.5rem !important;
                left: auto !important;
                top: auto !important;
                width: 45px !important;
                height: 45px !important;
                min-width: 45px !important;
                min-height: 45px !important;
                max-width: 45px !important;
                max-height: 45px !important;
                margin: 0 !important;
                padding: 0 !important;
                box-sizing: border-box !important;
                border: none !important;
                outline: none !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                flex-shrink: 0 !important;
                flex-grow: 0 !important;
            }
            
            .scroll-to-top.visible,
            body.scrolled .scroll-to-top,
            #scrollToTop.scroll-to-top.visible,
            button#scrollToTop.scroll-to-top.visible,
            body.scrolled #scrollToTop.scroll-to-top {
                transform: none !important;
                opacity: 1 !important;
                visibility: visible !important;
            }

            .scroll-to-top svg,
            #scrollToTop svg,
            button#scrollToTop svg {
                width: 18px !important;
                height: 18px !important;
                margin: 0 !important;
                padding: 0 !important;
                display: block !important;
                flex-shrink: 0 !important;
            }
            
            .scroll-to-top:hover,
            .scroll-to-top:active,
            .scroll-to-top:focus,
            #scrollToTop:hover,
            #scrollToTop:active,
            #scrollToTop:focus {
                transform: none !important;
            }
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 999999;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        
        .preloader-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }
        
        .preloader-logo {
            animation: logoFloat 2s ease-in-out infinite;
        }
        
        .preloader-logo img {
            height: 120px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        }
        
        .preloader-spinner {
            position: relative;
            width: 80px;
            height: 80px;
        }
        
        .spinner-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 4px solid transparent;
            border-top-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
        }
        
        .spinner-ring:nth-child(1) {
            animation-delay: 0s;
        }
        
        .spinner-ring:nth-child(2) {
            width: 70%;
            height: 70%;
            top: 15%;
            left: 15%;
            border-top-color: rgba(255, 255, 255, 0.7);
            animation-delay: 0.2s;
            animation-duration: 1.2s;
        }
        
        .spinner-ring:nth-child(3) {
            width: 50%;
            height: 50%;
            top: 25%;
            left: 25%;
            border-top-color: rgba(255, 255, 255, 0.5);
            animation-delay: 0.4s;
            animation-duration: 1s;
        }
        
        @keyframes logoFloat {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-10px) scale(1.05);
            }
        }
        
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @media (max-width: 768px) {
            .preloader-logo img {
                height: 80px;
            }
            
            .preloader-spinner {
                width: 60px;
                height: 60px;
            }
        }

        :root {
            --primary-color: #6366f1;
            --secondary-color: #8b5cf6;
            --accent-color: #f59e0b;
            --accent-pink: #ec4899;
            --accent-cyan: #06b6d4;
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --text-light: #ffffff;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-dark: #0f172a;
            --bg-card: rgba(255, 255, 255, 0.95);
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-elegant: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --glass: rgba(255, 255, 255, 0.15);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        html {
            overflow-x: hidden !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        
        *, *::before, *::after {
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            scroll-behavior: smooth;
            overflow-x: hidden !important;
            width: 100% !important;
            max-width: 100% !important;
            background: var(--bg-primary);
            position: relative;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
            overflow: visible !important;
        }
        
        /* Ensure mobile menu toggle is positioned relative to nav, not fixed */
        nav .mobile-menu-toggle {
            position: relative !important;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
            padding: 0.75rem 0;
            transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
            overflow: visible !important;
            width: 100%;
            box-sizing: border-box;
        }
        
        .nav-container > * {
            opacity: 1 !important;
            visibility: visible !important;
            position: relative !important;
        }

        .logo {
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo img {
            height: 60px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo:hover img {
            transform: scale(1.1) rotate(5deg);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
            transform: translateY(-1px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--gradient-primary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Dropdown Menu */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown > a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dropdown-arrow {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .nav-dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            list-style: none;
            padding: 1rem 0;
            margin: 0.5rem 0 0 0;
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
            padding: 0;
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .dropdown-menu a::after {
            display: none;
        }

        .dropdown-menu a:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            color: var(--primary-color);
            transform: translateX(5px);
            padding-left: 2rem;
        }

        .dropdown-menu a::before {
            content: '';
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .dropdown-menu a:hover::before {
            width: 8px;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
            position: relative !important;
            width: auto !important;
            height: auto !important;
            left: auto !important;
            right: auto !important;
            top: auto !important;
            bottom: auto !important;
            margin: 0 !important;
        }
        
        /* Override any fixed positioning - must be relative to nav */
        nav .mobile-menu-toggle,
        .mobile-menu-toggle[style*="position: fixed"],
        .mobile-menu-toggle {
            position: relative !important;
            left: auto !important;
            right: auto !important;
            top: auto !important;
            bottom: auto !important;
        }

        .hamburger {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 1px;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active .hamburger:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-menu {
            position: fixed !important;
            top: 0 !important;
            right: -100%;
            width: 100% !important;
            height: auto !important;
            min-height: 100vh !important;
            max-height: 100vh !important;
            background: rgba(15, 23, 42, 0.98) !important;
            backdrop-filter: blur(20px) !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
            align-items: center !important;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            z-index: 999 !important;
            padding: 3rem 0 !important;
            box-sizing: border-box !important;
            overflow-y: auto !important;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none !important;
            text-align: center !important;
            margin: 0 auto !important;
            padding: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            flex: 0 0 auto !important;
        }

        .mobile-nav-links li {
            margin: 0.6rem 0 !important;
            padding: 0 !important;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100% !important;
            text-align: center !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
        }

        .mobile-menu.active .mobile-nav-links li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

        .mobile-nav-links a {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif !important;
            font-size: 2rem !important;
            font-weight: 500 !important;
            color: var(--text-light) !important;
            text-decoration: none !important;
            transition: all 0.3s ease !important;
            background: var(--gradient-elegant) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            display: block !important;
            text-align: center !important;
            width: auto !important;
            margin: 0 auto !important;
            padding: 0 !important;
            line-height: 1.2 !important;
        }

        .mobile-nav-links a:hover {
            transform: scale(1.05);
        }

        /* Mobile Dropdown Menu */
        .mobile-dropdown {
            position: relative;
        }

        .mobile-dropdown-toggle {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 0.5rem !important;
        }

        .mobile-dropdown-arrow {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .mobile-dropdown.active .mobile-dropdown-arrow {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            list-style: none !important;
            padding: 0 !important;
            margin: 0.5rem 0 0 0 !important;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            width: 100% !important;
        }

        .mobile-dropdown.active .mobile-dropdown-menu {
            max-height: 500px;
            padding: 0.5rem 0 !important;
        }

        .mobile-dropdown-menu li {
            margin: 0.3rem 0 !important;
            padding: 0 !important;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.3s ease;
        }

        .mobile-dropdown.active .mobile-dropdown-menu li {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-dropdown-menu a {
            font-size: 1.4rem !important;
            padding-left: 2rem !important;
            color: rgba(255, 255, 255, 0.8) !important;
        }

        .mobile-dropdown-menu a:hover {
            color: rgba(255, 255, 255, 1) !important;
            transform: translateX(5px) !important;
        }
        
        /* Hide mobile dropdown menu in mobile view */
        @media (max-width: 768px) {
            .mobile-dropdown-menu {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                max-height: 0 !important;
                overflow: hidden !important;
                height: 0 !important;
            }
            
            .mobile-dropdown.active .mobile-dropdown-menu {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                max-height: 0 !important;
                height: 0 !important;
                padding: 0 !important;
            }
            
            .mobile-dropdown-menu li,
            .mobile-dropdown.active .mobile-dropdown-menu li {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                height: 0 !important;
                margin: 0 !important;
                padding: 0 !important;
            }
            
            .mobile-dropdown-menu a,
            .mobile-dropdown.active .mobile-dropdown-menu a {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
            }
            
            .mobile-dropdown-arrow {
                display: none !important;
                visibility: hidden !important;
            }
            
            .mobile-dropdown.active .mobile-dropdown-arrow {
                display: none !important;
                visibility: hidden !important;
            }
        }

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

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: float 25s ease-in-out infinite;
            opacity: 0.7;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite alternate;
        }

        /* Floating Shapes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .shape-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation: floatShape1 20s ease-in-out infinite;
        }

        .shape-2 {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            background: rgba(255, 255, 255, 0.08);
            animation: floatShape2 25s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 60px;
            height: 60px;
            top: 30%;
            right: 25%;
            background: rgba(255, 255, 255, 0.12);
            animation: floatShape3 18s ease-in-out infinite;
        }

        .shape-4 {
            width: 100px;
            height: 100px;
            bottom: 25%;
            left: 20%;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            animation: floatShape4 22s ease-in-out infinite;
        }

        .shape-5 {
            width: 40px;
            height: 40px;
            top: 15%;
            right: 40%;
            background: rgba(255, 255, 255, 0.15);
            animation: floatShape5 16s ease-in-out infinite reverse;
        }

        .shape-6 {
            width: 140px;
            height: 140px;
            bottom: 15%;
            right: 10%;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 30px;
            animation: floatShape6 28s ease-in-out infinite;
        }

        @keyframes floatShape1 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-30px) translateX(20px) rotate(90deg); }
            50% { transform: translateY(-15px) translateX(-10px) rotate(180deg); }
            75% { transform: translateY(-40px) translateX(15px) rotate(270deg); }
        }

        @keyframes floatShape2 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            33% { transform: translateY(25px) translateX(-20px) scale(1.1); }
            66% { transform: translateY(-20px) translateX(25px) scale(0.9); }
        }

        @keyframes floatShape3 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            50% { transform: translateY(-25px) translateX(-30px) rotate(180deg); }
        }

        @keyframes floatShape4 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(20px) translateX(-15px) rotate(45deg); }
            50% { transform: translateY(-10px) translateX(30px) rotate(90deg); }
            75% { transform: translateY(15px) translateX(-20px) rotate(135deg); }
        }

        @keyframes floatShape5 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            50% { transform: translateY(-35px) translateX(20px) scale(1.2); }
        }

        @keyframes floatShape6 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            33% { transform: translateY(-15px) translateX(10px) rotate(60deg); }
            66% { transform: translateY(10px) translateX(-25px) rotate(120deg); }
        }

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

        @keyframes pulse {
            0% { opacity: 0.5; }
            100% { opacity: 0.8; }
        }

        .hero-content {
            text-align: center;
            color: var(--text-light);
            z-index: 2;
            position: relative;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.2s forwards;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .hero h1 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.4s forwards;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.6s forwards;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

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

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .scroll-indicator:hover {
            border-color: rgba(255, 255, 255, 0.9);
        }

        .scroll-indicator::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            transform: translateX(-50%);
            animation: scroll 2s infinite;
        }

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

        /* Section Styles */
        section {
            padding: 8rem 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 4rem;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* About Section */
        .about {
            background: var(--bg-secondary);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
        }

        .about-content {
            display: grid;

            grid-template-columns: 1fr 1.5fr;
            gap: 6rem;
            align-items: center;
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 500px;
            background: url('images/smiling-girl-computer-desktop.jpg') center/cover;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
            transform: rotate(-2deg);
            transition: transform 0.4s ease;
        }

        .about-image:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
            transition: opacity 0.3s ease;
        }

        .about-image:hover::before {
            opacity: 0.7;
        }

        .about-image::after {

        }

        .about-text h3 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
            font-weight: 500;
            line-height: 1.3;
        }

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

        .skills {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .skill-tag {
            padding: 0.75rem 1.5rem;
            background: var(--bg-card);
            color: var(--primary-color);
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .skill-tag:hover {
            background: var(--primary-color);
            color: var(--text-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Portfolio Section */
        .portfolio {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
            padding: 10rem 0 8rem;
        }
        
        .portfolio::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="portfolio-grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23portfolio-grid)"/></svg>');
            opacity: 0.4;
        }
        
        .portfolio .container {
            position: relative;
            z-index: 2;
        }
        
        .portfolio .section-title {
            color: var(--text-light);
            -webkit-text-fill-color: var(--text-light);
            background: none;
        }
        
        .portfolio .section-title::after {
            background: rgba(255, 255, 255, 0.5);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 2rem;
        }

        .portfolio-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(20px);
            opacity: 0;
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .portfolio-item.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .portfolio-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-2xl);
        }

        .portfolio-image {
            width: 100%;
            height: 180px;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        .portfolio-item:nth-child(1) .portfolio-image {
            background-image: url('images/working-business-women.jpg');
        }

        .portfolio-item:nth-child(2) .portfolio-image {
            background-image: url('images/computer-desk-stickers.jpg');
        }

        .portfolio-item:nth-child(3) .portfolio-image {
            background-image: url('images/curved-display-pinky-girl.jpg');
        }

        .portfolio-item:nth-child(4) .portfolio-image {
            background-image: url('images/dashboard-interfaces-transparent-displays.jpg');
        }

        .portfolio-item:nth-child(5) .portfolio-image {
            background-image: url('images/marketing-strategy-women.jpg');
        }

        .portfolio-item:nth-child(6) .portfolio-image {
            background-image: url('images/portfolio-website-girl.jpg');
        }

        .portfolio-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
            transition: all 0.3s ease;
        }

        .portfolio-item:hover .portfolio-image::before {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.3) 100%);
        }

        .portfolio-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .portfolio-content h4 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .portfolio-content p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .portfolio-tech {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }
        
        .portfolio-learn-more {
            display: inline-block;
            padding: 0.875rem 2rem;
            background: rgba(255, 255, 255, 0.15);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            margin-top: auto;
            text-align: center;
            align-self: flex-start;
        }
        
        .portfolio-learn-more:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .tech-tag {
            padding: 0.4rem 1rem;
            background: rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .tech-tag:hover {
            background: rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
            padding: 8rem 0;
        }
        
        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricing-grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-grid)"/></svg>');
            opacity: 0.4;
            z-index: 1;
        }
        
        .pricing-section .container {
            position: relative;
            z-index: 3;
        }
        
        .pricing-section .section-title {
            color: var(--text-light);
            -webkit-text-fill-color: var(--text-light);
            background: none;
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .pricing-section .section-title::after {
            background: rgba(255, 255, 255, 0.5);
            margin: 1.5rem auto 0;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pricing-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.2);
        }
        
        .pricing-card-featured {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            transform: scale(1.05);
        }
        
        .pricing-card-featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-badge {
            position: absolute;
            top: -15px;
            right: 2rem;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: var(--text-light);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .pricing-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        
        .pricing-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.25rem;
        }
        
        .pricing-price .currency {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-light);
        }
        
        .pricing-price .amount {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-light);
            line-height: 1;
        }
        
        .pricing-price .period {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }
        
        .pricing-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            flex: 1;
        }
        
        .pricing-features li {
            padding: 0.875rem 0;
            color: rgba(255, 255, 255, 0.95);
            font-size: 1rem;
            line-height: 1.6;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            padding-left: 1.75rem;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .pricing-button {
            display: block;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            margin-top: auto;
            cursor: pointer;
            width: 100%;
            border: none;
            font-family: inherit;
        }
        
        .pricing-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .pricing-card-featured {
                transform: scale(1);
            }
            
            .pricing-card-featured:hover {
                transform: translateY(-10px);
            }
        }
        
        @media (max-width: 768px) {
            .pricing-section {
                padding: 6rem 0;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .pricing-card {
                padding: 2rem;
            }
            
            .pricing-card-featured {
                transform: scale(1);
            }
            
            .pricing-price .amount {
                font-size: 3rem;
            }
        }

        /* Pricing Details Section */
        .pricing-details-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
            padding: 8rem 0;
        }
        
        .pricing-details-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricing-details-grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-details-grid)"/></svg>');
            opacity: 0.4;
            z-index: 1;
        }
        
        .pricing-details-section .container {
            position: relative;
            z-index: 3;
        }
        
        .pricing-details-section .section-title {
            color: var(--text-light);
            -webkit-text-fill-color: var(--text-light);
            background: none;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .pricing-details-section .section-title::after {
            background: rgba(255, 255, 255, 0.5);
            margin: 1.5rem auto 0;
        }
        
        .pricing-details-intro {
            text-align: center;
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }
        
        .pricing-tabs {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pricing-tabs-header {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .pricing-tab-btn {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            padding: 1.25rem 2rem;
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            min-width: 180px;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-tab-btn::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;
        }
        
        .pricing-tab-btn:hover::before {
            left: 100%;
        }
        
        .pricing-tab-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .pricing-tab-btn.active {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: translateY(-3px);
        }
        
        .pricing-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
        }
        
        .tab-price {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }
        
        .pricing-tab-btn.active .tab-price {
            color: rgba(255, 255, 255, 0.95);
        }
        
        .pricing-tabs-content {
            position: relative;
            min-height: 500px;
        }
        
        .pricing-tab-panel {
            display: none;
            animation: fadeInUp 0.5s ease;
        }
        
        .pricing-tab-panel.active {
            display: block;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .plan-details-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .plan-details-header h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        
        .plan-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }
        
        .plan-details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .plan-detail-item {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .plan-detail-item:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .detail-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .plan-detail-item:hover .detail-icon {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1) rotate(5deg);
        }
        
        .plan-detail-item h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        
        .plan-detail-item p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin: 0;
        }
        
        .plan-advantages {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .plan-advantages h4 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .plan-advantages ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .plan-advantages li {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }
        
        .plan-advantages li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4ade80;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .plan-advantages li:last-child {
            margin-bottom: 0;
        }
        
        @media (max-width: 968px) {
            .plan-details-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .pricing-details-section {
                padding: 6rem 0;
            }
            
            .pricing-tabs-header {
                flex-direction: column;
                align-items: stretch;
            }
            
            .pricing-tab-btn {
                min-width: auto;
                width: 100%;
            }
            
            .plan-details-header h3 {
                font-size: 1.8rem;
            }
            
            .plan-subtitle {
                font-size: 1.05rem;
            }
            
            .plan-detail-item {
                padding: 1.5rem;
            }
            
            .plan-detail-item h4 {
                font-size: 1.2rem;
            }
            
            .plan-detail-item p {
                font-size: 1rem;
            }
            
            .plan-advantages {
                padding: 2rem;
            }
            
            .plan-advantages h4 {
                font-size: 1.5rem;
            }
            
            .plan-advantages li {
                font-size: 1rem;
            }
        }

        /* Process Section */
        .process {
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }
        
        .process-intro {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 4rem;
            line-height: 1.8;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-step {
            display: flex;
            gap: 2.5rem;
            align-items: flex-start;
            padding: 2.5rem;
            background: var(--bg-primary);
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-elegant);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }
        
        .process-step:hover::before {
            opacity: 1;
        }
        
        .process-number {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-elegant);
            color: var(--text-light);
            font-size: 2rem;
            font-weight: 700;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            position: relative;
        }
        
        .process-number::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--gradient-elegant);
            opacity: 0;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.2);
                opacity: 0;
            }
        }
        
        .process-content {
            flex: 1;
        }
        
        .process-content h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .process-content p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }
        
        @media (max-width: 768px) {
            .process-steps {
                gap: 2rem;
            }
            
            .process-step {
                flex-direction: column;
                gap: 1.5rem;
                padding: 2rem;
            }
            
            .process-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .process-content h3 {
                font-size: 1.5rem;
            }
            
            .process-content p {
                font-size: 1rem;
            }
        }

        /* Privacy Policy Section */
        .privacy-policy {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: var(--text-light);
            padding: 10rem 0 8rem;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .privacy-policy::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="privacy-grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23privacy-grid)"/></svg>');
            opacity: 0.4;
        }
        
        .privacy-policy .container {
            position: relative;
            z-index: 2;
        }
        
        .privacy-policy .section-title {
            color: var(--text-light);
            -webkit-text-fill-color: var(--text-light);
            background: none;
        }
        
        .privacy-policy .section-title::after {
            background: rgba(255, 255, 255, 0.5);
        }
        
        .privacy-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .service-hero-image {
            max-width: 100%;
            margin: 3rem auto 4rem;
            text-align: center;
            position: relative;
        }
        
        .service-hero-image img {
            width: 100%;
            max-width: 1200px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.2);
            object-fit: cover;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-hero-image img:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
        }
        
        @media (max-width: 768px) {
            .service-hero-image {
                margin: 2rem auto 3rem;
            }
            
            .service-hero-image img {
                border-radius: 15px;
                border-width: 1px;
            }
        }
        
        .privacy-section {
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .privacy-section:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.2);
        }
        
        .privacy-section h2 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        
        .privacy-section p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 1.25rem;
        }
        
        .privacy-section p:last-child {
            margin-bottom: 0;
        }
        
        .privacy-section ul {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }
        
        .privacy-section li {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 0.75rem;
        }
        
        .privacy-section li:last-child {
            margin-bottom: 0;
        }
        
        .privacy-section a {
            color: rgba(255, 255, 255, 0.95);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .privacy-section a:hover {
            color: var(--text-light);
            border-bottom-color: var(--text-light);
        }
        
        .privacy-section strong {
            color: var(--text-light);
            font-weight: 600;
        }
        
        /* About Section Images */
        .about-image-wrapper {
            margin: 2rem 0;
            width: 100%;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .about-section-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 20px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .about-image-wrapper:hover .about-section-image {
            transform: scale(1.05);
        }
        
        .about-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 20px;
            z-index: 1;
            pointer-events: none;
        }
        
        .about-image-wrapper:hover::before {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .privacy-policy {
                padding: 8rem 0 6rem;
            }
            
            .privacy-section {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }
            
            .privacy-section h2 {
                font-size: 1.5rem;
            }
            
            .privacy-section p,
            .privacy-section li {
                font-size: 1rem;
            }
            
            .about-image-wrapper {
                margin: 1.5rem 0;
                border-radius: 15px;
            }
            
            .about-section-image {
                border-radius: 15px;
            }
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #3b4cb8 0%, #4a2c65 50%, #9c35a8 100%);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
            padding: 10rem 0 8rem;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
            animation: contactFloat 30s ease-in-out infinite;
            opacity: 0.6;
        }

        .contact::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: contactPulse 6s ease-in-out infinite alternate;
        }

        /* Contact Floating Shapes */
        .contact-floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .contact-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .contact-shape-1 {
            width: 70px;
            height: 70px;
            top: 15%;
            left: 8%;
            animation: contactFloatShape1 24s ease-in-out infinite;
        }

        .contact-shape-2 {
            width: 110px;
            height: 110px;
            top: 65%;
            right: 12%;
            background: rgba(255, 255, 255, 0.06);
            animation: contactFloatShape2 28s ease-in-out infinite reverse;
        }

        .contact-shape-3 {
            width: 55px;
            height: 55px;
            top: 25%;
            right: 30%;
            background: rgba(255, 255, 255, 0.1);
            animation: contactFloatShape3 20s ease-in-out infinite;
        }

        .contact-shape-4 {
            width: 90px;
            height: 90px;
            bottom: 20%;
            left: 18%;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            animation: contactFloatShape4 26s ease-in-out infinite;
        }

        .contact-shape-5 {
            width: 35px;
            height: 35px;
            top: 12%;
            right: 45%;
            background: rgba(255, 255, 255, 0.12);
            animation: contactFloatShape5 18s ease-in-out infinite reverse;
        }

        .contact-shape-6 {
            width: 130px;
            height: 130px;
            bottom: 12%;
            right: 8%;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 35px;
            animation: contactFloatShape6 32s ease-in-out infinite;
        }

        @keyframes contactFloatShape1 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-25px) translateX(15px) rotate(90deg); }
            50% { transform: translateY(-10px) translateX(-8px) rotate(180deg); }
            75% { transform: translateY(-35px) translateX(12px) rotate(270deg); }
        }

        @keyframes contactFloatShape2 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            33% { transform: translateY(20px) translateX(-15px) scale(1.05); }
            66% { transform: translateY(-15px) translateX(20px) scale(0.95); }
        }

        @keyframes contactFloatShape3 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            50% { transform: translateY(-20px) translateX(-25px) rotate(180deg); }
        }

        @keyframes contactFloatShape4 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(15px) translateX(-12px) rotate(30deg); }
            50% { transform: translateY(-8px) translateX(25px) rotate(60deg); }
            75% { transform: translateY(12px) translateX(-18px) rotate(90deg); }
        }

        @keyframes contactFloatShape5 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            50% { transform: translateY(-30px) translateX(15px) scale(1.15); }
        }

        @keyframes contactFloatShape6 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            33% { transform: translateY(-12px) translateX(8px) rotate(45deg); }
            66% { transform: translateY(8px) translateX(-20px) rotate(90deg); }
        }

        @keyframes contactFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-15px) rotate(0.5deg); }
            66% { transform: translateY(-10px) rotate(-0.5deg); }
        }

        @keyframes contactPulse {
            0% { opacity: 0.4; }
            100% { opacity: 0.7; }
        }

        .contact-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .contact .section-title {
            color: var(--text-light);
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-form {
            display: grid;
            gap: 2rem;
            margin-top: 3rem;
        }

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

        .form-group {
            display: grid;
            gap: 0.75rem;
            text-align: left;
        }

        .form-group label {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 1.2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .submit-btn {
            padding: 1.2rem 3rem;
            background: var(--gradient-primary);
            color: var(--text-light);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 1rem;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
        }
        
        .google-map {
            width: 100%;
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .google-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* Modal Styles */
        .modal {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background: rgba(0, 0, 0, 0.7) !important;
            backdrop-filter: blur(10px) !important;
            display: none !important;
            justify-content: center !important;
            align-items: center !important;
            z-index: 100001 !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transition: opacity 0.3s ease, visibility 0.3s ease !important;
        }
        
        .modal.active {
            opacity: 1 !important;
            visibility: visible !important;
            display: flex !important;
        }
        
        .modal-content {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            border-radius: 25px;
            padding: 3rem;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.9) translateY(20px);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .modal.active .modal-content {
            transform: scale(1) translateY(0);
        }
        
        .modal-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .modal-icon svg {
            width: 48px;
            height: 48px;
            stroke: var(--text-light);
        }
        
        .success-icon {
            background: rgba(34, 197, 94, 0.2);
            border-color: rgba(34, 197, 94, 0.4);
        }
        
        .success-icon svg {
            stroke: #22c55e;
        }
        
        .error-icon {
            background: rgba(239, 68, 68, 0.2);
            border-color: rgba(239, 68, 68, 0.4);
        }
        
        .error-icon svg {
            stroke: #ef4444;
        }
        
        .modal-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        
        .modal-message {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 2rem;
            white-space: pre-line;
        }
        
        .modal-btn {
            padding: 0.875rem 2.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: var(--text-light);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.3px;
        }
        
        .modal-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .modal-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            margin-left: 1rem;
        }
        
        .modal-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        
        .modal-form {
            width: 100%;
        }
        
        .modal-form .form-group {
            margin-bottom: 1.5rem;
        }
        
        .modal-form label {
            display: block;
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .modal-form input[type="email"] {
            width: 100%;
            padding: 0.875rem 1.25rem;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        
        .modal-form input[type="email"]:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        }
        
        .modal-form input[type="email"]::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .modal-footer {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .modal-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .modal-body {
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .contact-info {
                grid-template-columns: 1fr !important;
            }
            
            .contact-info > div {
                grid-template-columns: 1fr !important;
            }
            
            .google-map {
                height: 350px;
            }
            
            .modal-content {
                padding: 2rem 1.5rem;
                max-width: 90%;
            }
            
            .modal-icon {
                width: 60px;
                height: 60px;
            }
            
            .modal-icon svg {
                width: 36px;
                height: 36px;
            }
            
            .modal-title {
                font-size: 1.5rem;
            }
            
            .modal-message {
                font-size: 1rem;
            }
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(135deg, #3b4cb8 0%, #4a2c65 50%, #9c35a8 100%);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonials-grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-grid)"/></svg>');
            animation: contactFloat 30s ease-in-out infinite;
            opacity: 0.6;
        }

        .testimonials::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: contactPulse 6s ease-in-out infinite alternate;
        }

        .testimonials-floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .testimonial-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .testimonial-shape-1 {
            width: 70px;
            height: 70px;
            top: 15%;
            left: 8%;
            animation: contactFloatShape1 24s ease-in-out infinite;
        }

        .testimonial-shape-2 {
            width: 110px;
            height: 110px;
            top: 65%;
            right: 12%;
            background: rgba(255, 255, 255, 0.06);
            animation: contactFloatShape2 28s ease-in-out infinite reverse;
        }

        .testimonial-shape-3 {
            width: 55px;
            height: 55px;
            top: 25%;
            right: 30%;
            background: rgba(255, 255, 255, 0.1);
            animation: contactFloatShape3 20s ease-in-out infinite;
        }

        .testimonial-shape-4 {
            width: 90px;
            height: 90px;
            bottom: 20%;
            left: 18%;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            animation: contactFloatShape4 26s ease-in-out infinite;
        }

        .testimonial-shape-5 {
            width: 35px;
            height: 35px;
            top: 12%;
            right: 45%;
            background: rgba(255, 255, 255, 0.12);
            animation: contactFloatShape5 18s ease-in-out infinite reverse;
        }

        .testimonial-shape-6 {
            width: 130px;
            height: 130px;
            bottom: 12%;
            right: 8%;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 30px;
            animation: contactFloatShape6 32s ease-in-out infinite;
        }

        .testimonials-content {
            text-align: center;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .testimonials-intro {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonials .section-title {
            color: var(--text-light);
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .testimonial-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: left;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

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

        .testimonial-quote {
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .testimonial-rating {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-rating svg {
            color: #FFD700;
            fill: #FFD700;
            width: 18px;
            height: 18px;
            filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 0.25rem;
        }

        .author-role {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* On mobile, show all fade-in elements immediately */
        @media (max-width: 768px) {
            .fade-in {
                opacity: 1 !important;
                transform: translateY(0) !important;
            }
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .hero h1 {
                font-size: 4rem;
            }
        }

        @media (max-width: 768px) {
            html, body {
                overflow-x: hidden !important;
                width: 100% !important;
                max-width: 100% !important;
                position: relative !important;
            }
            
            section, .container, .hero, .about, .portfolio, .testimonials {
                width: 100% !important;
                max-width: 100% !important;
                overflow-x: hidden !important;
            }
            
            .nav-links {
                display: none !important;
            }

            nav {
                width: 100% !important;
                max-width: 100% !important;
                left: 0 !important;
                right: 0 !important;
                overflow: hidden !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
            }

            .nav-container {
                padding: 0 1rem !important;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
                overflow: hidden !important;
                gap: 0.5rem !important;
                margin: 0 !important;
            }
            
            .mobile-menu-toggle {
                display: flex !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                position: static !important;
                width: 40px !important;
                height: 40px !important;
                min-width: 40px !important;
                min-height: 40px !important;
                max-width: 40px !important;
                max-height: 40px !important;
                margin: 0 !important;
                padding: 0.5rem !important;
                flex-shrink: 0 !important;
                box-sizing: border-box !important;
                flex-grow: 0 !important;
            }
            
            .logo {
                flex-shrink: 1 !important;
                flex-grow: 0 !important;
                max-width: calc(100% - 50px) !important;
                overflow: hidden !important;
                min-width: 0 !important;
                margin: 0 !important;
            }
            
            .logo img {
                max-width: 100% !important;
                height: auto !important;
                max-height: 50px !important;
                width: auto !important;
                display: block !important;
            }
            
            .hamburger {
                display: block !important;
                opacity: 1 !important;
                visibility: visible !important;
                width: 25px !important;
                height: 3px !important;
            }
            
            .mobile-menu {
                height: 100vh !important;
                min-height: 100vh !important;
                max-height: 100vh !important;
                padding: 1rem 0 !important;
                justify-content: center !important;
                align-items: center !important;
                overflow-y: auto !important;
            }
            
            .mobile-nav-links {
                width: 100% !important;
                max-width: 100% !important;
                padding: 0 !important;
                margin: 0 auto !important;
                box-sizing: border-box !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                flex: 0 0 auto !important;
                list-style: none !important;
            }
            
            .mobile-nav-links li {
                margin: 0.5rem 0 !important;
                padding: 0 !important;
                width: 100% !important;
                text-align: center !important;
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
            }
            
            .mobile-nav-links a {
                width: auto !important;
                text-align: center !important;
                display: block !important;
                margin: 0 auto !important;
                padding: 0 !important;
                font-size: 2rem !important;
                line-height: 1.2 !important;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

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

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

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

            .testimonial-item {
                padding: 2rem;
            }

            .container {
                padding: 0 1.5rem;
            }

            section {
                padding: 5rem 0;
            }

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

            .about-text h3 {
                font-size: 2rem;
            }

            .skills {
                margin-top: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }

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

            .nav-container {
                padding: 0 1rem;
            }

            .container {
                padding: 0 1rem;
            }
        }
        
        /* Contact Info Centering for Mobile */
        @media (max-width: 768px) {
            .contact-info-grid {
                text-align: center !important;
            }
            
            .contact-info-item {
                text-align: center !important;
            }
            
            .contact-info-item h3 {
                text-align: center !important;
            }
            
            .contact-info-item p {
                text-align: center !important;
            }
        }