/* ==========================================================================
           Hero Section (Dark & Glowing)
           ========================================================================== */
        .hero {
            background: var(--bg-dark-1);
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px; /* Offset for navbar */
        }

        .hero::before, .hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            z-index: 0;
            opacity: 0.5;
            animation: floatBlob 10s infinite alternate ease-in-out;
        }
        .hero::before {
            width: 600px;
            height: 600px;
            background: var(--primary);
            top: -100px;
            right: -100px;
        }
        .hero::after {
            width: 400px;
            height: 400px;
            background: #4F46E5; /* Indigo */
            bottom: -50px;
            left: -100px;
            animation-delay: -5s;
        }

        @keyframes floatBlob {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, 50px) scale(1.1); }
        }

        .hero-container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: clamp(36px, 5vw, 72px);
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }
        
        .hero-content #t {
            color: var(--accent);
            border-bottom: 3px solid rgba(56, 189, 248, 0.3);
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #94A3B8;
            margin-bottom: 40px;
            max-width: 90%;
        }

        .hero-features {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        .hero-feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #CBD5E1;
            font-size: 0.95rem;
            font-weight: 500;
        }
        .hero-feature-item i {
            color: var(--accent);
        }

        .hero-graphics {
            position: relative;
            height: 600px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Laptop Mockup Base */
        .laptop-mockup {
            width: 100%;
            max-width: 600px;
            height: 380px;
            background: #1e293b;
            border-radius: 16px 16px 0 0;
            border: 4px solid #334155;
            border-bottom: none;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            z-index: 2;
        }
        .laptop-base {
            width: 110%;
            height: 20px;
            background: #475569;
            position: absolute;
            bottom: -20px;
            left: -5%;
            border-radius: 0 0 20px 20px;
            z-index: 3;
            box-shadow: inset 0 -4px 10px rgba(0,0,0,0.5);
        }
        .laptop-screen {
            flex-grow: 1;
            background: #0f172a;
            position: relative;
            overflow: hidden;
        }
        .fake-dashboard {
            display: grid;
            grid-template-columns: 20% 80%;
            height: 100%;
        }
        .dash-sidebar {
            background: rgba(255,255,255,0.05);
            border-right: 1px solid rgba(255,255,255,0.1);
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .dash-line { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; }
        .dash-main { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
        .dash-header { height: 30px; background: rgba(56, 189, 248, 0.2); border-radius: 6px; width: 40%; }
        .dash-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
        .dash-card { height: 60px; background: rgba(255,255,255,0.05); border-radius: 6px; }
        .dash-chart { flex-grow: 1; background: rgba(37, 99, 235, 0.2); border-radius: 8px; position: relative;}

        /* Floating Glass Cards */
        .glass-float-card {
            position: absolute;
            background: var(--glass-bg-dark);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border-dark);
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            z-index: 5;
            animation: float 6s infinite ease-in-out;
        }
        
        .code-card {
            top: 40px;
            left: -40px;
            width: 240px;
            animation-delay: -2s;
        }
        .code-header {
            display: flex;
            gap: 6px;
            margin-bottom: 12px;
        }
        .code-dot { width: 10px; height: 10px; border-radius: 50%; }
        .dot-r { background: #EF4444; }
        .dot-y { background: #F59E0B; }
        .dot-g { background: #10B981; }
        .code-snippet {
            font-family: monospace;
            font-size: 0.8rem;
            color: #A78BFA;
            line-height: 1.6;
        }
        .code-snippet span { color: #38BDF8; }
        
        .stats-float-card {
            bottom: 60px;
            right: -30px;
            width: 220px;
            display: flex;
            align-items: center;
            gap: 15px;
            animation-delay: -1s;
        }
        .stats-icon {
            width: 48px; height: 48px; border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; color: white;
        }
        .stats-info h4 { color: white; margin: 0; font-size: 1.2rem; }
        .stats-info p { color: #94A3B8; margin: 0; font-size: 0.8rem; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @media (max-width: 992px) {
            .hero-container { grid-template-columns: 1fr; text-align: center; }
            .hero-content p { margin: 0 auto 30px; }
            .hero-features { justify-content: center; }
            .hero-graphics { margin-top: 40px; height: auto; padding: 40px 20px; }
            .code-card { left: 0; top: 0; }
            .stats-float-card { right: 0; bottom: 0; }
        }


        .stats-section {
            background-color: var(--white);
            border-bottom: 1px solid #E2E8F0;
            padding: 60px 0;
            position: relative;
            z-index: 10;
            margin-top: -1px; /* seamless connect */
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }


        .tech-section {
            background-color: var(--bg-light);
        }
        
        .tech-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .tech-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            border: 1px solid #E2E8F0;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            color: var(--text-main);
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }
        .tech-badge:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }
        .tech-badge i {
            font-size: 1.5rem;
        }

        .services-section {
            background-color: var(--white);
        }

        .service-card {
            background: var(--white);
            border: 1px solid #E2E8F0;
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: transparent;
        }

        .service-icon-wrap {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(56, 189, 248, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        .service-card:hover .service-icon-wrap {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
        }
        .service-icon-wrap i {
            font-size: 32px;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        .service-card:hover .service-icon-wrap i {
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
        }
        .service-link:hover {
            color: var(--primary-hover);
            gap: 12px;
        }


        .process-section {
            background-color: var(--bg-dark-1);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        .process-section .section-header h2 { color: var(--white); }
        .process-section .section-header p { color: #94A3B8; }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            margin-top: 60px;
        }
        
        @media (min-width: 992px) {
            .process-grid::before {
                content: '';
                position: absolute;
                top: 45px;
                left: 15%;
                right: 15%;
                height: 2px;
                background: rgba(255,255,255,0.1);
                z-index: 1;
            }
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-icon-container {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: var(--bg-dark-2);
            border: 2px solid var(--glass-border-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent);
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
            transition: all 0.4s ease;
            position: relative;
        }
        .step-icon-container::after {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 1px dashed rgba(56, 189, 248, 0.4);
            animation: spin 10s linear infinite;
        }
        @keyframes spin { 100% { transform: rotate(360deg); } }
        
        .process-step:hover .step-icon-container {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            transform: scale(1.1);
        }

        .process-step h4 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        .process-step p {
            color: #94A3B8;
            font-size: 0.95rem;
        }

        @media (max-width: 991px) {
            .process-grid { grid-template-columns: 1fr; gap: 60px; }
        }


        .portfolio-section {
            background-color: var(--bg-light);
        }

        .portfolio-card {
            background: var(--white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .portfolio-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .portfolio-img-wrap {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        .portfolio-img-wrap img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
            transition: transform 0.6s ease;
        }
        .portfolio-card:hover .portfolio-img-wrap img {
            transform: scale(1.08);
        }
        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
        }
        .portfolio-overlay i {
            color: white;
            font-size: 2rem;
            background: rgba(255,255,255,0.2);
            padding: 15px;
            border-radius: 50%;
            backdrop-filter: blur(5px);
        }

        .portfolio-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .portfolio-category {
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .portfolio-content h4 {
            font-size: 1.25rem;
            margin-bottom: 10px;
        }
        .portfolio-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .portfolio-btn {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: auto;
        }
        .portfolio-btn:hover {
            color: var(--primary);
        }

        .why-us-section {
            background-color: var(--white);
        }
        .why-card {
            padding: 40px 30px;
            border: 1px solid #E2E8F0;
            border-radius: var(--radius-md);
            background: var(--bg-light);
            height: 100%;
            transition: all 0.3s ease;
        }
        .why-card:hover {
            background: var(--white);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
            transform: translateY(-5px);
        }
        .why-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .why-card h5 {
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        .why-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0;
        }


        .testimonials-section {
            background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
            position: relative;
            overflow: hidden;
        }
        
        /* Subtle background pattern */
        .testimonials-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(var(--primary-light) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.05;
        }

        .testimonial-card {
            background: var(--glass-bg-light);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border-light);
            border-radius: var(--radius-lg);
            padding: 40px;
            height: 100%;
            box-shadow: var(--shadow-soft);
            position: relative;
            transition: all 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .quote-icon {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 3rem;
            color: rgba(37, 99, 235, 0.1);
        }

        .rating {
            color: #F59E0B;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 1.05rem;
            color: var(--text-main);
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #cbd5e1;
            -o-object-fit: cover;
               object-fit: cover;
            border: 2px solid var(--white);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .client-details h5 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--text-dark);
        }
        .client-details p {
            margin: 0;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .team-section {
            background-color: var(--white);
        }

        .team-card {
            background: var(--bg-light);
            border: 1px solid #E2E8F0;
            border-radius: var(--radius-md);
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            background: var(--white);
            border-color: transparent;
        }

        .team-img-wrapper {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            border-radius: 50%;
            padding: 4px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
        }
        .team-img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
            border-radius: 50%;
            border: 4px solid var(--white);
        }

        .team-card h5 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        .team-role {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 20px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: auto;
            margin-bottom: 15px;
        }
        .team-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #E2E8F0;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .team-social a:hover {
            background: var(--primary);
            color: var(--white);
        }

        .btn-portfolio {
            display: block;
            width: 100%;
            padding: 10px;
            background: transparent;
            border: 1px solid #CBD5E1;
            border-radius: var(--radius-sm);
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .team-card:hover .btn-portfolio {
            background: rgba(37, 99, 235, 0.05);
            border-color: var(--primary);
            color: var(--primary);
        }

    
        .faq-section {
            background-color: var(--bg-light);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            background: var(--white);
            border: 1px solid #E2E8F0;
            border-radius: var(--radius-sm) !important;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }
        
        .accordion-button {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-dark);
            padding: 20px 25px;
            background: var(--white);
            box-shadow: none !important;
        }
        .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: var(--white);
        }
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748b'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        }
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563EB'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        }

        .accordion-body {
            padding: 0 25px 25px;
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--bg-dark-1), var(--bg-dark-2));
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: var(--primary);
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.3;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .cta-container {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-container h2 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 20px;
        }
        .cta-container p {
            color: #94A3B8;
            font-size: 1.2rem;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-whatsapp {
            background: #25D366;
            color: white !important;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }