:root {
            --primary: #6A36FF;
            --secondary: #FF366A;
            --accent: #36FFB5;
            --dark: #1A1A2E;
            --darker: #0D0D1A;
            --light: #F0F5FF;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--light);
            background-color: var(--darker);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1.2rem 0;
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 0.8rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .logo span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        
        .logo span:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient);
            border-radius: 10px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
            position: relative;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--light);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .hamburger{
            display: none;
            cursor: pointer;
            background: var(--gradient);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 5rem;
            position: relative;
            overflow: hidden;
        }
        
        #particles-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-content {
            width: 50%;
            z-index: 2;
            position: relative;
        }
        
        .hero-image {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            z-index: 1;
            opacity: 0.8;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--gradient);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(106, 54, 255, 0.4);
        }
        
        .btn:hover:before {
            width: 100%;
        }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--light);
            margin-left: 1rem;
        }
        
        .btn-secondary:hover {
            color: white;
        }
        


        .image-placeholder {
            width: 100%;
            max-width: 500px;
            height: 400px;
            background: linear-gradient(135deg, rgba(106, 54, 255, 0.2) 0%, rgba(255, 54, 106, 0.2) 100%);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            position: relative;
            margin-left: 40px;
        }
        
        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }
        
        .floating-element {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #6A36FF 0%, #FF366A 100%);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 2rem;
            animation: float 5s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 20px;
            right: 30px;
            animation-delay: 0s;
            width: 60px;
            height: 60px;
        }
        
        .floating-element:nth-child(2) {
            bottom: 40px;
            left: 20px;
            animation-delay: 1s;
            background: linear-gradient(135deg, #36FFB5 0%, #6A36FF 100%);
        }
        
        .floating-element:nth-child(3) {
            top: 50%;
            right: 10px;
            animation-delay: 2s;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FF366A 0%, #36FFB5 100%);
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }
        
        .stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #6A36FF 0%, #FF366A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }
        
        .stat-text {
            font-size: 0.9rem;
            color: #a0a0c0;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 3rem;
            }
            
            h1 {
                font-size: 2.8rem;
            }
            
            .stats {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .btn {
                display: block;
                margin: 1rem auto;
                width: 80%;
            }
            
            .btn-secondary {
                margin-left: 0;
            }
            
            .image-placeholder {
                height: 300px;
            }
        }
        /* Services Section */
        .services {
            padding: 8rem 0;
            background-color: var(--dark);
            position: relative;
        }
        
        .services:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+CiAgPHBhdGggZD0iTTAgMGg2MHY2MEgweiIgZmlsbD0ibm9uZSIvPgogIDxwYXRoIGQ9Ik0zMCAzMG0tMjggMGEyOCwyOCAwIDEsMSA1NiwwYTI4LDI4IDAgMSwxIC01NiwwIiBzdHJva2U9IiMxQTFBMkUiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIgLz4KPC9zdmc+');
            opacity: 0.3;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--light);
            margin-bottom: 1rem;
        }
        
        .section-title p {
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }
        
        .service-card {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            transition: var(--transition);
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(106, 54, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--gradient);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .service-card:hover:before {
            height: 100%;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(106, 54, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: var(--transition);
            position: relative;
        }
        
        .service-card:hover .service-icon {
            background: var(--gradient);
            transform: rotateY(180deg);
        }
        
        .service-icon i {
            font-size: 2rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon i {
            -webkit-text-fill-color: white;
            transform: rotateY(180deg);
        }
        
        .service-card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        /* About Section */
        .about {
            padding: 8rem 0;
            background: var(--darker);
            position: relative;
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-image {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-image:after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 3px solid var(--primary);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.5;
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .about-content p {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }
        
        .stat-text {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Portfolio Section */
        .portfolio {
            padding: 8rem 0;
            background: var(--dark);
            position: relative;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .portfolio-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 300px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            opacity: 0;
            transition: var(--transition);
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay h3 {
            color: white;
            margin-bottom: 0.5rem;
            transform: translateY(20px);
            transition: var(--transition);
            transition-delay: 0.1s;
            opacity: 0;
        }
        
        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.8);
            transform: translateY(20px);
            transition: var(--transition);
            transition-delay: 0.2s;
            opacity: 0;
        }
        
        .portfolio-item:hover .portfolio-overlay h3,
        .portfolio-item:hover .portfolio-overlay p {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 8rem 0;
            background: var(--darker);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials:before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.1;
            filter: blur(50px);
        }
        
        .testimonials:after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--secondary);
            opacity: 0.1;
            filter: blur(50px);
        }
        
        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial {
            background: rgba(26, 26, 46, 0.7);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 2rem;
            min-width: 100%;
            text-align: center;
            position: relative;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(106, 54, 255, 0.2);
        }
        
        .testimonial i {
            font-size: 3rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: absolute;
            top: 20px;
            left: 20px;
        }
        
        .testimonial-content {
            margin-bottom: 2rem;
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 3px solid var(--primary);
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 0.2rem;
        }
        
        .author-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 0.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .testimonial-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }
        
        /* Team Section */
        .team {
            padding: 8rem 0;
            background: var(--dark);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .team-member {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            overflow: hidden;
            text-align: center;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(106, 54, 255, 0.2);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .member-image {
            height: 300px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 1.5rem;
        }
        
        .member-info h3 {
            margin-bottom: 0.5rem;
        }
        
        .member-role {
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 500;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .member-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: rgba(106, 54, 255, 0.1);
            border-radius: 50%;
            color: var(--light);
            transition: var(--transition);
        }
        
        .member-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        /* Pricing Section */
        .pricing {
            padding: 8rem 0;
            background: var(--darker);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .pricing-plan {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            padding: 3rem 2rem;
            text-align: center;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(106, 54, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-plan.featured {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-plan.featured:before {
            content: 'Popular';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--primary);
            color: white;
            padding: 0.5rem 2rem;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .pricing-plan:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .pricing-plan.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .plan-name {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .plan-price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .plan-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        /* Blog Section */
        .blog {
            padding: 8rem 0;
            background: var(--dark);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .blog-post {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(106, 54, 255, 0.2);
        }
        
        .blog-post:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .post-image {
            height: 200px;
            overflow: hidden;
        }
        
        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .blog-post:hover .post-image img {
            transform: scale(1.1);
        }
        
        .post-content {
            padding: 1.5rem;
        }
        
        .post-date {
            font-size: 0.8rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .post-content h3 {
            margin-bottom: 1rem;
        }
        
        .post-excerpt {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .post-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Clients Section */
        .clients {
            padding: 8rem 0;
            background: var(--darker);
        }
        
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 3rem;
            align-items: center;
        }
        
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: var(--transition);
            text-align: center;
        }
        
        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }
        
        .client-logo img {
            max-width: 100%;
            height: auto;
        }
        
        /* CTA Section */
        .cta {
            padding: 8rem 0;
            background: var(--gradient);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+CiAgPHBhdGggZD0iTTAgMGg2MHY2MEgweiIgZmlsbD0ibm9uZSIvPgogIDxwYXRoIGQ9Ik0zMCAzMG0tMjggMGEyOCwyOCAwIDEsMSA1NiwwYTI4LDI4IDAgMSwxIC01NiwwIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIiAvPgo8L3N2Zz4=');
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        /* Contact Section */
        .contact {
            padding: 8rem 0;
            background: var(--dark);
            position: relative;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--light);
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 1.2rem;
        }
        
        .contact-form {
            background: rgba(26, 26, 46, 0.7);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(106, 54, 255, 0.2);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(106, 54, 255, 0.2);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
            background: rgba(13, 13, 26, 0.5);
            color: var(--light);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(106, 54, 255, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: var(--darker);
            color: white;
            padding: 4rem 0 2rem;
            position: relative;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        
        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-col h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient);
            border-radius: 10px;
        }
        .footer-col .newsletter-form input{
            padding: 10px 10px;
            margin-top: 20px;
            outline: none;
            border: none;
            border-radius: 8px 0 0 8px;
            flex-wrap: nowrap;
            position: relative;
        }
        .footer-col .newsletter-form button{
            padding: 10px 10px;
            background: var(--gradient);
            color: white;
            outline: none;
            border: none;
            cursor: pointer;
            border-radius: 0 8px 8px 0;
            position: absolute;
            top: 42.3%;
        }

        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--gradient);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
/* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                width: 100%;
                text-align: center;
                padding: 2rem;
            }
            
            .hero-image {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .about-image {
                order: -1;
            }
            
            .pricing-plan.featured {
                transform: scale(1);
            }
            
            .pricing-plan.featured:hover {
                transform: translateY(-10px);
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 250px;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 2rem 0;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
                z-index: 1;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 1.5rem 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .btn {
                display: block;
                margin: 1rem auto;
                width: 80%;
            }
            
            .contact-container {
                gap: 2rem;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .service-card, .portfolio-item, .testimonial, .contact-form {
                padding: 1.5rem;
            }
            
            .testimonial {
                margin: 1rem;
            }
        }


/* Custom Cursor Styles */
* {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #6A36FF;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: transform 0.2s ease;
}

.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid #6A36FF;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Cursor states */
.custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
    background: #FF366A;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: #36FFB5;
}

.cursor-outline.click {
    transform: translate(-50%, -50%) scale(1.2);
    border-color: #FF366A;
}

.cursor-outline.hover {
    transform: translate(-50%, -50%) scale(1.2);
    border-color: #36FFB5;
    background: rgba(54, 255, 181, 0.1);
}