        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #3b82f6;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
            --gray-text: #64748b;
            --border-color: #e2e8f0;
        }

        body {
            font-family: 'Heebo', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            background-color: #ffffff;
        }

        /* Custom Bootstrap RTL adjustments */
        .navbar-brand {
            margin-left: 0;
            margin-right: 1rem;
        }

        /* Header Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        /* Hero Section */
        .hero {
            padding: 60px 0 0;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            height: 100%;
        }

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

        .feature-card h5 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-text);
        }

        .feature-card p {
            color: var(--gray-text);
            margin-bottom: 0;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background: white;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            border: 2px solid var(--border-color);
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.popular {
            border-color: var(--primary-color);
            background: linear-gradient(135deg, #131cd7cc 0%, #093a81cc 100%), url('../../images/blueBg.jpg') no-repeat center center;
			background-size: cover;
            color: white;
            transform: scale(1.05);
        }
		.pricing-card.popular .popular-badge,
.pricing-card.popular .plan-name,
.pricing-card.popular .employee-count,
.pricing-card.popular .price,
.pricing-card.popular .price-period,
.pricing-card.popular .pricing-features li,
{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}


        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--success-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .employee-count {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .pricing-card.popular .price {
            color: white;
        }

        .price-period {
            font-size: 1rem;
            opacity: 0.7;
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
            position: relative;
        }

        .pricing-features li:before {
            content: '✓';
            color: var(--success-color);
            font-weight: 700;
            position: absolute;
            left: 90%;
            margin-right: 0.5rem;
        }

        .pricing-card.popular .pricing-features li {
            border-bottom-color: rgba(255, 255, 255, 0.2);
        }

        .pricing-card.popular .pricing-features li:before {
            color: white;
        }

        .pricing-btn {
            width: 100%;
            padding: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #131cd7cc 0%, #093a81cc 100%), url('../../images/blueBg.jpg') no-repeat center center;
			background-size: cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background-color: #1e293b;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-section h6 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #94a3b8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .lead {
                font-size: 1.1rem;
            }
            
            .pricing-card.popular {
                transform: none;
                margin-bottom: 2rem;
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-5px);
            }
            
            .hero-buttons .btn {
                display: block;
                margin: 0.5rem 0;
                width: 100%;
            }
        }

        /* Animation Classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card, .pricing-card {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .feature-card.visible, .pricing-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

		        /* Right side - Banner */
.banner-section {
    flex: 1;
    background: url('../../images/blueBg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0px;
    color: white;
    position: relative;
    overflow: hidden;
}

.banner-section h2,
.banner-section p,
.banner-section li,
.banner-section .testimonial {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}


.banner-section-optional {
    flex: 1;
    background: linear-gradient(135deg, #131cd7cc 0%, #093a81cc 100%), url('../../images/blueBg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0px;
    color: white;
    position: relative;
    overflow: hidden;
}

        .banner-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s linear infinite;
        }
		
		.error-message {
			background-color: #ffe6e6;
			border: 1px solid #ff4d4d;
			padding: 10px;
			border-radius: 5px;
			color: #b30000;
			text-align: center;
			margin-bottom: 15px;
		}


        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }

        .banner-content {
            text-align: right;
            z-index: 2;
            position: relative;
        }

        .banner-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .banner-subtitle {
            font-size: 20px;
            margin-bottom: 32px;
            opacity: 0.9;
            line-height: 1.4;
        }

        .features-list {
            list-style: none;
            text-align: left;
            margin-bottom: 40px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            font-size: 16px;
        }

        .features-list li::before {
            content: '✓';
            display: inline-block;
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            text-align: center;
            line-height: 24px;
            margin-left: 16px;
            font-weight: bold;
        }

        .banner-image {
            width: 300px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 500;
        }

        .testimonial {
            margin-top: 40px;
            text-align: center;
            font-style: italic;
            opacity: 0.9;
        }

        .testimonial-author {
            margin-top: 12px;
            font-size: 14px;
            font-weight: 500;
        }
		
		/* עבור כרום, ספארי, אדג' */
		.no-arrows::-webkit-outer-spin-button,
		.no-arrows::-webkit-inner-spin-button {
		  -webkit-appearance: none;
		  margin: 0;
		}

		/* עבור פיירפוקס */
		.no-arrows {
		  -moz-appearance: textfield;
		}
		
		.password-wrapper {
		  position: relative;
		  display: flex;
		  align-items: center;
		}

		.password-wrapper .form-input {
		  width: 100%;
		  padding-left: 40px;
		  padding-right: 18px;
		  box-sizing: border-box;
		}

		.password-wrapper .toggle-password {
		  position: absolute;
		  left: 10px;
		  cursor: pointer;
		  color: #888;
		}
		
		       .verification-code {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .code-input {
            width: 50px;
            height: 60px;
            text-align: center;
			color: #0c19ff;
            font-size: 24px;
            font-weight: 600;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .code-input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
        }
        
        .verification-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
		
		.code-input {
		  direction: ltr;       /* הקלדה מימין לשמאל */
		  text-align: center;   /* למרכז את הספרה */
		  font-size: 1.5rem;
		  width: 2.5rem;
		  height: 3rem;
		  margin: 0 0.2rem;
		}
		.gmassage {
		font-size: 14px;
		text-align: center;
		color: green;	
		}
		
		.success-message {
			background-color: #d4edda;
			color: #155724;
			border: 1px solid #c3e6cb;
			padding: 12px 20px;
			border-radius: 8px;
			margin-bottom: 20px;
			font-size: 1rem;
			text-align: right;
			box-shadow: 0 2px 6px rgba(0,0,0,0.08);
		}
		



.banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../images/slider1.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;

}

.banner-content > * {
    position: relative;
    z-index: 1;
}






        /* Mobile responsive */
        @media (max-width: 768px) {
            .signup-container {
                flex-direction: column;
            }
            
            .hero {
				display: none;
			}
            
            .form-content {
                padding: 40px 24px 125px;
            }
            
            .form-header {
                padding: 16px 24px;
            }
            
            .form-title {
                font-size: 18px;
            }
			.form-subtitle {
				font-size: 14px;
			}
        }

        @media (max-width: 1024px) {
            .banner-title {
                font-size: 36px;
            }
            
            .banner-subtitle {
                font-size: 18px;
            }
        }

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

/* Contact Info Styles */
.contact-info {
    padding: 20px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-details h6 {
    margin: 0 0 5px 0;
    color: #333;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Form Styles */
.contact-form {
    padding: 20px 0;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control:focus, .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
    background: white;
}

.form-control::placeholder {
    color: #adb5bd;
    opacity: 1;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2em;
}

.form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.form-check-label {
    font-size: 14px;
    color: #666;
    margin-right: 8px;
}

/* Button Styles */
.btn {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 15px auto;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-container {
    animation: fadeInUp 0.6s ease-out;
}