* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Arial', sans-serif;
        }

        /* === כללי === */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px; /* Adjust based on header height */
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        section {
            padding: 80px 5%;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(27, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(27, 255, 255, 0.4);
        }

        /* === טיפוגרפיה === */
        h1, h2, h3, h4, h5 {
            margin-bottom: 0.8em;
            font-weight: 700;
            line-height: 1.3;
        }

        h1 {
            font-size: 3.2rem;
            background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
        }

        h2 {
            font-size: 2.4rem;
            color: #2E3192;
        }

        h3 {
            font-size: 1.8rem;
            color: #2E3192;
        }

        h4 {
            font-size: 1.3rem;
            color: #2E3192;
        }

        p {
            margin-bottom: 20px;
            font-size: 18px;
        }

        /* === Header === */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 8px 5%;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo {
            width: 90px;
            display: flex;
            align-items: center;
        }

        .logo img {
            width: 100%;
            height: auto;

        }

        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        nav li {
            margin-right: 20px;
        }

        nav a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #2E3192;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }

        /* === סקשן גיבור === */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(46, 49, 146, 0.03) 0%, rgba(27, 255, 255, 0.03) 100%);
            display: flex;
            align-items: center;
            padding-top: 100px;
            overflow: hidden;
        }

        .hero-content {
            width: 50%;
            padding-left: 5%;
        }

        .hero-image {
            width: 50%;
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            animation: float 4s ease-in-out infinite;
            background-color: rgba(0, 0, 0, 0);
        }

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

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-badge {
            display: inline-block;
            background-color: rgba(27, 255, 255, 0.1);
            color: #2E3192;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 25px;
        }

        /* === סקשן על השירות === */
        .about {
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
             background-color: #f9f9f9;
             border-radius: 12px;
             padding: 30px;
             text-align: center;
             box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease; 
        }

        .service-card:hover {
             transform: translateY(-10px);
             box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: #2E3192;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        

        /* === סקשן למה דווקא אנחנו === */
        .why-us {
            background: linear-gradient(135deg, rgba(46, 49, 146, 0.05) 0%, rgba(27, 255, 255, 0.05) 100%);
            position: relative;
            overflow: hidden;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            align-items: center;
        }

        .why-us-content {
            position: relative;
            z-index: 1;
        }

        .feature-list {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 20px;
            flex-shrink: 0;
            font-size: 24px;
            color: white;
        }

        .feature-text h4 {
            margin-bottom: 8px;
        }

        .why-us-image {
            position: relative;
            text-align: center;
        }

        .why-us-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .shape-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .shape-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }

        .shape-divider .shape-fill {
            fill: #FFFFFF;
        }

        /* === אנימציה מסתובבת === */
        .rotating-circle {
            position: absolute;
            width: 600px;
            height: 600px;
            border: 2px dashed rgba(27, 255, 255, 0.2);
            border-radius: 50%;
            top: -100px;
            right: -200px;
            animation: rotate 60s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* === סקשן למי מתאים === */
        .who-for {
            background-color: #fff;
            padding: 100px 5%;
        }

        .comparison-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 50px;
        }

        .comparison-box {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            padding: 40px;
            transition: transform 0.3s ease;
        }

        .comparison-box:hover {
            transform: translateY(-5px);
        }

        .box-title {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .box-title i {
            font-size: 30px;
            margin-left: 15px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .suitable i {
            background-color: rgba(46, 49, 146, 0.1);
            color: #2E3192;
        }

        .not-suitable i {
            background-color: rgba(255, 77, 77, 0.1);
            color: #FF4D4D;
        }

        .box-title h3 {
            margin-bottom: 0;
        }

        .comparison-list {
            list-style: none;
        }

        .comparison-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .comparison-list li:before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-left: 10px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            flex-shrink: 0;
        }

        .suitable .comparison-list li:before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232E3192' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        }

        .not-suitable .comparison-list li:before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FF4D4D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
        }

        /* === סקשן אנימציה === */
        .animation-section {
            background: linear-gradient(135deg, rgba(46, 49, 146, 0.03) 0%, rgba(27, 255, 255, 0.03) 100%);
            padding: 80px 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .animation-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .bubble {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            z-index: -1;
        }

        .bubble-1 {
            width: 300px;
            height: 300px;
            background-color: #2E3192;
            top: -100px;
            left: -150px;
            animation: float-bubble 12s ease-in-out infinite;
        }

        .bubble-2 {
            width: 200px;
            height: 200px;
            background-color: #1BFFFF;
            bottom: -80px;
            right: -100px;
            animation: float-bubble 10s ease-in-out infinite 1s;
        }

        @keyframes float-bubble {
            0% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(20px, -30px);
            }
            100% {
                transform: translate(0, 0);
            }
        }

        .animation-wrapper {
            width: 100%;
            height: 400px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .animation-image {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        /* === סקשן מקרי הצלחה === */
        .success-cases {
            background-color: #fff;
            padding: 100px 5%;
        }

        .success-slider {
            margin-top: 50px;
            position: relative;
        }

        .testimonial-card {
            background-color: #f9f9f9;
            border-radius: 15px;
            padding: 40px;
            margin: 20px;
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .quote-mark {
            font-size: 70px;
            color: rgba(46, 49, 146, 0.1);
            position: absolute;
            top: 20px;
            right: 30px;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            padding-top: 30px;
            padding-right: 20px;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-details {
            padding-right: 15px;
        }

        .client-details h4 {
            margin: 0;
            font-size: 18px;
        }

        .client-details p {
            margin: 5px 0 0;
            color: #777;
            font-size: 16px;
        }

        /* === סקשן צור קשר === */
        .contact {
            background: linear-gradient(135deg, rgba(46, 49, 146, 0.95) 0%, rgba(27, 255, 255, 0.95) 100%);
            color: white;
            padding: 100px 5%;
            position: relative;
            overflow: hidden;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .contact-text h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 25px;
        }

        .contact-text p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .contact-form {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .form-title {
            color: #2E3192;
            margin-bottom: 30px;
            font-size: 1.8rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #2E3192;
            box-shadow: 0 0 0 3px rgba(46, 49, 146, 0.2);
            outline: none;
        }

        .submit-btn {
            background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 15px 25px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* === FAQ Section === */
        .faq-section {
            background-color: #fff;
            padding: 100px 5%;
            position: relative;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #f9f9f9;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            color: #2E3192;
            transition: all 0.3s ease;
        }

        .faq-question:after {
            content: '+';
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question:after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 1000px;
            opacity: 1;
        }

        @media (max-width: 768px) {
            .faq-question {
                padding: 20px;
                font-size: 16px;
            }

            .faq-answer {
                padding: 0 20px;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 20px;
            }
        }

        /* === פוטר === */
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 60px 5% 40px;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo img {
            width: 150px;
            margin-bottom: 20px;
            border-radius: 70px;
        }

        .footer-about p {
            color: #aaa;
            line-height: 1.6;
        }

        .footer-links h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

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

        .footer-links a:hover {
            color: #1BFFFF;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background-color: #1BFFFF;
            transform: translateY(-3px);
        }

        .social-icon i {
            font-size: 20px;
        }

        .built-by {
            text-align: center;
            margin-top: 15px;
            font-family: 'Poppins', sans-serif;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 20px 0;
        }

        .built-by span {
            color: #1BFFFF;
            font-size: 16px;
            text-shadow: 0 0 10px rgba(27, 255, 255, 0.3);
            animation: glow-text 2s ease-in-out infinite alternate;
        }

        .flowless-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #1BFFFF;
            font-weight: 600;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 8px 20px;
            position: relative;
            text-shadow: 0 0 10px rgba(27, 255, 255, 0.5);
            animation: glow 2s ease-in-out infinite alternate;
            background: linear-gradient(135deg, rgba(46, 49, 146, 0.1) 0%, rgba(27, 255, 255, 0.1) 100%);
            border-radius: 30px;
            border: 1px solid rgba(27, 255, 255, 0.2);
        }

        .flowless-logo::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 30px;
            background: linear-gradient(135deg, rgba(46, 49, 146, 0.2) 0%, rgba(27, 255, 255, 0.2) 100%);
            filter: blur(10px);
            z-index: -1;
            animation: pulse 2s ease-in-out infinite alternate;
        }

        @keyframes glow-text {
            from {
                text-shadow: 0 0 5px rgba(27, 255, 255, 0.3),
                           0 0 10px rgba(27, 255, 255, 0.2);
            }
            to {
                text-shadow: 0 0 10px rgba(27, 255, 255, 0.5),
                           0 0 20px rgba(27, 255, 255, 0.3),
                           0 0 30px rgba(27, 255, 255, 0.2);
            }
        }

        @keyframes pulse {
            from {
                transform: scale(1);
                opacity: 0.5;
            }
            to {
                transform: scale(1.05);
                opacity: 0.8;
            }
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #1BFFFF;
            font-size: 14px;
            text-shadow: 0 0 10px rgba(27, 255, 255, 0.3);
            animation: glow-text 2s ease-in-out infinite alternate;
            margin-bottom: 20px;
        }

        /* === תגובתיות === */
        @media (max-width: 992px) {
            .hero-content, .hero-image {
                width: 100%;
                text-align: center;
                padding: 0 20px;
            }

            .hero {
                flex-direction: column;
            }

            .hero-image {
                margin-top: 40px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-us-grid, .contact-content {
                grid-template-columns: 1fr;
            }

            .why-us-image {
                order: -1;
            }

            .section-title {
                text-align: center !important;
            }

            .rotating-circle {
                display: none;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 6px 5%;
            }

            .logo {
                width: 70px;
            }

            .mobile-menu {
                display: block;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: white;
                padding: 80px 20px 20px;
                transition: 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                align-items: flex-start;
            }

            nav li {
                margin: 15px 0;
                width: 100%;
            }

            nav a {
                display: block;
                padding: 10px 0;
                font-size: 18px;
            }

            .mobile-menu {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 30px;
                height: 30px;
            }

            .mobile-menu span {
                display: block;
                width: 25px;
                height: 3px;
                background: #2E3192;
                position: relative;
                transition: 0.3s;
            }

            .mobile-menu span:before,
            .mobile-menu span:after {
                content: '';
                position: absolute;
                width: 25px;
                height: 3px;
                background: #2E3192;
                transition: 0.3s;
            }

            .mobile-menu span:before {
                top: -8px;
            }

            .mobile-menu span:after {
                bottom: -8px;
            }

            .mobile-menu.active span {
                background: transparent;
            }

            .mobile-menu.active span:before {
                transform: rotate(45deg);
                top: 0;
            }

            .mobile-menu.active span:after {
                transform: rotate(-45deg);
                bottom: 0;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

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

            .service-card {
                padding: 25px;
            }
            .service-card:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            }

            .service-icon {
                font-size: 50px;
                margin-bottom: 25px;
            }

            .hero-image img {
                width: 100%;
                max-width: none;
                margin: 0;
                transform: scale(1.2);
            }

            .why-us-image img {
                width: 100%;
                max-width: none;
                margin: 0;
                transform: scale(1.2);
            }

            .animation-wrapper {
                height: auto;
                margin: 0;
                width: 100%;
                padding: 40px 0;
                background: linear-gradient(135deg, rgba(46, 49, 146, 0.03) 0%, rgba(27, 255, 255, 0.03) 100%);
                border-radius: 20px;
                overflow: hidden;
            }

            .animation-image {
                max-width: 140%;
                margin: 0 -20%;
                height: auto;
            }

            .animation-section {
                background: white;
            }

            .bubble-1 {
                width: 300px;
                height: 300px;
                opacity: 0.15;
            }

            .bubble-2 {
                width: 250px;
                height: 250px;
                opacity: 0.15;
            }

            .services-grid {
                padding: 0 20px;
            }

            .rotating-circle {
                width: 400px;
                height: 400px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .testimonial-card {
                padding: 30px;
            }

            .quote-mark {
                font-size: 60px;
                top: 15px;
                right: 20px;
            }

            .testimonial-text {
                padding-top: 35px;
                padding-right: 15px;
                font-size: 16px;
            }

            .comparison-box {
                padding: 30px;
            }

            .box-title i {
                font-size: 35px;
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .hero-image img {
                width: 120%;
                margin: 0 -10%;
                transform: scale(1.1);
                background-color: rgba(0, 0, 0, 0);
            }

            .why-us-image img {
                width: 120%;
                margin: 0 -10%;
                transform: scale(1.1);
            }

            .animation-image {
                max-width: 160%;
                margin: 0 -30%;
            }

            .bubble-1 {
                width: 250px;
                height: 250px;
            }

            .bubble-2 {
                width: 200px;
                height: 200px;
            }

            .service-card {
                transform: scale(1);
                margin: 15px 0;
            }
        }

        /* Smooth Scroll Behavior */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 60px;
        }

        @media (max-width: 768px) {
            html {
                scroll-padding-top: 45px;
            }
        }

        /* Custom Smooth Scroll */
        .smooth-scroll {
            scroll-behavior: smooth;
            transition: all 0.5s ease-in-out;
        }

        /* Update all anchor links to use smooth scroll */
        a[href^="#"] {
            scroll-behavior: smooth;
            transition: all 0.3s ease;
        }

        /* Add hover effect to navigation links */
        nav a {
            position: relative;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* === אנימציית רקטות === */
        .rocket-animation-section {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        .rocket {
            position: absolute;
            width: 60px;
            height: 120px;
            opacity: 1;
        }

        .rocket-body {
            width: 100%;
            height: 100%;
            position: relative;
            background: none;
        }

        .rocket-body::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%232E3192' d='M505.12019,19.09375c-1.18945-5.53125-6.65819-11-12.207-12.1875C460.716,0,435.507,0,410.40747,0,307.17523,0,245.26909,55.20312,199.05238,128H94.83772c-16.34763.01562-35.55658,11.875-42.88664,26.48438L2.51562,253.29688A28.4,28.4,0,0,0,0,264a24.00867,24.00867,0,0,0,24.00582,24H127.81618l-22.47457,22.46875c-11.36521,11.36133-12.99607,32.25781,0,45.25L156.24582,406.625c11.15623,11.1875,32.15619,13.15625,45.27726,0l22.47457-22.46875V488a24.00867,24.00867,0,0,0,24.00581,24,28.55934,28.55934,0,0,0,10.707-2.51562l98.72834-49.39063c14.62888-7.29687,26.50776-26.5,26.50776-42.85937V312.79688c72.59753-46.3125,128.03493-108.40626,128.03493-211.09376C512.07526,76.5,512.07526,51.29688,505.12019,19.09375ZM384.04033,168A40,40,0,1,1,424.05,128,40.02322,40.02322,0,0,1,384.04033,168Z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 0 8px rgba(46, 49, 146, 0.4));
            background-color: transparent;
        }

        @media (max-width: 768px) {
            .rocket-body::before {
                filter: none;
                background-color: transparent;
            }
            
            .rocket {
                width: 40px;
                height: 80px;
                background-color: transparent;
            }
        }

        .rocket-1 {
            top: 20%;
            left: 0;
            transform: rotate(-35deg);
        }

        .rocket-2 {
            top: 60%;
            right: 0;
            transform: rotate(-90deg);
        }

        .automation-svg {
            width: 100%;
            height: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .pulse-circle {
            animation: pulse 2s infinite;
        }

        .pulse-circle:nth-child(2) {
            animation-delay: 1s;
        }

        .connection-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawLine 2s forwards;
        }

        .node {
            animation: nodePulse 2s infinite;
        }

        .central-hub {
            animation: hubGlow 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.2;
            }
            100% {
                transform: scale(1);
                opacity: 0.1;
            }
        }

        @keyframes drawLine {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes nodePulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes hubGlow {
            0% {
                filter: drop-shadow(0 0 5px #2E3192);
            }
            50% {
                filter: drop-shadow(0 0 20px #1BFFFF);
            }
            100% {
                filter: drop-shadow(0 0 5px #2E3192);
            }
        }

        .automation-platforms {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 120px;
            padding: 80px;
            flex-wrap: wrap;
        }

        .platform-card {
            position: relative;
            width: 200px;
            height: 200px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .platform-card:hover {
            transform: translateY(-10px);
        }

        .platform-logo {
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(27, 255, 255, 0.3));
        }

        .platform-glow {
                display: none;
            }

        @media (max-width: 768px) {
            .platform-card {
                width: 150px;
                height: 150px;
            }

            .automation-platforms {
                gap: 60px;
                padding: 40px;
            }
        }

        .custom-logo {
            font-size: 32px;
            font-weight: bold;
            color: #2E3192;
            text-shadow: 0 0 10px rgba(27, 255, 255, 0.3);
        }

        .make-logo {
            background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .manychat-logo {
            background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .platform-logo {
            width: 70%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(27, 255, 255, 0.3));
        }

        @media (max-width: 768px) {
            .rocket-animation-section {
                display: block; /* Changed from 'none' to 'block' */
            }
            
            .rocket {
                width: 40px; /* Smaller size for mobile */
                height: 80px;
            }
            
            .rocket-1 {
                top: 10%; /* Adjusted position for mobile */
                left: 5%;
            }
            
            .rocket-2 {
                top: 40%; /* Adjusted position for mobile */
                right: 5%;
            }
        }

        .rocket-animation-section {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            transition: opacity 0.3s ease;
        }

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

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-30px);
            }
            100% {
                transform: translateY(0px);
            }
        }
