
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
    --primary: #ff6b6b;
    --secondary: #feca57;
    --accent: #ff9f1a;
    --success: #2ec4b6;
    --warning: #ffca3a;
    --light: #ffe5d9;
    --text: #1a1a1a;
    --gradient: linear-gradient(135deg, #ff6b6b 0%, #ff9f1a 100%);
}

        body {
            font-family: 'Orbitron', 'Arial', sans-serif;
            background: var(--primary);
            color: var(--text);
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background */
        .tech-bg {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(to bottom, #0a0e27, #1a1f3a);
        }

        .tech-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(254, 202, 87, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(254, 202, 87, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 2px solid var(--secondary);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px var(--secondary); }
            to { text-shadow: 0 0 20px var(--secondary), 0 0 30px var(--accent); }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--secondary);
            text-shadow: 0 0 10px var(--secondary);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            position: relative;
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 2rem;
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideInFromLeft 1s ease;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--text);
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: slideInFromLeft 1s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            animation: slideInFromLeft 1s ease 0.4s both;
        }

        .btn-tech {
            padding: 1rem 2rem;
            border: 2px solid var(--secondary);
            background: transparent;
            color: var(--secondary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-tech::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--secondary);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn-tech:hover::before {
            left: 0;
        }

        .btn-tech:hover {
            color: var(--primary);
            box-shadow: 0 0 30px var(--secondary);
            transform: translateY(-3px);
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            border: none;
        }

        .btn-primary:hover {
            box-shadow: 0 0 40px var(--secondary);
        }

        .hero-visual {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .hero-visual img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 50px rgba(254, 202, 87, 0.3);
            border: 2px solid var(--secondary);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .float-element {
            position: absolute;
            width: 60px;
            height: 60px;
            border: 2px solid var(--secondary);
            border-radius: 50%;
            animation: floatAround 10s ease-in-out infinite;
        }

        .float-element:nth-child(1) {
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .float-element:nth-child(2) {
            bottom: 20%;
            left: 5%;
            animation-delay: 3s;
        }

        .float-element:nth-child(3) {
            top: 50%;
            right: 5%;
            animation-delay: 6s;
        }

        @keyframes floatAround {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        /* Section Styles */
        .section {
            padding: 5rem 5%;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--secondary);
            box-shadow: 0 0 20px var(--secondary);
        }

        /* About Section */
        .about {
            background: var(--light);
            position: relative;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content {
            padding: 2rem;
            background: rgba(26, 31, 58, 0.5);
            border: 1px solid var(--secondary);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .about-content h3 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-content p {
            color: var(--text);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .tech-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-box {
            text-align: center;
            padding: 1.5rem;
            background: rgba(254, 202, 87, 0.1);
            border: 1px solid var(--secondary);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(254, 202, 87, 0.3);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Services Section */
        .services {
            background: var(--primary);
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--light);
            border: 1px solid var(--secondary);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(254, 202, 87, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(254, 202, 87, 0.3);
            border-color: var(--accent);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .service-card h3 {
            font-size: 1.3rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-card p {
            color: var(--text);
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq {
            background: var(--light);
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .faq-item {
            background: rgba(26, 31, 58, 0.5);
            border: 1px solid var(--secondary);
            padding: 1.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .faq-item:hover {
            transform: translateX(10px);
            box-shadow: -10px 0 30px rgba(254, 202, 87, 0.3);
            border-left: 3px solid var(--secondary);
        }

        .faq-question {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .faq-answer {
            color: var(--text);
            line-height: 1.6;
        }

        /* Packages Section */
        .packages {
            background: var(--primary);
        }

        .packages-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .package-card {
            background: var(--light);
            border: 2px solid transparent;
            padding: 2.5rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .package-card.featured {
            border-color: var(--accent);
            transform: scale(1.05);
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(254, 202, 87, 0.4);
        }

        .package-name {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .package-price {
            font-size: 3rem;
            font-weight: 900;
            color: var(--accent);
            margin-bottom: 2rem;
        }

        .package-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .package-features li {
            padding: 0.8rem 0;
            color: var(--text);
            border-bottom: 1px solid rgba(254, 202, 87, 0.2);
            position: relative;
            padding-left: 2rem;
        }

        .package-features li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--secondary);
        }

        /* Quote Section */
        .quote {
            background: linear-gradient(135deg, var(--light), var(--primary));
            position: relative;
            overflow: hidden;
        }

        .quote::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2300d4ff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }

        .quote-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .quote-form {
            background: rgba(26, 31, 58, 0.95);
            padding: 3rem;
            border: 2px solid var(--secondary);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .quote-form h2 {
            color: var(--secondary);
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(10, 14, 39, 0.5);
            border: 1px solid var(--secondary);
            color: var(--text);
            font-size: 1rem;
            transition: all 0.3s ease;
            border-radius: 5px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
        }

        /* Testimonials Section */
        .testimonials {
            background: var(--light);
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: rgba(26, 31, 58, 0.5);
            border: 1px solid var(--secondary);
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(254, 202, 87, 0.3);
        }

        .testimonial-text {
            color: var(--text);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            position: relative;
            padding-left: 2rem;
        }

        .testimonial-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--secondary);
            opacity: 0.5;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h4 {
            color: var(--secondary);
            margin-bottom: 0.2rem;
        }

        .author-info p {
            color: var(--text);
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Footer */
        footer {
            background: var(--primary);
            padding: 3rem 5%;
            text-align: center;
            border-top: 2px solid var(--secondary);
            position: relative;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-links a:hover {
            color: var(--secondary);
            text-shadow: 0 0 10px var(--secondary);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: var(--light);
            margin: 5% auto;
            padding: 3rem;
            border: 2px solid var(--secondary);
            width: 90%;
            max-width: 500px;
            position: relative;
            animation: slideInUp 0.5s ease;
            box-shadow: 0 0 50px rgba(254, 202, 87, 0.5);
        }

        .close {
            position: absolute;
            right: 1.5rem;
            top: 1.5rem;
            font-size: 2rem;
            cursor: pointer;
            color: var(--secondary);
            transition: all 0.3s ease;
        }

        .close:hover {
            color: var(--accent);
            transform: rotate(90deg);
        }

        .modal h2 {
            color: var(--secondary);
            margin-bottom: 2rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .about-container {
                grid-template-columns: 1fr;
            }
            
            .tech-stats {
                grid-template-columns: 1fr;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
            }
        }
    