
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        body {
            background-color: #0A0A0A;
            color: #FFFFFF;
            overflow-x: hidden;
            cursor: none;
        }

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

        .cursor-dot {
            width: 4px;
            height: 4px;
            background-color: #FF4D4D;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.15s ease-out;
            transform: translate(-50%, -50%);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #1A1A1A;
        }

        ::-webkit-scrollbar-thumb {
            background: #FF4D4D;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #E63946;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
            backdrop-filter: blur(10px);
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

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

        .nav-links {
            display: flex;
            gap: 3rem;
        }

        .nav-links a {
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FF4D4D;
            transition: width 0.3s ease;
        }

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

        /* Main Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4rem;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .hero-logo {
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease forwards;
        }

        .hero-logo-img {
            height: 80px;
            width: auto;
        }

        .hero-title {
            font-size: 5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 0.2s forwards;
        }

        .hero-title .highlight {
            color: #FF4D4D;
            position: relative;
            display: inline-block;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 20px;
            background-color: rgba(255, 77, 77, 0.2);
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #CCCCCC;
            margin-bottom: 2.5rem;
            max-width: 600px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 0.4s forwards;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 0.8s forwards;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #FF4D4D;
        }

        .stat-label {
            color: #CCCCCC;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-container {
            display: flex;
            gap: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease 0.6s forwards;
        }

        .cta-primary {
            padding: 1rem 2.5rem;
            background-color: #FF4D4D;
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            border: 2px solid #FF4D4D;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-primary:hover {
            background-color: transparent;
            color: #FF4D4D;
        }

        .cta-secondary {
            padding: 1rem 2.5rem;
            border: 2px solid #FFFFFF;
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

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

        /* Services Section */
        .services {
            padding: 8rem 0;
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            color: #CCCCCC;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-title span {
            color: #FF4D4D;
            position: relative;
        }

        .section-title span::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #FF4D4D, transparent);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: linear-gradient(145deg, #1A1A1A, #0F0F0F);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

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

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #FF4D4D;
            box-shadow: 0 20px 40px rgba(255,77,77,0.15);
        }

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

        .card-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 1.5rem;
        }

        .card-icon svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: #FF4D4D;
            stroke-width: 2;
            transition: all 0.3s ease;
        }

        .service-card:hover .card-icon svg {
            transform: scale(1.1);
            filter: drop-shadow(0 0 10px rgba(255,77,77,0.5));
        }

        .service-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #FFFFFF;
        }

        .service-description {
            color: #CCCCCC;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-features li {
            color: #CCCCCC;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-features li::before {
            content: '→';
            color: #FF4D4D;
            font-weight: bold;
        }

        .service-link {
            color: #FF4D4D;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 1rem;
        }

        /* Featured Work Section */
        .featured-work {
            padding: 8rem 0;
            background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
        }

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

        .work-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 16/9;
            cursor: pointer;
        }

        .work-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(255,77,77,0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

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

        .work-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .work-overlay p {
            color: rgba(255,255,255,0.9);
        }

        /* Team Section */
        .team {
            padding: 8rem 0;
        }

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

        .team-member {
            text-align: center;
        }

        .member-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            border: 3px solid #FF4D4D;
            padding: 5px;
        }

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

        .team-member:hover .member-image img {
            transform: scale(1.1);
        }

        .member-name {
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
        }

        .member-role {
            color: #FF4D4D;
            margin-bottom: 1rem;
        }

        .member-bio {
            color: #CCCCCC;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Technologies Section */
        .technologies {
            padding: 8rem 0;
            background-color: #1A1A1A;
        }

        .tech-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            max-width: 800px;
            margin: 4rem auto 0;
        }

        .tech-item {
            padding: 1rem 2rem;
            background-color: #0A0A0A;
            border: 1px solid #FF4D4D;
            border-radius: 50px;
            color: #FFFFFF;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: default;
        }

        .tech-item:hover {
            background-color: #FF4D4D;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255,77,77,0.3);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 8rem 0;
        }

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

        .testimonial-card {
            background-color: #1A1A1A;
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255,77,77,0.3);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 6rem;
            color: #FF4D4D;
            opacity: 0.3;
            font-family: serif;
        }

        .testimonial-text {
            color: #FFFFFF;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

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

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
        }

        .author-info p {
            color: #FF4D4D;
            font-size: 0.9rem;
        }

        /* Blog Section */
        .blog {
            padding: 8rem 0;
            background-color: #1A1A1A;
        }

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

        .blog-post {
            background-color: #0A0A0A;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .blog-post:hover {
            transform: translateY(-10px);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

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

        .blog-post:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-date {
            color: #FF4D4D;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .blog-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: #CCCCCC;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .blog-link {
            color: #FF4D4D;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-link:hover {
            gap: 1rem;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 0;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .contact-details {
            margin: 2rem 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: #1A1A1A;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #FF4D4D;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            fill: #FF4D4D;
        }

        .contact-text {
            color: #CCCCCC;
        }

        .contact-form {
            background-color: #1A1A1A;
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255,77,77,0.3);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background-color: #0A0A0A;
            border: 1px solid #333;
            border-radius: 10px;
            color: #FFFFFF;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #FF4D4D;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background-color: #0A0A0A;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background-color: #FF4D4D;
            color: #FFFFFF;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .submit-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .submit-btn:hover {
            background-color: transparent;
            border: 2px solid #FF4D4D;
            color: #FF4D4D;
        }

        /* Footer */
        footer {
            background-color: #0A0A0A;
            border-top: 1px solid rgba(255,77,77,0.3);
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo-img {
            height: 60px;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-about {
            color: #CCCCCC;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-links h4 {
            color: #FFFFFF;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links a {
            display: block;
            color: #CCCCCC;
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #FF4D4D;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.8rem;
            background-color: #1A1A1A;
            border: 1px solid #333;
            border-radius: 5px;
            color: #FFFFFF;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: #FF4D4D;
        }

        .newsletter-btn {
            padding: 0.8rem 1.5rem;
            background-color: #FF4D4D;
            color: #FFFFFF;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter-btn:hover {
            background-color: #E63946;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #1A1A1A;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #FF4D4D;
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            color: #666666;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* Chatbot Button */
        .chatbot-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background-color: #FF4D4D;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            border: 2px solid #FFFFFF;
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        .chatbot-btn:hover {
            transform: scale(1.1);
            background-color: #E63946;
        }

        .chatbot-btn svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        /* Chatbot Panel */
        .chatbot-panel {
            position: fixed;
            bottom: 6rem;
            right: 2rem;
            width: 350px;
            height: 500px;
            background-color: #1A1A1A;
            border-radius: 20px;
            border: 2px solid #FF4D4D;
            z-index: 999;
            transform: scale(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .chatbot-panel.active {
            transform: scale(1);
        }

        .chatbot-header {
            background-color: #FF4D4D;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chatbot-header h3 {
            color: #FFFFFF;
        }

        .close-chat {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .chatbot-messages {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
        }

        .message {
            margin-bottom: 1rem;
            padding: 0.8rem;
            border-radius: 10px;
            max-width: 80%;
        }

        .bot-message {
            background-color: #0A0A0A;
            color: #FFFFFF;
            border: 1px solid #FF4D4D;
        }

        .user-message {
            background-color: #FF4D4D;
            color: #FFFFFF;
            margin-left: auto;
        }

        .chatbot-input {
            padding: 1rem;
            border-top: 1px solid rgba(255,77,77,0.3);
            display: flex;
            gap: 0.5rem;
        }

        .chatbot-input input {
            flex: 1;
            padding: 0.5rem;
            background-color: #0A0A0A;
            border: 1px solid #333;
            border-radius: 5px;
            color: white;
        }

        .chatbot-input input:focus {
            outline: none;
            border-color: #FF4D4D;
        }

        .send-btn {
            background-color: #FF4D4D;
            border: none;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .send-btn:hover {
            background-color: #E63946;
        }

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

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255,77,77,0.7);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(255,77,77,0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255,77,77,0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .team-grid, .work-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 2rem;
            }

            .nav-links {
                display: none;
            }

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

            .hero-logo-img {
                height: 60px;
            }

            .container {
                padding: 0 2rem;
            }

            .services-grid,
            .work-grid,
            .testimonial-grid,
            .blog-grid,
            .contact-container,
            .footer-content {
                grid-template-columns: 1fr;
            }

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

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .chatbot-panel {
                width: 300px;
                height: 400px;
                right: 1rem;
                bottom: 5rem;
            }
        }

        /* Fallback for logo */
        .logo-fallback {
            display: none;
        }
    

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    display: block;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
}
.carousel-slide:first-child {
    position: relative;
}

.carousel-btn {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 77, 77, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prev-btn {
    left: 20px;
}
.next-btn {
    right: 20px;
}

.carousel-btn:hover {
    background: #FF4D4D;
    border-color: #FF4D4D;
    transform: translateY(-50%) scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot:hover {
    background: rgba(255, 77, 77, 0.5);
}

.carousel-dots .current-dot {
    background: #FF4D4D;
    transform: scale(1.3);
}

/* ============================================================
   PRODUCTS PAGE STYLES
   ============================================================ */

/* Products Hero */
.products-hero {
    padding-top: 9rem;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.products-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,77,77,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.products-hero .section-title { font-size: 3.5rem; }
.products-hero .section-subtitle { max-width: 700px; }

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2.5rem 0 3.5rem;
}
.filter-tab {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: #CCC;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}
.filter-tab:hover {
    border-color: #FF4D4D;
    color: #FF4D4D;
}
.filter-tab.active {
    background: #FF4D4D;
    border-color: #FF4D4D;
    color: #fff;
}

/* Products Grid */
.products-section { padding: 2rem 0 8rem; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Product Card */
.product-card {
    background: linear-gradient(145deg, #141414, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.45s cubic-bezier(0.25,1,0.5,1);
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,77,77,0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}
.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,77,77,0.5);
    box-shadow: 0 24px 50px rgba(255,77,77,0.15), 0 0 0 1px rgba(255,77,77,0.1);
}
.product-card:hover::before { opacity: 1; }

/* Screenshot Preview */
.product-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #111;
    overflow: hidden;
    flex-shrink: 0;
}
.product-preview iframe {
    width: 200%;
    height: 200%;
    border: none;
    transform: scale(0.5);
    transform-origin: top left;
    pointer-events: none;
}
.product-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}
.product-card:hover .product-preview-img { transform: scale(1.04); }

/* Shimmer loader */
.preview-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.preview-overlay-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
}
.preview-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
}

/* Card Body */
.product-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    position: relative;
    z-index: 1;
}
.product-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}
.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.product-tagline {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Pricing Badges */
.pricing-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pricing-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-rental {
    background: rgba(99,179,237,0.12);
    border: 1px solid rgba(99,179,237,0.35);
    color: #63b3ed;
}
.badge-deploy {
    background: rgba(154,117,237,0.12);
    border: 1px solid rgba(154,117,237,0.35);
    color: #b794f4;
}
.badge-category {
    background: rgba(255,77,77,0.1);
    border: 1px solid rgba(255,77,77,0.3);
    color: #FF4D4D;
}

/* Product Price Row */
.product-price-row {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}
.price-item {
    display: flex;
    flex-direction: column;
}
.price-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.price-value {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: auto;
}
.product-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}
.btn-view-live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    background: #FF4D4D;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    border: 2px solid #FF4D4D;
}
.btn-view-live:hover {
    background: transparent;
    color: #FF4D4D;
}
.btn-rent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    background: transparent;
    color: #63b3ed;
    border: 1px solid rgba(99,179,237,0.4);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}
.btn-rent:hover {
    background: rgba(99,179,237,0.12);
    border-color: #63b3ed;
}
.btn-deploy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    background: transparent;
    color: #b794f4;
    border: 1px solid rgba(154,117,237,0.4);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}
.btn-deploy:hover {
    background: rgba(154,117,237,0.12);
    border-color: #b794f4;
}
.btn-demo {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
}
.btn-demo:hover {
    border-color: rgba(255,77,77,0.5);
    color: #FF4D4D;
    background: rgba(255,77,77,0.05);
}

/* Empty State */
.products-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 5rem 2rem;
    color: #555;
}
.products-empty svg { width: 60px; height: 60px; margin-bottom: 1.5rem; stroke: #333; }
.products-empty p { font-size: 1.1rem; }

/* ── DEMO MODAL ── */
.demo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.demo-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.demo-modal {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border: 1px solid rgba(255,77,77,0.3);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 520px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.25,1,0.5,1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,77,77,0.1);
}
.demo-modal-overlay.active .demo-modal {
    transform: translateY(0) scale(1);
}
.demo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.demo-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}
.demo-modal-header h3 span { color: #FF4D4D; }
.demo-modal-header p {
    color: #888;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}
.demo-modal-close {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.demo-modal-close:hover {
    background: rgba(255,77,77,0.15);
    border-color: #FF4D4D;
    color: #FF4D4D;
}
.demo-modal-system {
    background: rgba(255,77,77,0.08);
    border: 1px solid rgba(255,77,77,0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #FF4D4D;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.demo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.demo-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.demo-form .form-field.full { grid-column: 1/-1; }
.demo-form label {
    font-size: 0.82rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.demo-form input,
.demo-form textarea,
.demo-form select {
    padding: 0.8rem 1rem;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    width: 100%;
}
.demo-form input:focus,
.demo-form textarea:focus,
.demo-form select:focus {
    outline: none;
    border-color: #FF4D4D;
}
.demo-form textarea { height: 90px; resize: vertical; }
.demo-form select option { background: #0d0d0d; }
.demo-submit-btn {
    width: 100%;
    padding: 1rem;
    background: #FF4D4D;
    color: #fff;
    border: 2px solid #FF4D4D;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
.demo-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.demo-submit-btn:hover::before { width: 400px; height: 400px; }
.demo-submit-btn:hover {
    background: transparent;
    color: #FF4D4D;
}
.demo-success {
    text-align: center;
    padding: 2rem 0;
    display: none;
}
.demo-success svg { width: 64px; height: 64px; margin-bottom: 1rem; }
.demo-success h4 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.demo-success p { color: #888; }

/* ── Featured badge on card ── */
.featured-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FF4D4D;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

/* Responsive for products */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .products-grid { grid-template-columns: 1fr; }
    .demo-form .form-row { grid-template-columns: 1fr; }
    .products-hero .section-title { font-size: 2.4rem; }
}
