  .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 60px 20px;
            position: relative;
        }

        .hero-content {
            max-width: 500px;
        }

        .how-it-works-btn {
            background: transparent;
            border: 2px solid #0d6efd;
            color: #0d6efd;
            padding: 12px 32px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 40px;
        }

        .how-it-works-btn:hover {
            background: #0d6efd;
            color: #fff;
            transform: translateY(-2px);
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #999;
        }

        h1 .highlight {
            color: #fff;
            font-weight: 400;
        }

        .feature-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-content h3 {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .feature-content p {
            color: #888;
            font-size: 0.95rem;
            margin: 0;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            flex-shrink: 0;
        }

        .icon-green {
            background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        }

        .icon-purple {
            background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
        }

        .icon-orange {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        }

        .icon-blue {
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
        }

        .connection-line {
            width: 2px;
            height: 40px;
            background: linear-gradient(180deg, rgba(6, 182, 212, 0.5) 0%, rgba(6, 182, 212, 0) 100%);
            margin: 0 auto;
            position: relative;
        }

        .connection-dot {
            width: 8px;
            height: 8px;
            background: #06b6d4;
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            animation: pulse 2s infinite;
        }

        .dot-top {
            top: 0;
        }

        .dot-bottom {
            bottom: 0;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: translateX(-50%) scale(1);
            }
            50% {
                opacity: 0.5;
                transform: translateX(-50%) scale(1.2);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            .feature-card {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .feature-icon {
                order: -1;
            }
        }
        
        
        
        
        
        
        
        
        
        
          .fishfi-ai-navbar {
            z-index: 1000;
            background: linear-gradient(180deg, #000000, transparent);
        }

        .fishfi-ai-logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #00ffcc;
            text-shadow: 0 0 20px #00ffcc;
        }

        .fishfi-ai-info-btn {
            background: transparent;
                border: 2px solid #2cb5d6;
    color: #97e9ff;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .fishfi-ai-info-btn:hover {
            background: #00ff8830;
            box-shadow: 0 0 20px #00ff8850;
        }

        .fishfi-ai-hero-section {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .fishfi-ai-hero-content h1 {
              font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.3;
    padding-top: 20px;
        }

        .fishfi-ai-hero-content h1 span {
            font-weight: 700;
            background: linear-gradient(45deg, #1ebae3, #71c9e0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .fishfi-ai-features-section {
            padding: 100px 20px;
            position: relative;
        }

        .fishfi-ai-feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .fishfi-ai-feature-large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .fishfi-ai-feature-card {
            background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            border: 1px solid #1a1a1a;
            transition: all 0.4s;
            min-height: 350px;
            display: flex;
            flex-direction: column;
        }

        .fishfi-ai-feature-card:hover {
            border-color: #00ffcc;
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 255, 204, 0.2);
        }

        .fishfi-ai-feature-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .fishfi-ai-feature-content {
            position: relative;
            z-index: 2;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
            margin-top: auto;
        }

        .fishfi-ai-feature-text-only {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 50px 30px;
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
        }

        .fishfi-ai-feature-label {
            font-size: 18px;
            color: #888;
            margin-bottom: 15px;
            font-weight: 300;
        }

        .fishfi-ai-feature-icon {
            font-size: 48px;
            color: #00ffcc;
            margin-bottom: 20px;
        }

        .fishfi-ai-feature-title {
            font-size: 26px;
            font-weight: 400;
            line-height: 1.4;
        }

        .fishfi-ai-glow {
            color: #00ffcc;
            text-shadow: 0 0 15px #00ffcc;
        }

        .fishfi-ai-floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .fishfi-ai-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #00ffcc;
            border-radius: 50%;
            animation: fishfi-ai-float 15s infinite;
            opacity: 0.3;
        }

        .fishfi-ai-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .fishfi-ai-particle:nth-child(2) { left: 30%; animation-delay: 3s; }
        .fishfi-ai-particle:nth-child(3) { left: 50%; animation-delay: 6s; }
        .fishfi-ai-particle:nth-child(4) { left: 70%; animation-delay: 9s; }
        .fishfi-ai-particle:nth-child(5) { left: 90%; animation-delay: 12s; }

        @keyframes fishfi-ai-float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-300px) translateX(50px);
            }
            50% {
                transform: translateY(-600px) translateX(-30px);
            }
            75% {
                transform: translateY(-900px) translateX(70px);
            }
        }

        @media (max-width: 992px) {
            .fishfi-ai-feature-grid {
                grid-template-columns: 1fr;
            }

            .fishfi-ai-feature-large {
                grid-column: span 1;
                grid-row: span 1;
            }

            .fishfi-ai-hero-content h1 {
                font-size: 36px;
            }

            .fishfi-ai-navbar {
                padding: 20px 20px;
            }
        }

        .fishfi-ai-scroll-indicator {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            animation: fishfi-ai-bounce 2s infinite;
        }

        .fishfi-ai-scroll-indicator::after {
            content: '↓';
            font-size: 32px;
            color: #00ffcc;
        }

        @keyframes fishfi-ai-bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(20px);
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        