/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
*/
.mobile-br{display:none}
.numbered-list {
  color: white;
  border-radius: 8px;
  max-width: 600px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 55px;
  position: relative;
	font-family: Roboto;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
	opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.list-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.list-item:last-child {
  margin-bottom: 0;
}

.number-image {
     width: 32px;
    height: 48px !important;
  object-fit: contain;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Vertical line between items */
.list-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 55px;
    bottom: -47px;
    width: 2px;
    background: rgb(255 255 255);
    z-index: 0;
}

.list-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  flex-grow: 1;
}
body {
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/wp-content/uploads/2026/01/sm-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
/*html {*/
/*	line-height: 1.15;*/
/*	-webkit-text-size-adjust: 100%;*/
/*	font-size:0.694vw;*/
/*	background-color:#fff;*/
/*}*/
/*@media only screen and (max-width: 767px) {*/
/*	html {*/
/*		font-size:2.667vw;*/
/*	}*/
/*}*/



/*@media only screen and (min-width: 1440px) {*/
/*	html {*/
/*		font-size:10px;*/
/*	}*/
/*}*/

.e-con-inner {  
	padding-right: 5rem !important;   
	padding-left: 5rem !important;
}
/*@media only screen and (max-width: 1080px) and (min-width: 768px) {*/
/*	html {*/
/*		font-size:0.8vw;*/
/*	}*/
/*	.e-con-inner {  */
/*	padding-right: 15px!important;   */
/*	padding-left: 15px !important;*/
/*}*/
/*}*/
/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {display: block;}
.fancy-title {
            color: #1a1a1a;
            display: inline-flex;
            align-items: center;
            position: relative;
        }

        /* Left part of text */
        .fancy-title .text-left {
            position: relative;
            z-index: 1;
            display: inline-block;
            animation: moveLeft 3s ease-in-out infinite;
        }

        /* Right part of text */
        .fancy-title .text-right {
            position: relative;
            z-index: 1;
            display: inline-block;
            animation: moveRight 3s ease-in-out infinite;
        }

        /* Image in the middle */
        .fancy-title img {
            width: auto;
          	 min-height: 60px;
            object-fit: contain;
            margin: 0 0;
            position: relative;
            z-index: 2;
            animation: imagePopInOut 3s ease-in-out infinite;
        }

        /* Text moves apart when image appears */
        @keyframes moveLeft {

            0%,
            100% {
                transform: translateX(0);
            }

            10% {
                transform: translateX(-1px);
            }

            50% {
                transform: translateX(-1px);
            }

            60% {
                transform: translateX(0);
            }
        }

        @keyframes moveRight {

            0%,
            100% {
                transform: translateX(0);
            }

            10% {
                transform: translateX(1px);
            }

            50% {
                transform: translateX(1px);
            }

            60% {
                transform: translateX(0);
            }
        }

        /* Image appears and disappears */
        @keyframes imagePopInOut {
            0% {
                opacity: 0;
                transform: scale(0);
                width: 0;
                margin: 0;
            }

            10% {
                opacity: 1;
                transform: scale(1);
                width: 56px;
                margin: 0 -0.2rem;
            }

            15% {
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1);
                width: 56px;
                margin: 0 -0.2rem;
            }

            60% {
                opacity: 0;
                transform: scale(0);
                width: 0;
                margin: 0;
            }

            100% {
                opacity: 0;
                transform: scale(0);
                width: 0;
                margin: 0;
            }
        }

       .fancy-title2 {
            color: #1a1a1a;
            display: inline-flex;
            align-items: center;
            position: relative;
        }

        /* Left part of text */
        .fancy-title2 .text-left {
            position: relative;
            z-index: 1;
            display: inline-block;
            animation: moveLeft2 5s ease-in-out infinite;
        }

        /* Right part of text */
        .fancy-title2 .text-right {
            position: relative;
            z-index: 1;
            display: inline-block;
            animation: moveRight2 5s ease-in-out infinite;
        }

        /* Image in the middle */
        .fancy-title2 img {
            width: 40px;
            min-height: 50px;
            object-fit: contain;
            margin: 0 0;
            position: relative;
            z-index: 2;
            animation: imagePopInOut2 5s ease-in-out infinite;
        }

        /* Text moves apart when image appears */
        @keyframes moveLeft2 {

            0%,
            100% {
                transform: translateX(0);
            }

            10% {
                transform: translateX(-1px);
            }

            50% {
                transform: translateX(-1px);
            }

            60% {
                transform: translateX(0);
            }
        }

        @keyframes moveRight2 {

            0%,
            100% {
                transform: translateX(0);
            }

            10% {
                transform: translateX(1px);
            }

            50% {
                transform: translateX(1px);
            }

            60% {
                transform: translateX(0);
            }
        }

        /* Image appears and disappears */
        @keyframes imagePopInOut2 {
            0% {
                opacity: 0;
                transform: scale(0);
                width: 0;
                margin: 0;
            }

            10% {
                opacity: 1;
                transform: scale(1);
                width: 40px;
                margin: 0 -0.2rem;
            }

            15% {
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1);
               width: 40px;
                margin: 0 -0.2rem;
            }

            60% {
                opacity: 0;
                transform: scale(0);
                width: 0;
                margin: 0;
            }

            100% {
                opacity: 0;
                transform: scale(0);
                width: 0;
                margin: 0;
            }
        }

.elementor-field-type-acceptance .elementor-field-subgroup span {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* space between checkbox and text */
  cursor: pointer;
  user-select: none; /* prevent text selection on double-click */
}

input[type="checkbox"] {
  /* Hide the default checkbox */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #666; /* matches your Figma border */
  background-color: white;
  position: relative;
  cursor: pointer;
  flex-shrink: 0; /* prevent shrinking */

  /* Optional: rounded corners? */
  /* border-radius: 2px; */
}

/* Checked state */
input[type="checkbox"]:checked {
  background-color: #4CAF50; /* green fill when checked */
  border-color: #4CAF50;
}

/* Add checkmark using pseudo-element */
input[type="checkbox"]:checked::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
@media (max-width: 767px) {
  .e-con-inner {
    padding-right: 1.2rem !important;
    padding-left: 1.2rem !important;
  }
}
/* Existing styles... */

/* Mobile-specific rules */
@media (max-width: 768px) {
    .fancy-title img {
        /* Ensure consistent sizing during animation */
        width: 0; /* default state */
    }
	.mobile-br{display:block}
    @keyframes imagePopInOut {
        0% {
            opacity: 0;
            transform: scale(0);
            width: 0;
            margin: 0;
        }

        10% {
            opacity: 1;
            transform: scale(1);
            width: 35px;
            margin: 0 -0.2rem;
        }

        15%,
        50% {
            opacity: 1;
            transform: scale(1);
            width: 35px;
            margin: 0 -0.2rem;
        }

        60% {
            opacity: 0;
            transform: scale(0);
            width: 0;
            margin: 0;
        }

        100% {
            opacity: 0;
            transform: scale(0);
            width: 0;
            margin: 0;
        }
    }

    /* Re-apply the animation with updated keyframes */
    .fancy-title img {
        animation: imagePopInOut 3s ease-in-out infinite;
    }
}
/* === Default (Desktop) Styles for .fancy-title2 === */

.fancy-title2 {
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.fancy-title2 .text-left {
    position: relative;
    z-index: 1;
    display: inline-block;
    animation: moveLeft2 3s ease-in-out infinite;
}

.fancy-title2 .text-right {
    position: relative;
    z-index: 1;
    display: inline-block;
    animation: moveRight2 3s ease-in-out infinite;
}

.fancy-title2 img {
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0;
    position: relative;
    z-index: 2;
    animation: imagePopInOut2 3s ease-in-out infinite;
}

@keyframes moveLeft2 {
    0%, 100% { transform: translateX(0); }
    10%, 50% { transform: translateX(-1px); }
    60% { transform: translateX(0); }
}

@keyframes moveRight2 {
    0%, 100% { transform: translateX(0); }
    10%, 50% { transform: translateX(1px); }
    60% { transform: translateX(0); }
}

/* Desktop image size: 45px */
@keyframes imagePopInOut2 {
    0% {
        opacity: 0;
        transform: scale(0);
        width: 0;
        margin: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
        width: 45px;
        margin: 0 -0.2rem;
    }
    15%, 50% {
        opacity: 1;
        transform: scale(1);
        width: 45px;
        margin: 0 -0.2rem;
    }
    60%, 100% {
        opacity: 0;
        transform: scale(0);
        width: 0;
        margin: 0;
    }
}

/* === Mobile-Specific Animation (38px image) === */

@keyframes imagePopInOut2Mobile {
    0% {
        opacity: 0;
        transform: scale(0);
        width: 0;
        margin: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
        width: 30px;
        margin: 0 -0.2rem;
    }
    15%, 50% {
        opacity: 1;
        transform: scale(1);
        width: 30px;
        margin: 0 -0.2rem;
    }
    60%, 100% {
        opacity: 0;
        transform: scale(0);
        width: 0;
        margin: 0;
    }
}

/* Apply mobile animation on small screens */
@media (max-width: 768px) {
    .fancy-title2 img {
        animation-name: imagePopInOut2Mobile;
        /* Keep other animation properties consistent */
        animation-duration: 3s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
    }
}
body[lang="ar"],
[lang="ar"] {
    font-family: "Tajawal", sans-serif;
}
body.rtl,
body.rtl * {
    font-family: "Tajawal", sans-serif !important;
}
.rtl .list-item:not(:last-child)::after {
    right: 10px;
}
.rtl .number-image
 {
margin-right:0px;
    margin-left: 15px;
}