
body {font-family: "Noto Sans Hebrew", sans-serif; direction: rtl;}
ul {list-style-type: none; margin: 0; padding: 0;}
.py-100 {padding-top: 100px; padding-bottom: 100px;}
.pt-50 {padding-top: 50px;}
.pb-50 {padding-bottom: 50px;}
.pt-100 {padding-top: 100px;}
.my-80 {margin-top: 80px; margin-bottom: 80px}
.mt-80 {margin-top: 80px}
.text-dark {color: #000;}
.fs-20 {font-size: 20px;}
.fs-16 {font-size: 16px}
.menu-bg {background: #F5F3EF; border-radius: 50px;}
.nav-link {font-size: 20px; color: #000; font-weight: 400!important}
.nav-link:hover {opacity: 0.7}
h1 {font-size: 66px !important; line-height: 1.2}
h2 {font-size: 55px !important}
footer a, ul.menu li a {color: #fff; text-decoration: none; font-size: 16px; transition: all 0.3s}
footer a, ul.menu li a:hover {color: #B08D57}
ul.check li {
    position: relative;
    padding-right: 35px; /* Space for the icon on the right */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

ul.check li::before {
    content: "";
    position: absolute;
    right: 0; /* Align to the right for RTL */
    width: 20px;
    height: 20px;
    background-image: url('../assets/images/icons/check.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
}
hr {border-color: #777777}
/* General Input Styling */
.custom-input {
    height: 56px;
    background-color: #ffffff;
    border: none;
    padding: 0 15px;
}

/* Textarea Container Logic */
.textarea-container {
    position: relative;
    width: 100%;
}

.custom-textarea {
    min-height: 148px;
    background-color: #ffffff;
    border: none;
    padding: 15px;
    padding-bottom: 60px; /* Extra padding so text doesn't hide behind the button */
    resize: none;
}

/* Positioning the button inside the textarea */
.btn-submit {
    position: absolute;
    bottom: 15px;
    left: 15px; /* bottom-left corner */
    padding: 10px 30px;
    z-index: 5;
}
input {direction: rtl;}
/* RTL adjustment for focus states */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(176, 141, 87, 0.25); /* Primary color glow */
    border-color: #B08D57;
}
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(176, 141, 87, 0.25); /* Primary color glow */
    border-color: #B08D57 !important;
}

/* Force Alert Visibility */
.alert {
    position: relative;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    display: block !important; /* Ensure it's visible */
    opacity: 1 !important;
}

/* Explicit Success Colors */
.alert-success {
    color: #0f5132 !important;
    background-color: #d1e7dd !important;
    border-color: #badbcc !important;
}

/* Explicit Danger Colors */
.alert-danger {
    color: #842029 !important;
    background-color: #f8d7da !important;
    border-color: #f5c2c7 !important;
}

/* Ensure the text is readable on RTL */
.messgeHolder .alert {
    text-align: right;
    direction: rtl;
}

.alert-dismissible .btn-close {right: auto !important; left: 0;}

@media only screen and (max-width: 767px){
    h1 {font-size: 48px !important}
    h2 {font-size: 36px !important}

    .pt-100 {padding-top: 50px}
}