
        :root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #FF2E2E;
            --light: #f8f9fa;
            --dark: #212529;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        .gradient-bg {
            background: #0dcaf0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }

        .nav-link {
            font-weight: 600;
            margin: 0 10px;
            position: relative;
            color: #555 !important;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        
        /* .nav-link:hover, .nav-link.active {
            color: var(--accent) !important;
        } */
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--gradient-accent);
            color: white !important;
            border-radius: 50px;
            padding: 10px 25px !important;
            margin-left: 15px;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 46, 46, 0.3);
        }
        
        .nav-cta::after {
            display: none;
        }
        .gif-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .hero-image {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        .hero-section {
            padding: 150px 0 100px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-gif {
            height: 354px;
            width: 100%;
        }
        
        .btn-primary-custom {
            background: var(--accent);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: white;
        }
        
        .btn-primary-custom:hover {
            background: #fff;
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-primary-custom-serv {
            background: var(--accent);
            border: none;
            padding: 6px 15px;
            border-radius: 50px;
            font-weight: 400;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom-serv:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .navbar {
            background: white !important;
            transition: none !important;
        }

        .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: rgb(252 1 1);
}

        .section-title {
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        .step-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .process-step:hover .step-image {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .omr-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }
        .process-step {
            position: relative;
            text-align: center;
            padding: 2.5rem 1.5rem;
            border-radius: 20px;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .process-step:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(106, 17, 203, 0.15);
        }
        
        .process-step:hover::before {
            opacity: 1;
        }
        
        .process-step:hover .step-number,
        .process-step:hover h4,
        .process-step:hover p {
            color: white;
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
            position: relative;
            z-index: 2;
        }
        
        .process-step h4 {
            font-weight: 600;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }
        
        .process-step p {
            color: #64748b;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }
        
        .step-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }
        
        .process-step:hover .step-image {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .process-connector {
            position: absolute;
            top: 35px;
            left: -15%;
            width: 130%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
            z-index: 0;
        }
        
        .process-connector::after {
            content: '';
            position: absolute;
            top: -4px;
            left: 50%;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            transform: translateX(-50%);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 46, 46, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 46, 46, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 46, 46, 0);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .process-connector {
                display: none;
            }
            
            .process-step {
                margin-bottom: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        /* Floating animation for visual interest */
        .floating {
            animation: floating 6s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
 /* OMR Feature Cards */
        .feature-card {
            background: #fff;
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            transform: scale(0);
            transition: all 0.5s ease;
            z-index: 0;
            border-radius: 50%;
        }

        .feature-card:hover::before {
            transform: scale(1);
        }

        .feature-card * {
            position: relative;
            z-index: 1;
        }

        .feature-card:hover {
            transform: translateY(-12px);
            color: #fff;
        }

        .feature-icon {
            font-size: 3.5rem;
            color: #4facfe;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2);
            color: #fff;
        }

        .feature-card h4 {
            font-weight: 600;
            margin-bottom: 1.2rem;
        }

        .feature-card p {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .feature-list {
            text-align: left;
            margin-top: 1.5rem;
        }

        .feature-list li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
        }

        .feature-list i {
            color: #4facfe;
            margin-right: 10px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .feature-card:hover .feature-list i {
            color: #fff;
        }

        /* OMR Process Section */
        .process-step {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }

        /* Demo Section */
        /* .demo-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            border-radius: 20px;
        } */

        .demo-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .demo-card:hover {
            transform: translateY(-10px);
        }

        .demo-card img {
            width: 100%;
            height: 187px;
            object-fit: cover;
        }

        .demo-card-content {
            padding: 1.5rem;
        }

        /* Step icon styling */
        .step-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
            transition: all 0.4s ease;
            display: inline-block;
        }
        
        .process-step:hover .step-icon {
            color: white;
            transform: scale(1.2);
        }

        /* Pricing Section */
        .pricing-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background: white;
            text-align: center;
            height: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .pricing-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 2rem;
        }

        .pricing-body {
            padding: 2rem;
        }

        .price {
            font-size: 1rem;
            font-weight: 100;
            margin: 0.5rem 0;
        }

        .price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        /* Footer */
        .footer {
            background: #1a1a2e;
            color: white;
            padding: 100px 0 40px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .footer h5 {
            margin-bottom: 25px;
            position: relative;
            font-weight: 800;
            font-size: 1.3rem;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .social-icons a:hover {
            background: white;
            color: black;
            transform: translateY(-5px);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .back-to-top.show {
            opacity: 1;
        }
        
        /* Animation classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }
        
        .fade-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .zoom-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s ease;
        }
        
        .zoom-in.animate {
            opacity: 1;
            transform: scale(1);
        }
        
        .stagger-item {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .stagger-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
        }
        /* Glassmorphic Modal Style */
.modern-modal {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  animation: modalFadeIn 0.4s ease;
}

/* Gradient Title */
.gradient-text {
  background: linear-gradient(90deg, #007bff, #00bcd4);
  -webkit-text-fill-color: transparent;
}

/* Inputs */
.modern-input {
  border-radius: 12px;
  border: 1px solid #dee2e6;
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.modern-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #007bff, #00bcd4);
  border: none;
  color: #fff;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Animation */
@keyframes modalFadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* Demo Section Styling */
.demo-section {
    margin: 2rem 0;
}

.demo-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.demo-card-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.demo-card-header h4 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.demo-gif-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.demo-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.demo-card:hover .demo-gif {
    transform: scale(1.05);
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-card:hover .demo-overlay {
    opacity: 1;
}

.btn-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2575fc;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: white;
    transform: scale(1.1);
    color: #6a11cb;
}

.demo-card-content {
    padding: 1.5rem;
}

.demo-card-content p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.demo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #f0f5ff;
    color: #2575fc;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.demo-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .btn-primary-custom {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
} */

/* .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
    color: white;
} */

/* .btn-outline-secondary {
    border: 1px solid #ddd;
    color: #666;
    transition: all 0.3s ease;
} */

/* .btn-outline-secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
} */

.cta-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    border: 1px solid rgba(37, 117, 252, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .demo-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .demo-actions a {
        width: 100%;
        text-align: center;
    }
    
    .demo-card-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}