        :root {
            /* Gen Z / Pastel Light Theme Palette */
            --bg-body: #fffbf7; /* Warm Pastel Cream */
            --bg-card: #ffffff; /* Crisp White */
            --bg-input: #f1f5f9; /* Light Grey for Inputs */
            
            --text-main: #1e293b; /* Slate 800 */
            --text-muted: #64748b; /* Slate 500 */
            
            /* Vibrant Accents (kept slightly saturated for pop) */
            --accent-primary: #8b5cf6; /* Violet */
            --accent-secondary: #06b6d4; /* Cyan */
            --accent-pop: #84cc16; /* Lime Green */
            --accent-hot: #f43f5e; /* Rose */
            
            --gradient-main: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: 1px solid rgba(0, 0, 0, 0.05);
            
            /* Soft Shadows for Light Mode */
            --shadow-card: 0 10px 40px -10px rgba(0,0,0,0.08);
            --shadow-hover: 0 20px 50px -10px rgba(139, 92, 246, 0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-body);
            background-image: radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 20%), 
                              radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 20%);
            color: var(--text-main);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.03em;
            color: var(--text-main);
        }

        /* Gradient Text Helper */
        .text-gradient {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Navigation - Glassmorphism Light */
        .navbar {
            background-color: var(--glass-bg) !important;
            backdrop-filter: blur(12px);
            border-bottom: var(--glass-border);
            padding: 1rem 0;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--text-main) !important;
            display: flex;
            align-items: center;
        }

        /* The Dots Logo */
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 4px;
        }
        .dot-1 { background-color: var(--accent-secondary); }
        .dot-2 { background-color: var(--accent-primary); }

        .nav-link {
            color: var(--text-muted) !important;
            font-weight: 600;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-primary) !important;
        }

        /* Hero Section */
        .hero-section {
            padding: 140px 0 100px;
            text-align: center;
            position: relative;
        }

        /* Floating Stickers Effect - Light Mode Tuned */
        .sticker {
            display: inline-block;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15)); 
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-size: 2.5rem;
            cursor: default;
            text-shadow: 
                2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff,
                1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
        }
        
        .sticker:hover {
            transform: scale(1.2) rotate(10deg);
        }

        .rot-pos { transform: rotate(8deg); }
        .rot-neg { transform: rotate(-8deg); }

        /* Buttons */
        .btn-primary {
            background: var(--gradient-main);
            border: none;
            color: white;
            padding: 14px 35px;
            border-radius: 50px; 
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
            background: var(--gradient-main);
        }
        .btn-outline-light {
            border-radius: 50px;
            padding: 8px 24px;
            border: 2px solid var(--text-muted);
            color: var(--text-muted);
            font-weight: 600;
        }
        .btn-outline-light:hover {
            background-color: var(--text-main);
            color: white;
            border-color: var(--text-main);
        }

        /* Modern Cards - Light Mode */
        .service-card {
            background-color: var(--bg-card);
            border: var(--glass-border);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-primary);
            box-shadow: var(--shadow-hover);
        }

        .icon-box {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        /* Tech Stack Cards */
        .tech-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-card);
        }
        .tech-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-secondary);
            box-shadow: var(--shadow-hover);
        }
        .tech-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Team Avatars */
        .avatar-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #f8fafc;
            border: 3px solid var(--accent-pop);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-card);
        }

        /* Pricing Cards */
        .pricing-card {
            background-color: var(--bg-card);
            border: var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: 0.3s;
            box-shadow: var(--shadow-card);
            height: 100%;
        }
        .pricing-card:hover {
            border-color: var(--accent-secondary);
            transform: scale(1.02);
        }
        .pricing-highlight {
            border: 2px solid var(--accent-primary);
            background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
            box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
            position: relative;
        }
        .price-tag {
            font-size: 1.7rem;
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
            color: var(--text-main);
        }
        .price-tag-small {
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
            color: var(--text-main);
        }

        /* Utility */
        .section-padding { padding: 100px 0; }
        .hidden-section { display: none; }
        .text-muted { color: var(--text-muted) !important; }
        .bg-card-alt { background-color: #f8fafc !important; } 
        
        /* Forms */
        .form-control, .form-select {
            background-color: var(--bg-input);
            border: 1px solid #e2e8f0;
            color: var(--text-main);
            padding: 18px;
            border-radius: 16px;
        }
        .form-control:focus, .form-select:focus {
            background-color: #ffffff;
            border-color: var(--accent-primary);
            color: var(--text-main);
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
        }
        ::placeholder { color: #94a3b8 !important; opacity: 1; }

        /* Tables */
        .table { --bs-table-bg: transparent; --bs-table-color: var(--text-main); border-color: #e2e8f0; }
        .table th { color: var(--accent-secondary); font-family: 'Space Grotesk'; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

        /* Footer */
        footer {
            border-top: var(--glass-border);
            background-color: #fff;
            padding: 60px 0;
            color: var(--text-muted);
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #f1f5f9;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text-main);
            margin: 0 10px;
            transition: all 0.3s;
            text-decoration: none;
        }
        .social-link:hover {
            background: var(--gradient-main);
            transform: translateY(-5px);
            color: white;
        }

        /* Detail Page Headers */
        .page-header {
            padding: 80px 0 40px;
            border-bottom: var(--glass-border);
            margin-bottom: 40px;
        }

        /* Tag Pill */
        .tag-pill {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--text-muted);
            display: inline-block;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* Gif/Video Style */
        .gif {
            width: 100%;
            height: 250px;          /* Fixed display height for consistency */
            object-fit: contain;    /* Fit inside box without cropping */
            background-color: #f8fafc; /* Nice light background behind smaller GIFs */
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 8px;           /* Gives breathing room for odd-shaped gifs */
        }




