   body {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

        * {
            box-sizing: border-box;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 245, 212, 0.2);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #00B4A6;
            cursor: pointer;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: black;
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #00B4A6;
            background: rgba(0, 180, 166, 0.1);
        }

        .login-btn {
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .login-btn:hover {
            transform: scale(1.05);
        }

        /* Page Container */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .page.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            z-index: 2;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00B4A6, #E53E3E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInLeft 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: slideInLeft 1s ease-out 0.4s both;
        }

        .btn-primary {
            background: linear-gradient(45deg, #00B4A6, #E53E3E);
            border: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 180, 166, 0.3);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #00B4A6;
            padding: 1rem 2rem;
            border-radius: 30px;
            color: #00B4A6;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: #00B4A6;
            color: white;
        }

        .hero-right {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .animated-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            overflow: hidden;
            border: 3px solid rgba(0, 180, 166, 0.5);
            box-shadow: 0 10px 30px rgba(0, 180, 166, 0.3);
        }

        .shape1 {
            width: 200px;
            height: 200px;
            top: 20%;
            left: 20%;
            animation-delay: 0s;
            border-color: rgba(0, 180, 166, 0.7);
        }

        .shape2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 20%;
            animation-delay: 2s;
            border-color: rgba(229, 62, 62, 0.7);
        }

        .shape3 {
            width: 100px;
            height: 100px;
            top: 40%;
            left: 60%;
            animation-delay: 4s;
            border-color: rgba(0, 180, 166, 0.9);
        }

        .shape:hover {
            transform: scale(1.1);
            border-width: 4px;
            box-shadow: 0 15px 40px rgba(0, 180, 166, 0.5);
        }

        /* Page Content Styles */
        .page-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }

        .page-title {
            text-align: center;
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #00B4A6, #E53E3E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleSlideIn 1.2s ease-out;
            position: relative;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #00B4A6, #E53E3E);
            border-radius: 2px;
            animation: underlineExpand 1s ease-out 0.5s both;
        }

        /* Services Page Styles */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            perspective: 1000px;
        }

        .service-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            border: 2px solid rgba(0, 245, 212, 0.3);
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(0, 245, 212, 0.1);
            position: relative;
            overflow: hidden;
            min-height: 320px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00B4A6, #E53E3E);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            transform: rotateY(5deg) rotateX(5deg) translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 245, 212, 0.3);
            border-color: #00F5D4;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a3a3a 100%);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            color: #E53E3E;
        }

        .service-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.8rem;
            color: #ffffff;
            background: linear-gradient(135deg, #00F5D4, #FF6F3C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            margin-bottom: 1rem;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .service-features {
            list-style: none;
            padding: 0;
            background: rgba(0, 245, 212, 0.1);
            border-radius: 10px;
            padding: 1rem;
            margin: 0.8rem 0;
        }

        .service-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 245, 212, 0.2);
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            display: flex;
            align-items: center;
            font-size: 0.85rem;
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features li:before {
            content: "✓";
            color: #00F5D4;
            margin-right: 0.5rem;
            font-weight: bold;
            font-size: 0.9rem;
            background: rgba(0, 245, 212, 0.2);
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Portfolio Page Styles */
        .portfolio-container {
            position: relative;
            margin-bottom: 4rem;
            max-height: 800px;
            overflow-y: auto;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .portfolio-container::-webkit-scrollbar {
            width: 8px;
        }

        .portfolio-container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .portfolio-container::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            border-radius: 10px;
        }

        .portfolio-container::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #FF6F3C, #00F5D4);
        }

        .portfolio-scroll-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            padding: 1rem;
        }

        .portfolio-item {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 300px;
            height: 500px;
            border: 2px solid rgba(0, 245, 212, 0.3);
            box-shadow: 0 8px 32px rgba(0, 245, 212, 0.1);
            display: flex;
            flex-direction: column;
        }

        .portfolio-item:hover {
            transform: translateY(-5px) scale(1.02);
            z-index: 10;
            border-color: #00F5D4;
            box-shadow: 0 20px 40px rgba(0, 245, 212, 0.3);
        }

        .portfolio-image {
            position: relative;
            overflow: hidden;
        }

        .portfolio-image img {
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.1);
        }

        .portfolio-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 58, 58, 0.9) 100%);
            overflow-y: auto;
            max-height: 300px;
        }

        .portfolio-content::-webkit-scrollbar {
            width: 6px;
        }

        .portfolio-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .portfolio-content::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            border-radius: 10px;
        }

        .portfolio-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #FF6F3C, #00F5D4);
        }

        .portfolio-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.8rem;
            color: #ffffff;
            background: linear-gradient(135deg, #00F5D4, #FF6F3C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .portfolio-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.8rem;
            font-weight: 500;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        .portfolio-stats {
            display: flex;
            gap: 1rem;
            margin-top: 0.8rem;
        }

        .stat {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            font-size: 1.2rem;
            font-weight: bold;
            color: #E53E3E;
        }

        .stat-label {
            font-size: 0.7rem;
            opacity: 0.7;
        }

        /* About Page Styles */
        .about-section {
            margin-bottom: 4rem;
        }

        .about-intro {
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 4rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .team-member {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid rgba(0, 245, 212, 0.3);
            box-shadow: 0 8px 32px rgba(0, 245, 212, 0.1);
            position: relative;
            overflow: hidden;
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00B4A6, #E53E3E);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-8px);
            border-color: #00F5D4;
            box-shadow: 0 20px 40px rgba(0, 245, 212, 0.2);
        }

        .team-member:hover::before {
            opacity: 1;
        }

        .team-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .team-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: #1e293b;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #00B4A6, #E53E3E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .team-role {
            color: #E53E3E;
            margin-bottom: 1rem;
            font-weight: 600;
            font-size: 1rem;
        }

        .team-bio {
            color: #475569;
            line-height: 1.6;
            font-weight: 500;
        }

        .company-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .value-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #FF6F3C;
        }

        .value-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #00F5D4;
            margin-bottom: 1rem;
        }

        /* Contact Page Styles */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }

        .contact-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: #FF6F3C;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #00F5D4;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(0, 245, 212, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00F5D4;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Login Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #121212;
            border-radius: 20px;
            padding: 3rem;
            width: 90%;
            max-width: 500px;
            border: 2px solid #00F5D4;
        }

        .modal-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .modal-title {
            font-size: 2rem;
            font-weight: bold;
            color: #00F5D4;
            margin-bottom: 0.5rem;
        }

        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: #FF6F3C;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Footer */
        .footer {
            background: #0a0a0a;
            padding: 4rem 2rem 2rem;
            position: relative;
            overflow: hidden;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            color: #00F5D4;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .footer-section a:hover {
            color: #00F5D4;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
            animation: pulse 2s infinite;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }

        .newsletter {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .newsletter input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid rgba(0, 245, 212, 0.3);
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .newsletter button {
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .newsletter button:hover {
            transform: scale(1.05);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 245, 212, 0.2);
            color: rgba(255, 255, 255, 0.5);
        }

        /* User greeting */
        .user-greeting {
            position: fixed;
            top: 100px;
            right: 20px;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            padding: 1rem 2rem;
            border-radius: 25px;
            color: white;
            font-weight: bold;
            z-index: 1500;
            transform: translateX(400px);
            transition: transform 0.5s ease;
        }

        /* User Profile & Logout */
        .user-profile {
            position: fixed;
            top: 100px;
            right: 20px;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid #00F5D4;
            border-radius: 20px;
            padding: 1.5rem;
            color: white;
            z-index: 1500;
            transform: translateX(400px);
            transition: all 0.5s ease;
            min-width: 280px;
            box-shadow: 0 10px 30px rgba(0, 245, 212, 0.3);
        }

        .user-profile.show {
            transform: translateX(0);
        }

        .profile-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 245, 212, 0.3);
        }

        .profile-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .profile-info h4 {
            margin: 0;
            color: #00F5D4;
            font-size: 1.1rem;
        }

        .profile-info p {
            margin: 0;
            opacity: 0.8;
            font-size: 0.9rem;
        }

        .profile-actions {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .profile-btn {
            background: transparent;
            border: 1px solid rgba(0, 245, 212, 0.3);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .profile-btn:hover {
            background: rgba(0, 245, 212, 0.1);
            border-color: #00F5D4;
        }

        .logout-btn {
            background: linear-gradient(45deg, #FF6F3C, #ff4757);
            border: none;
            color: white;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            margin-top: 0.5rem;
        }

        .logout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 111, 60, 0.4);
        }

        .login-dropdown {
            position: relative;
            display: inline-block;
        }

        .login-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid #00F5D4;
            border-radius: 15px;
            padding: 1rem;
            min-width: 200px;
            display: none;
            z-index: 2000;
            box-shadow: 0 10px 30px rgba(0, 245, 212, 0.3);
        }

        .login-menu.show {
            display: block;
            animation: slideInDown 0.3s ease-out;
        }

        .menu-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
        }

        .menu-item:hover {
            background: rgba(0, 245, 212, 0.1);
            color: #00F5D4;
        }

        /* Legal Pages */
        .legal-page {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            line-height: 1.8;
        }

        .legal-page h2 {
            color: #00F5D4;
            margin-top: 3rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .legal-page h3 {
            color: #FF6F3C;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .legal-page p {
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .legal-page ul {
            margin-bottom: 1rem;
            padding-left: 2rem;
        }

        .legal-page li {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .legal-nav {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 3rem;
            text-align: center;
        }

        .legal-nav h3 {
            color: #00F5D4;
            margin-bottom: 1rem;
        }

        .legal-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .legal-link {
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .legal-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 245, 212, 0.3);
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: none;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .back-to-top:hover {
            transform: scale(1.1);
        }

        .back-to-top.show {
            display: block;
            animation: bounceIn 0.5s ease-out;
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes titleSlideIn {
            0% {
                opacity: 0;
                transform: translateY(-30px) scale(0.9);
            }
            50% {
                opacity: 0.7;
                transform: translateY(10px) scale(1.05);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes underlineExpand {
            from {
                width: 0;
            }
            to {
                width: 100px;
            }
        }

        @keyframes typewriter {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        @keyframes blink {
            0%, 50% {
                opacity: 1;
            }
            51%, 100% {
                opacity: 0;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(0, 245, 212, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(0, 245, 212, 0.6);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotate(-180deg) scale(0.5);
            }
            to {
                opacity: 1;
                transform: rotate(0deg) scale(1);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.3);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes flipIn {
            from {
                opacity: 0;
                transform: rotateY(-90deg);
            }
            to {
                opacity: 1;
                transform: rotateY(0deg);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .zoom-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s ease;
        }

        .zoom-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        .rotate-in {
            opacity: 0;
            transform: rotate(-10deg) scale(0.9);
            transition: all 0.8s ease;
        }

        .rotate-in.visible {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        .typewriter {
            overflow: hidden;
            border-right: 3px solid #00F5D4;
            white-space: nowrap;
            animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
        }

        .text-glow {
            animation: glow 2s ease-in-out infinite alternate;
        }

        .bounce-in {
            animation: bounce 1s ease-in-out;
        }

        .stagger-animation > * {
            opacity: 0;
            transform: translateY(20px);
            animation: slideInUp 0.6s ease-out forwards;
        }

        .stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
        .stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
        .stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
        .stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
        .stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
        .stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }
        .stagger-animation > *:nth-child(7) { animation-delay: 0.7s; }
        .stagger-animation > *:nth-child(8) { animation-delay: 0.8s; }
        .stagger-animation > *:nth-child(9) { animation-delay: 0.9s; }

        /* New Content Styles */
        .page-intro {
            text-align: center;
            font-size: 1.3rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 4rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            animation: slideInUp 1s ease-out 0.3s both;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            animation: slideInDown 1s ease-out;
        }

        .section-title::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            border-radius: 2px;
            animation: slideInDown 1s ease-out 0.2s both;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: slideInUp 1s ease-out 0.4s both;
        }

        /* Services Vertical Grid Layout */
        .services-scroll-container {
            position: relative;
            margin-bottom: 4rem;
            max-height: 800px;
            overflow-y: auto;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .services-scroll-container::-webkit-scrollbar {
            width: 8px;
        }

        .services-scroll-container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .services-scroll-container::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            border-radius: 10px;
        }

        .services-scroll-container::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #FF6F3C, #00F5D4);
        }

        .services-scroll-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            padding: 1rem;
        }

        .services-scroll-wrapper .service-card {
            min-width: 280px;
            max-width: none;
            height: auto;
            padding: 1.5rem;
        }

        /* Layout Variations */
        .layout-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 4rem 0;
        }

        .layout-split.reverse {
            direction: rtl;
        }

        .layout-split.reverse > * {
            direction: ltr;
        }

        .layout-zigzag {
            display: grid;
            gap: 6rem;
            margin: 4rem 0;
        }

        .zigzag-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .zigzag-item:nth-child(even) {
            direction: rtl;
        }

        .zigzag-item:nth-child(even) > * {
            direction: ltr;
        }

        .layout-masonry {
            columns: 3;
            column-gap: 2rem;
            margin: 4rem 0;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 2rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .layout-carousel {
            overflow: hidden;
            position: relative;
            margin: 4rem 0;
        }

        .carousel-track {
            display: flex;
            gap: 2rem;
            animation: scroll 30s linear infinite;
        }

        .carousel-item {
            min-width: 300px;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .layout-hexagon {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 4rem 0;
        }

        .hexagon-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
            position: relative;
            transform: rotate(0deg);
            transition: all 0.3s ease;
        }

        .hexagon-item:nth-child(2n) {
            transform: translateY(2rem);
        }

        .hexagon-item:hover {
            transform: translateY(-1rem) rotate(2deg);
            border-color: #00F5D4;
        }

        .layout-timeline {
            position: relative;
            margin: 4rem 0;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #00F5D4, #FF6F3C);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            position: relative;
        }

        .timeline-item:nth-child(even) .timeline-content {
            order: -1;
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
            position: relative;
        }

        .timeline-marker {
            position: absolute;
            left: 50%;
            top: 2rem;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            border-radius: 50%;
            z-index: 2;
        }

        .layout-cards-floating {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            perspective: 1000px;
        }

        .floating-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 212, 0.2);
            transform-style: preserve-3d;
            transition: all 0.5s ease;
            animation: float 6s ease-in-out infinite;
        }

        .floating-card:nth-child(2n) {
            animation-delay: -2s;
        }

        .floating-card:nth-child(3n) {
            animation-delay: -4s;
        }

        .floating-card:hover {
            transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
            border-color: #00F5D4;
        }

        .layout-diagonal {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin: 4rem 0;
            transform: skewY(-2deg);
        }

        .diagonal-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
            transform: skewY(2deg);
        }

        .layout-circular {
            position: relative;
            width: 600px;
            height: 600px;
            margin: 4rem auto;
        }

        .circular-item {
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            border: 1px solid rgba(0, 245, 212, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 1rem;
            font-size: 0.9rem;
        }

        .circular-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
        .circular-item:nth-child(2) { top: 15%; right: 15%; }
        .circular-item:nth-child(3) { top: 50%; right: 0; transform: translateY(-50%); }
        .circular-item:nth-child(4) { bottom: 15%; right: 15%; }
        .circular-item:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%); }
        .circular-item:nth-child(6) { bottom: 15%; left: 15%; }
        .circular-item:nth-child(7) { top: 50%; left: 0; transform: translateY(-50%); }
        .circular-item:nth-child(8) { top: 15%; left: 15%; }

        /* Home Page Styles */
        .stats-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 4rem 0;
            margin: 4rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: #00F5D4;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #FF6F3C;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.2rem;
            font-weight: bold;
            color: #00F5D4;
            margin-bottom: 0.5rem;
        }

        .stat-description {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        .home-services {
            padding: 4rem 0;
        }

        .home-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .home-service-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
            transition: all 0.3s ease;
        }

        .home-service-item:hover {
            transform: translateY(-5px);
            border-color: #00F5D4;
        }

        .service-link {
            color: #00F5D4;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .service-link:hover {
            color: #FF6F3C;
        }

        .testimonials {
            background: rgba(255, 255, 255, 0.05);
            padding: 4rem 0;
            margin: 4rem 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid #e2e8f0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00B4A6, #E53E3E);
        }

        .testimonial-content {
            margin-bottom: 2rem;
        }

        .testimonial-content p {
            font-style: italic;
            line-height: 1.6;
            opacity: 0.9;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            font-size: 2rem;
        }

        .author-name {
            font-weight: bold;
            color: #00F5D4;
        }

        .author-title {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        .process-section {
            padding: 4rem 0;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .step-content h3 {
            color: #00F5D4;
            margin-bottom: 1rem;
        }

        .cta-section {
            background: linear-gradient(45deg, rgba(0, 245, 212, 0.1), rgba(255, 111, 60, 0.1));
            padding: 4rem 0;
            margin: 4rem 0;
            border-radius: 20px;
        }

        .cta-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #00F5D4;
        }

        .cta-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Services Page Styles */
        .service-categories {
            margin-bottom: 3rem;
        }

        .category-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .category-btn {
            background: transparent;
            border: 2px solid rgba(0, 245, 212, 0.3);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-btn:hover,
        .category-btn.active {
            background: #00F5D4;
            color: #121212;
            border-color: #00F5D4;
        }

        .service-pricing {
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            border-radius: 20px;
            text-align: center;
            font-weight: bold;
            color: white;
        }

        .service-process {
            margin: 4rem 0;
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .timeline-marker {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .timeline-content h3 {
            color: #00F5D4;
            margin-bottom: 0.5rem;
        }

        .service-packages {
            margin: 4rem 0;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .package-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid rgba(0, 245, 212, 0.2);
            position: relative;
            transition: all 0.3s ease;
        }

        .package-card:hover {
            transform: translateY(-5px);
            border-color: #00F5D4;
        }

        .package-card.featured {
            border-color: #FF6F3C;
            background: rgba(255, 111, 60, 0.1);
        }

        .package-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            padding: 0.5rem 1rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .package-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .package-header h3 {
            color: #00F5D4;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .package-price {
            font-size: 2rem;
            font-weight: bold;
            color: #FF6F3C;
        }

        .package-price span {
            font-size: 1rem;
            opacity: 0.8;
        }

        .package-features ul {
            list-style: none;
            padding: 0;
        }

        .package-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 245, 212, 0.1);
        }

        .package-features li:before {
            content: "✓";
            color: #00F5D4;
            margin-right: 0.5rem;
        }

        .package-btn {
            width: 100%;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            border: none;
            padding: 1rem;
            border-radius: 25px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            margin-top: 2rem;
            transition: transform 0.3s ease;
        }

        .package-btn:hover {
            transform: scale(1.05);
        }

        /* Portfolio Page Styles */
        .portfolio-filter {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: transparent;
            border: 2px solid rgba(0, 245, 212, 0.3);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #00F5D4;
            color: #121212;
            border-color: #00F5D4;
        }

        .portfolio-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            padding: 0.5rem 1rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 5;
        }

        .portfolio-details {
            margin: 1rem 0;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
        }

        .portfolio-details p {
            margin: 0.5rem 0;
            font-size: 0.9rem;
        }

        .portfolio-testimonials {
            margin: 4rem 0;
            background: rgba(255, 255, 255, 0.05);
            padding: 4rem 0;
            border-radius: 20px;
        }

        .testimonials-carousel {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-slide {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .results-summary {
            margin: 4rem 0;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .result-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .result-number {
            font-size: 3rem;
            font-weight: bold;
            color: #FF6F3C;
            margin-bottom: 0.5rem;
        }

        .result-label {
            font-size: 1.2rem;
            font-weight: bold;
            color: #00F5D4;
            margin-bottom: 0.5rem;
        }

        .result-description {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        .portfolio-cta {
            background: linear-gradient(45deg, rgba(0, 245, 212, 0.1), rgba(255, 111, 60, 0.1));
            padding: 4rem 0;
            border-radius: 20px;
            text-align: center;
        }

        /* About Page Styles */
        .story-timeline {
            display: grid;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .story-item {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        .story-year {
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            padding: 1rem;
            border-radius: 10px;
            font-weight: bold;
            min-width: 80px;
            text-align: center;
        }

        .story-content {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .story-content h3 {
            color: #00F5D4;
            margin-bottom: 0.5rem;
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .leader-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
            text-align: center;
        }

        .leader-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .leader-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: #00F5D4;
            margin-bottom: 0.5rem;
        }

        .leader-role {
            color: #FF6F3C;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .leader-bio {
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .leader-credentials {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .leader-credentials span {
            background: rgba(0, 245, 212, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            color: #00F5D4;
        }

        .culture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .culture-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
            text-align: center;
        }

        .culture-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .culture-item h3 {
            color: #00F5D4;
            margin-bottom: 1rem;
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .award-item {
            display: flex;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .award-year {
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-weight: bold;
            min-width: 60px;
            text-align: center;
        }

        .award-content h4 {
            color: #00F5D4;
            margin-bottom: 0.5rem;
        }

        .award-content p {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        .offices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .office-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .office-card h4 {
            color: #00F5D4;
            margin-bottom: 1rem;
        }

        .join-team-cta {
            background: linear-gradient(45deg, rgba(0, 245, 212, 0.1), rgba(255, 111, 60, 0.1));
            padding: 4rem;
            border-radius: 20px;
            text-align: center;
        }

        .join-team-cta h2 {
            color: #00F5D4;
            margin-bottom: 1rem;
        }

        /* Contact Page Styles */
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .contact-method {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            transform: translateY(-5px);
            border-color: #00F5D4;
        }

        .method-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .contact-method h3 {
            color: #00F5D4;
            margin-bottom: 1rem;
        }

        .method-btn {
            background: linear-gradient(45deg, #00F5D4, #FF6F3C);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            margin-top: 1rem;
            transition: transform 0.3s ease;
        }

        .method-btn:hover {
            transform: scale(1.05);
        }

        .office-section {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(0, 245, 212, 0.2);
        }

        .department-contacts p {
            margin: 0.5rem 0;
            opacity: 0.9;
        }

        .response-info {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
        }

        .response-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 245, 212, 0.1);
        }

        .response-type {
            opacity: 0.9;
        }

        .response-time {
            color: #00F5D4;
            font-weight: bold;
        }

        .form-section {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(0, 245, 212, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group.half {
            margin-bottom: 1rem;
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .checkbox-item:hover {
            background: rgba(0, 245, 212, 0.1);
        }

        .checkbox-item input[type="checkbox"] {
            margin: 0;
        }

        .contact-faq {
            margin: 4rem 0;
            background: rgba(255, 255, 255, 0.05);
            padding: 4rem 0;
            border-radius: 20px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        .faq-item h4 {
            color: #00F5D4;
            margin-bottom: 1rem;
        }

        .next-steps {
            margin: 4rem 0;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .step-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(0, 245, 212, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .services-scroll-wrapper {
                grid-template-columns: 1fr;
            }
            
            .services-scroll-wrapper .service-card {
                min-width: 100%;
                max-width: none;
            }

            .company-values {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .home-services-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .category-nav {
                flex-direction: column;
                align-items: center;
            }

            .packages-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-filter {
                flex-direction: column;
                align-items: center;
            }

            .results-grid {
                grid-template-columns: 1fr;
            }

            .story-item {
                flex-direction: column;
            }

            .leadership-grid {
                grid-template-columns: 1fr;
            }

            .culture-grid {
                grid-template-columns: 1fr;
            }

            .awards-grid {
                grid-template-columns: 1fr;
            }

            .offices-grid {
                grid-template-columns: 1fr;
            }

            .contact-methods {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            /* New Layout Responsive */
            .layout-split {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .layout-split.reverse {
                direction: ltr;
            }

            .zigzag-item {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .zigzag-item:nth-child(even) {
                direction: ltr;
            }

            .layout-masonry {
                columns: 1;
            }

            .layout-hexagon {
                grid-template-columns: 1fr;
            }

            .hexagon-item:nth-child(2n) {
                transform: translateY(0);
            }

            .timeline-item {
                grid-template-columns: 1fr;
            }

            .timeline-line {
                left: 2rem;
            }

            .timeline-marker {
                left: 2rem;
            }

            .timeline-content {
                margin-left: 4rem;
            }

            .layout-cards-floating {
                grid-template-columns: 1fr;
            }

            .layout-diagonal {
                grid-template-columns: 1fr;
                transform: skewY(0deg);
            }

            .diagonal-item {
                transform: skewY(0deg);
            }

            .layout-circular {
                width: 100%;
                height: auto;
                position: relative;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                padding: 2rem;
            }

            .circular-item {
                position: relative;
                width: 100%;
                height: 120px;
                font-size: 0.8rem;
            }

            .circular-item:nth-child(1),
            .circular-item:nth-child(2),
            .circular-item:nth-child(3),
            .circular-item:nth-child(4),
            .circular-item:nth-child(5),
            .circular-item:nth-child(6),
            .circular-item:nth-child(7),
            .circular-item:nth-child(8) {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
                transform: none;
            }

            .page-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .typewriter {
                animation: none;
                border-right: none;
                white-space: normal;
            }
        }
