
        /* Previous styles remain unchanged */
        :root {
            --white: #ffffff;
            --dark: #1a1a1a;
            --primary: #e09616;
            --accent: #18064b;
            --surface: #f5f5f7;
            --cursor-size: 32px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none !important;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--white);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: var(--cursor-size);
            height: var(--cursor-size);
            border: 2px solid var(--primary);
            border-radius: 50%;
            pointer-events: none;
            mix-blend-mode: difference;
            transition: 
                transform 0.3s ease,
                width 0.3s ease,
                height 0.3s ease;
            z-index: 9999;
        }

        .cursor-follower {
            position: fixed;
            width: calc(var(--cursor-size) * 0.4);
            height: calc(var(--cursor-size) * 0.4);
            background: var(--primary);
            border-radius: 50%;
            pointer-events: none;
            transition: all 0.1s ease-out;
            z-index: 9998;
        }

        .cursor.active {
            transform: scale(1.5);
            background: rgba(224, 150, 22, 0.2);
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 8%;
            background: linear-gradient(45deg, #0b0223, #18064b);
            position: relative;
            overflow: hidden;
        }

        /* Feature Sections */
        .feature-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 10rem 0;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-block.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-image {
            border-radius: 30px;
            overflow: hidden;
            transform: rotate(-2deg);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .feature-image:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .feature-content {
            padding: 2rem;
        }

        .feature-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.05;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, var(--dark), #2d2d2d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: #ffffff26;
            border-radius: 30px;
            padding: 2rem;
            box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature-card p {
            font-size: 1rem;
            color: #666;
        }

        .bg-blobs {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .bg-blobs div {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.8;
            animation: float 10s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Alternate Layout */
        .alternate .feature-block {
            direction: rtl;
        }

        @media (max-width: 768px) {
            .feature-block {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin: 5rem 0;
            }
            
            .feature-title {
                font-size: 2.5rem;
            }
            
            .alternate .feature-block {
                direction: ltr;
            }
        }

        /* New Styles for All Features Section */
        .all-features-section {
            padding: 8rem 0;

            text-align: center;
        }

        .all-features-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 4rem;
            background: linear-gradient(45deg, var(--dark), #2d2d2d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .all-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 0 8%;
        }

        .all-features-card {
            background: #ffffff14fff;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .all-features-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .all-features-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .all-features-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .all-features-card p {
            font-size: 1rem;
            color: #666;
        }

        /* Performance and Security Feature Card */
        .performance-security-card {
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: var(--white);
            border-radius: 20px;
            padding: 3rem;
            margin: 4rem auto;
            max-width: 800px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .performance-security-card h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .performance-security-card p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

   /* Container for the images */
.image-container {
    position: relative;
    display: inline-block; /* Ensure the container wraps around the images */
    overflow: visible; /* Allow the second image to overflow */
    min-height: 100vh;
    height: 100%;
    background-color: transparent;
}

/* Base image (first image) */
.base-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Ensure the base image takes full width */
}

/* Floating image (second image) */
.floating-image {
    position: absolute;
    top: 30%; /* Adjust to position vertically */
    right: 2%; /* Adjust to position horizontally (half outside) */
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 70%; /* Adjust size of the floating image */
    z-index: 1; /* Ensure it appears above the base image */
}

/* Hover effects */
.base-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.floating-image:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}


