  /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        .animate-fade-in {
            animation: fadeIn 1s ease-out;
        }

        .animate-scale-in {
            animation: scaleIn 0.8s ease-out;
        }




        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: 0;            
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .btn-white {
            background: white;
            color: var(--primary);
        }

        .btn-white:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }

        /* Card Styles */
        .card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
            padding: 1.5rem;

        }

        .card:hover {
            box-shadow: 0 10px 25px 0 rgba(99, 102, 241, 0.15);
        }

        .card-header {
            display: block;
            align-items: center;
            justify-content: center;
        }


      /*  .card-content {
        } */

 

        .card-description {
            color: var(--muted-foreground);
            line-height: 1.7;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--gradient-hero);
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
        }

        .hero-logo {
            height: 3.5rem !important;
            width: auto;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
            margin-bottom: 1.5rem;
        }

        .hero-float-1 {
            position: absolute;
            top: 5rem;
            left: 5rem;
            width: 18rem;
            height: 18rem;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 50%;
            filter: blur(60px);
            animation: float 6s ease-in-out infinite;
        }

        .hero-float-2 {
            position: absolute;
            bottom: 5rem;
            right: 5rem;
            width: 24rem;
            height: 24rem;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 50%;
            filter: blur(60px);
            animation: float 6s ease-in-out infinite;
            animation-delay: 1s;
        }

        .hero-content {
            position: relative;
            text-align: center;
            padding: 6rem 0;
            z-index: 10;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .gradient-text {
            background: linear-gradient(135deg, #c084fc 0%, #93c5fd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            
           
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 3.75rem;
            }
            .hero-subtitle {
                font-size: 1.5rem;
            }
            .hero-logo {
                height: 6rem;
            }
        }

        /* Section Styles */
        .section {
            padding: 5rem 0;
        }

        .section-bg {
            background: rgba(248, 250, 252, 0.3);
        }

        .section-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
        }

        /* Grid Layouts */
        .grid {
            display: grid;
            gap: 2rem;
        }

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

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

        @media (min-width: 768px) {
            .grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }
            .grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .items-center {
            align-items: center;
        }

        /* Feature Icon */
        .feature-icon2 {
            width: 3rem;
            height: 3rem;
            background: var(--gradient-primary);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            
        }

        .feature-icon2 svg {
            width: 1.5rem;
            height: 1.5rem;
            color: white;
        }

        /* Image Styles */
        .rounded-image {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        }

        /* Text Center */
        .text-center {
            text-align: center;
        }

        .max-w-2xl {
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }

        /* Star Rating */
        .stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .star {
            width: 1.25rem;
            height: 1.25rem;
            fill: #facc15;
            color: #facc15;
        }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
            color: var(--muted-foreground);
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .badge svg {
            width: 1.25rem;
            height: 1.25rem;
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            padding: 5rem 0;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            overflow: hidden;
        }

        .cta-bg-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
        }

        .cta-content {
            position: relative;
            z-index: 10;
        }

        .cta-title {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1.5rem;
        }

        .cta-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }

        @media (min-width: 768px) {
            .cta-title {
                font-size: 2.5rem;
            }
        }

        /* Testimonial Author */
        .testimonial-author {
            font-weight: 600;
            color: var(--foreground);
        }

        .testimonial-role {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        /* Spacing utilities */
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-16 { margin-bottom: 4rem; }
        .mt-16 { margin-top: 4rem; }