 

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;  
    font-size: larger;
    font-weight: 700;
}

.form-group label {
    flex: 1; /* Makes labels take up equal space */
    margin-right: 10px; /* Adjust spacing between label and input */
}

.form-group input,
.form-group select,
.form-group textarea {
    flex: 2;  
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%; 
}

.form-group input[type="radio"],
.form-group input[type="checkbox"] {
    flex: 1; /* Adjust width for radio buttons and checkboxes */
}

#whatsapp-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    
    width:40px;
    height: 40px;
    
  }
  
  #whatsapp-popup:hover {
    transform: scale(1.1);
}

  /* Toast Container */
#toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: green;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#toast-loading {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#toast-loading.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}


/* Hide buttons on larger screens */
@media (min-width: 1024px) {
    #lang-ar-mobile, #lang-he-mobile {
        display: none !important;
    }
}

/* Show buttons on smaller screens */
@media (max-width: 1023px) {
    #lang-ar-mobile, #lang-he-mobile {
        display: block;
    }
}
 
/* Show buttons on smaller screens */
@media (max-width: 1023px) {
    .carousel-item {
        height: 100% !important;
    }
}


        /* Carousel Container */
        .carousel {
            position: relative;
            overflow: hidden;
        }

        /* Carousel Images */
        .carousel-item {
            display: none; /* Hide all slides initially */
         margin:10px auto;
        }

        .carousel-item.block {
            display: block; /* Show the active slide */
        }

        /* Carousel Controls */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            padding: 15px;
            color: black;
            border: none;
            cursor: pointer;
            z-index: 10;
        }

        .prev { left: 0; }
        .next { right: 0; }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 768px) {
            .carousel-control {
                padding: 10px; /* Smaller buttons on mobile */
            }
        }

        
            /* Responsive adjustments for smaller screens */
            @media (max-width: 768px) {
                #get-started-btn {
                    display: none;
                }
            }



        .zigzag {
            width: 20%;
            height: 10px;
            margin: 30px auto;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="0,10 5,0 10,10" fill="none" stroke="orange" stroke-width="2"/></svg>') repeat-x;
        }