    :root {
            --primary: #4F46E5; /* Indigo 600 */
            --primary-gradient: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
            --secondary: #10b981; /* Success Green */
            
            /* Backgrounds */
            --bg-body: #F3F4F6; /* Light Gray/Blueish Tint */
            --bg-card: #FFFFFF; /* Pure White */
            
            /* Text Colors */
            --text-main: #111827; /* Near Black */
            --text-muted: #6B7280; /* Gray 500 */
            
            /* Shapes */
            --radius-xl: 32px;
            --radius-lg: 24px;
            --shadow-card: 0 10px 40px -10px rgba(0,0,0,0.08);
            --shadow-hover: 0 20px 50px -12px rgba(79, 70, 229, 0.25);
            
            --font-main: 'Plus Jakarta Sans', sans-serif;
        }

        /* --- GLOBAL RESET --- */
        html { scroll-behavior: smooth; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: var(--font-main);
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- DECORATIVE BLOBS (The "Heavenly" Glow) --- */
        .blob-bg {
            position: fixed;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: -1;
            pointer-events: none;
        }
        .blob-1 { top: -200px; left: -200px; background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(255,255,255,0) 70%); }
        .blob-2 { top: 40%; right: -300px; background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(255,255,255,0) 70%); }

        /* --- UTILITIES --- */
        .container { 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 24px; 
        }
        .text-center { text-align: center; }
        .section-padding { padding: 120px 0; }
        
        .text-gradient {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 42px;
            border-radius: 100px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: -0.01em;
        }
        .btn-primary {
            background: var(--text-main); /* Black Button */
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .btn-primary:hover { 
            transform: translateY(-4px); 
            box-shadow: 0 12px 24px rgba(0,0,0,0.2);
            background: #000;
        }
        .btn-gradient {
            background: var(--primary-gradient);
            color: white;
            box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
        }
        .btn-gradient:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 35px -5px rgba(79, 70, 229, 0.5);
        }

        /* --- NAVIGATION --- */
        nav {
            padding: 24px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .nav-scrolled {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 16px 0;
        }
        .nav-flex { display: flex; justify-content: space-between; align-items: center; }
        .logo { 
            font-size: 1.6rem; 
            font-weight: 800; 
            letter-spacing: -1px; 
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span { color: var(--primary); }
        .nav-links { display: flex; gap: 40px; }
        .nav-links a { 
            color: var(--text-muted); 
            text-decoration: none; 
            font-weight: 600; 
            font-size: 0.95rem; 
            transition: color 0.3s;
        }
        .nav-links a:hover { color: var(--primary); }
    
       /* --- video --- */
  /* Base structural styling */
  .custom-video-section {
    width: 65%;
    max-width: 1200px; /* Prevents it from getting absurdly huge on ultrawide monitors */
    margin: 40px auto;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  }

  .custom-video-container {
    position: relative;
    width: 100%;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background: #000;
    aspect-ratio: 16/9;
  }

  .custom-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
  }

  .video-click-catcher {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    cursor: pointer;
  }

  /* Controls Overlay Styling */
  .video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    /* Opacity set to 1 for testing; handle fade-in/out via JS later */
    opacity: 1; 
    transition: opacity 0.25s ease;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 24px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
  }

  .play-pause-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1d1d1f;
    transition: transform 0.15s, background 0.15s;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .play-pause-btn:hover {
    transform: scale(1.05);
  }

  .time-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: height 0.1s;
  }

  .time-bar:hover {
    height: 8px; /* Slight visual feedback on hover */
  }

  .time-fill {
    width: 30%; /* Set to 30% to demonstrate fill */
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }

  .time-display {
    color: white;
    font-size: 15px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    flex-shrink: 0;
    min-width: 85px;
    text-align: right;
  }

  /* ------------------------------------------- */
  /* RESPONSIVE MEDIA QUERIES FOR MOBILE DEVICES */
  /* ------------------------------------------- */
  @media (max-width: 768px) {
    .custom-video-section {
      width: 95%; /* Take up a bit more width on small screens */
      margin: 20px auto;
    }
    
    .custom-video-container {
      border-radius: 16px; /* A 36px radius looks too extreme on small heights */
    }

    .video-controls {
      bottom: 12px;
      left: 12px;
      right: 12px;
      padding: 8px 16px; /* Shrink padding so it doesn't take up the whole screen */
      gap: 12px;
    }

    .play-pause-btn {
      width: 36px; /* Smaller button */
      height: 36px;
      font-size: 16px;
    }

    .time-display {
      font-size: 13px; /* Smaller font */
      min-width: 70px;
    }
  }
  
  #netflixVideo:hover + #videoControls,
      #videoControls:hover,
      #videoClickCatcher:hover + #videoControls,
      .wrapper-hover #videoControls {
        opacity: 1 !important;
      }

        /* --- CARDS --- */
        .bento-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 48px;
            height: 100%;
            border: 1px solid rgba(255,255,255,0.5); /* Subtle border for glass feel */
            box-shadow: var(--shadow-card);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .bento-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        /* --- HERO --- */
        .hero {
            padding-top: 200px;
            padding-bottom: 140px;
            position: relative;
        }
        .hero h1 {
            font-size: clamp(3rem, 6vw, 5.5rem);
            line-height: 1.05;
            margin-bottom: 32px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.03em;
        }
        .hero p {
            font-size: 1.35rem;
            color: var(--text-muted);
            margin-bottom: 48px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        /* --- STATS BAR --- */
        .stats-container {
            background: var(--bg-card);
            margin: -60px auto 0;
            max-width: 1100px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-card);
            padding: 40px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            position: relative;
            z-index: 10;
        }
        .stat-item h3 { 
            font-size: 3rem; 
            font-weight: 800; 
            color: var(--text-main); 
            line-height: 1;
            margin-bottom: 8px;
        }
        .stat-item p { 
            color: var(--text-muted); 
            font-weight: 600; 
            text-transform: uppercase; 
            font-size: 0.85rem; 
            letter-spacing: 1px; 
        }

        /* --- PROCESS ICONS --- */
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-top: 80px;
        }
        /* Pyramid Fix: Ensures cards are flexible but don't stretch too wide */
        .process-steps .bento-card {
            flex: 1 1 300px;
            max-width: 400px;
            width: 100%;
        }
        
        .step-icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 24px;
            color: var(--primary);
        }

        /* --- TEAM AVATARS --- */
        .team-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-top: 80px;
        }
        .team-grid .bento-card {
            flex: 1 1 300px;
            max-width: 400px;
            width: 100%;
        }
        .team-avatar {
            width: 140px;
            height: 140px;
            border-radius: 40px; /* Squircle shape */
            object-fit: cover;
            margin: 0 auto 24px;
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
        }
        
        /* --- PORTFOLIO WRAPPERS --- */
        .portfolio-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
        }
        .portfolio-grid .bento-card {
            flex: 1 1 350px;
            max-width: 500px;
            width: 100%;
            padding: 12px; /* Minimal padding for video */
        }
        .video-wrapper iframe {
            border-radius: 20px;
            width: 100%;
            height: 100%;
            aspect-ratio: 16/9;
            display: block;
        }

        /* --- PRICING --- */
       .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 80px;
        }
        
        .pricing-card.popular {
            background: #111827; /* Dark card for contrast */
            color: white;
        }
        .pricing-card.popular h3, 
        .pricing-card.popular .price, 
        .pricing-card.popular p {
            color: white;
        }
        .pricing-card.popular .feature-list li {
            color: #D1D5DB;
        }
        .popular-badge {
            background: var(--primary-gradient);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 16px;
        }
        
        .price { font-size: 3.5rem; font-weight: 800; margin: 24px 0; letter-spacing: -2px; }
        .price span { font-size: 1.2rem; color: var(--text-muted); font-weight: 500; letter-spacing: normal; }
        
        .feature-list li {
            list-style: none;
            margin-bottom: 18px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            font-weight: 500;
        }
        .feature-list li::before {
            content: "✓";
            color: var(--primary);
            margin-right: 12px;
            font-weight: 800;
            font-size: 1.1rem;
        }
        
        .feature-list2 li {
            list-style: none;
            margin-bottom: 18px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            font-weight: 500;
        }
        .feature-list2 li:nth-child(8)::before {
            content: "✓";
            color: #6b7280;
            margin-right: 12px;
            font-weight: 800;
            font-size: 1.1rem;
        
        }
        .feature-list2 li::before {
            content: "✓";
            color: var(--primary);
            margin-right: 12px;
            font-weight: 800;
            font-size: 1.1rem;
        }
        
        .feature-list li:nth-child(5)::before ,
        .feature-list li:nth-child(6)::before ,
        .feature-list li:nth-child(7)::before {
            content: "×";
            color: red;
            margin-right: 12px;
            font-weight: 800;
            font-size: 1.1rem;
}
        /* Laptop and Desktop Screens */
@media (min-width: 1024px) {
  .pricing-grid {
    /* 3 equal columns side-by-side */
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}
        /* --- FOOTER --- */
        footer {
            margin-top: 120px;
            padding: 80px 0;
            background: white;
            border-top: 1px solid #E5E7EB;
        }
        /* --- VIDEO SLIDER --- */
    /* --- VIDEO SLIDER CSS --- */
    .tab-btn {
        transition: all 0.3s ease;
    }
    .tab-btn.active {
        background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    }
    
    /* Container for the slider */
    .video-slider-container {
        display: none; /* Hidden by default */
        overflow-x: auto; /* Allow horizontal scroll */
        scroll-behavior: smooth; /* Smooth scrolling */
        -ms-overflow-style: none;  /* Hide scrollbar IE and Edge */
        scrollbar-width: none;  /* Hide scrollbar Firefox */
        padding: 20px 0; /* Space for shadows to not get cut off */
    }
    
    /* Active state to show the slider */
    .video-slider-container.active {
        display: flex;
        gap: 24px;
    }
    
    /* Hide scrollbar Chrome/Safari/Opera */
    .video-slider-container::-webkit-scrollbar {
        display: none;
    }
    
    /* Individual Slide Items */
    .video-slide-item {
        flex: 0 0 85%; /* Mobile: Show 85% of slide to encourage swipe */
        scroll-snap-align: center; /* Snap to center */
    }
    
    /* The Path Logic */
    .step-container {
        position: relative;
        padding-bottom: 5rem;
    }

    /* Vertical Line Connectors */
    .step-path-left {
        border-left: 2px dashed #4F46E5;
        border-bottom: 2px dashed #4F46E5;
        border-bottom-left-radius: 3rem;
        margin-left: 50%;
        padding-left: 2rem;
    }

    .step-path-right {
        border-right: 2px dashed #4F46E5;
        border-bottom: 2px dashed #4F46E5;
        border-bottom-right-radius: 3rem;
        margin-right: 50%;
        padding-right: 2rem;
    }

    /* The Number Glow */
    .step-number {
        background: white;
        box-shadow: 0 0 0 8px #FBFBFE, 0 10px 30px rgba(79, 70, 229, 0.2);
    }
    .workflow-step, 
.step-path-left, 
.step-path-right {
    position: relative;
    z-index: 0; /* Keep the path at the base layer */
}

/* Target the div holding your actual text and numbers */
.workflow-content,
.workflow-step > div { 
    position: relative; 
    z-index: 10; /* Pull content above the border lines */
}

.step-number, 
[class*="w-20 h-20 glass"] {
    position: relative;
    z-index: 20; /* Highest layer */
    background-color: #FBFBFE !important; /* Matches your page background */
    /* This "masks" the line so it looks like it's passing UNDER the bubble */
}

/* ===== MOBILE NAVIGATION STYLES ===== */

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--primary);
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-sidebar.active {
    right: 0;
}

/* Sidebar Header */
.sidebar-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.08);
    border: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(79, 70, 229, 0.12);
    transform: rotate(90deg);
}

/* Sidebar Links */
.sidebar-links {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sidebar-link:hover {
    background: rgba(79, 70, 229, 0.05);
    transform: translateX(4px);
    color: var(--primary);
}

.sidebar-link:hover::before {
    transform: translateX(0);
}

.sidebar-link:hover svg {
    transform: translateX(4px);
}

.sidebar-link svg {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.sidebar-link:hover svg {
    color: var(--primary);
}

.sidebar-btn {
    margin: 24px;
    margin-top: 32px;
    padding: 16px 24px;
    text-align: center;
    background: var(--primary-gradient);
    color: white;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.sidebar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.4);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 24px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.sidebar-footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.5;
}

/* Desktop Button */
.desktop-btn {
    display: inline-flex;
}

/* Mobile Menu Animation States */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Prevent Body Scroll When Menu Open */
body.menu-open {
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links,
    .desktop-btn {
        display: none;
    }
    
    .nav-flex {
        justify-content: space-between;
    }
    
    /* Adjust hero padding for mobile */
    .hero {
        padding-top: 160px;
    }
}

@media (min-width: 769px) {
    .mobile-sidebar,
    .mobile-overlay,
    .mobile-menu-toggle {
        display: none !important;
    }
}
    /* Tablet Breakpoint */
    @media (min-width: 768px) {
        .video-slide-item { flex: 0 0 45%; } 
    }
    
    /* Desktop Breakpoint */
    @media (min-width: 1024px) {
        .video-slide-item { flex: 0 0 30%; }
    }

        
        /* Hides the Cloudinary/VideoJS right-click menu */
        .vjs-context-menu-ui { display: none !important; }
        .vjs-control-bar .cloudinary-logo { display: none !important; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .nav-links { display: none; }
    .stats-container { margin-top: 40px; padding: 24px; }
    .section-padding { padding: 80px 0; }
    
    /* Adjust mobile sidebar for smaller screens */
    .mobile-sidebar {
        width: 280px;
    }
    
    .sidebar-link {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .sidebar-btn {
        margin: 16px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .mobile-sidebar {
        width: 260px;
        max-width: 90%;
    }
    
    .sidebar-header {
        padding: 20px;
    }
    
    .sidebar-links {
        padding: 20px;
    }
}
