/*! =================== Header =================== */
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    margin-top: 0;
    padding-top: 20px;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(199, 255, 197, .25),
            rgba(255, 255, 255, .45),
            rgba(14, 115, 0, .25));
    /* background: linear-gradient(90deg, rgb(109 191 106 / 40%), rgb(255 255 255 / 50%), rgb(14 115 0 / 27%)); */
    z-index: 1;
}
.hero .main-container {
    position: relative;
    z-index: 2;
}
.hero-content {
    margin-inline: auto;
    text-align: center;
}
.hero-content h1 {
    font-family: "font_bold";
    font-size: clamp(1.5rem, 6vw, 3.5rem);
    color: var(--main-color);
    line-height: 1.4;
}
.hero-content h1 span {
    color: var(--second-color);
}
.hero-content p {
    margin: 1.5rem auto 2rem;
    max-width: 600px;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.8;
    color: var(--main-color);
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-buttons button {
    padding: .9rem 2rem;
    border-radius: 50px;
    color: var(--white-color);
    background: var(--second-color);
    transition: .3s;
}
.hero-buttons button:hover {
    background: var(--main-color);
}
.hero .main-container{
    position: relative;
    z-index: 2;
}
.hero-content h1{
    font-family: "font_bold";
    font-size: clamp(1.5rem,6vw,3.5rem);
    color: var(--main-color);
    line-height: 1.4;
}
.hero-content h1 span{
    color: var(--second-color);
}
.hero-content p{
    margin: 1.5rem auto 2rem;
    max-width: 600px;
    font-size: clamp(1rem,1.2vw,1.2rem);
    line-height: 1.8;
    color: var(--main-color);
}
.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-buttons button{
    padding: .9rem 2rem;
    border-radius: 50px;
    color: var(--white-color);
    background: var(--second-color);
    transition: .3s;
}
.hero-buttons button:hover{
    background: var(--main-color);
}

/*! =================== How-to-Use Section =================== */
.how-to-Use .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.how-to-Use .item .circle {
    position: relative;
}

.how-to-Use .item .circle .orbit-ring {
    position: absolute;
    width: 145px;
    height: 145px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(to right, rgb(7, 103, 2), rgb(26, 180, 5)) border-box;
    background-size: 100% 100%, 300% 100%;
    z-index: -1;
    animation: orbit-spin 4s linear infinite;
}

.how-to-Use .item .circle .orbit-ring::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(to right, rgb(7, 103, 2), rgb(26, 180, 5)) border-box;
    background-size: 100% 100%, 300% 100%;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.how-to-Use .item .circle .orbit-ring::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(to right, rgb(7, 103, 2), rgb(26, 180, 5)) border-box;
    background-size: 100% 100%, 300% 100%;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes orbit-spin {
    from {
        transform: translate(-50%, -50%)rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.how-to-Use .item .circle .num {
    font-size: 30px;
    font-weight: bold;
    color: var(--main-color);
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 20px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(to right, rgb(7, 103, 2), rgb(26, 180, 5)) border-box;
    background-size: 100% 100%, 300% 100%;
    border-radius: 50%;
}

.how-to-Use .item .circle .num span {
    background-image: linear-gradient(to left, var(--main-color), var(--second-color));
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.how-to-Use .item .text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.how-to-Use .item .text h4 {
    background-image: linear-gradient(to left, var(--main-color), var(--second-color));
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
    font-size: clamp(17px, 3vw, 20px);
}

.how-to-Use .item .text p {
    font-size: clamp(13px, 3vw, 16px);
    color: rgba(0, 0, 0, 0.72);
}

/*! =================== Features Section =================== */
.features {
    overflow: hidden;
}

.features .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-block: 35px;
    border-radius: 35px;
    border: 2px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(to right, rgb(7, 103, 2), rgb(26, 180, 5)) border-box;
    background-size: 100% 100%, 300% 100%;
    position: relative;
    height: 100%;
}

.features .item::before {
    content: "";
    position: absolute;
    width: 102%;
    height: 102%;
    background-image: linear-gradient(to left, var(--main-color), var(--second-color));
    border-radius: 35px;
    top: 0;
    right: 0;
    z-index: -1;
    transform: rotate(-5deg);
    transition: .5s;
}

/* .features .item:hover::before {
    transform: rotate(-175deg);
} */
.features .item:hover::before {
    transform: rotate(0);
}

.features .item figure {
    background-image: linear-gradient(45deg, var(--main-color), var(--second-color));
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.features .item figure img {
    width: 90%;
    height: 90%;
    padding: 15px;
}

.features .item .text {
    display: flex;
    flex-direction: column;
    gap: 10PX;
    text-align: center;
    padding-inline: 10px;
    padding-bottom: 40px;
}

.features .item .text h4 {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: bold;
}

.features .item .text p {
    font-size: clamp(16px, 3vw, 18px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*! =========== Form Add-Loast (Modal) ===========*/
#add-loast .modal-content {
    border: none;
    background-color: transparent;
    position: relative;
}
#add-loast .modal-body {
    background-color: var(--white-color);
    padding: 30px 40px;
    border-radius: 20px;
    margin-top: 20px;
}
#add-loast .upload-img {
    background-color: var(--light-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 250px;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    padding: 15px;
    text-align: center;
}
#add-loast .upload-img .preview-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 220px;
    display: none;
}
#add-loast .upload-img .preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
#add-loast .upload-img img {
    width: 30px;
    height: 30px;
}
.form-box {
    padding-bottom: 25px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(220, 220, 220);
}
.form-box>.row {
    padding-right: 15px;
}
.form-content .head-title {
    margin-block: 0;
}
.group-input,
.select-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.select-group {
    position: relative;
    flex-direction: column-reverse;
}

.select-group .arrow {
    position: absolute;
    left: 10px;
    width: 20px;
    height: 20px;
    top: 15px;
}

.select2-container--default .select2-selection--single{
    justify-content: end;
}


.radio-group{
    position: relative;
    margin-bottom: 16px;
}

.radio-group .text-danger.small{
    position: absolute;
    top: 102%;
    right: 0;
    left: unset;
    width: 100%;
    line-height: 1.1;
    font-size: 13px;
}

select,
input,
textarea {
    background-color: var(--light-color);
    padding: 10px 15px;
    border-radius: 10px;
    appearance: none;
    border: 1px solid transparent;
    transition: .5s;
    color: rgba(0, 0, 0, 0.78);
}

textarea {
    resize: none;
    height: 100px;
}

select:focus,
input:focus,
textarea:focus {
    border-color: var(--second-color);
    box-shadow: 0 0 5px var(--second-color);
}

input[type="tel"],
input[type="time"] {
    text-align: end;
}

.closeBtn-modal {
    background-color: var(--second-color);
    border-radius: 50%;
    color: var(--white-color);
}

.closeBtn-modal {
    background-color: var(--second-color);
    border-radius: 50%;
    color: var(--white-color);
    width: 25px;
    height: 25px;
    font-size: 17px;
    display: grid;
    place-items: center;
    position: absolute;
    top: -10px;
    z-index: 9;
    transition: .3s;
}

.closeBtn-modal:hover {
    background-color: var(--white-color);
    color: var(--second-color);
}

/*! =================== About Section =================== */
.about-section {
    position: relative;
    display: flex;
    align-items: center;
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;

    background-image: url("../assets/images/about-us-bg.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.about-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(255 255 255 / 50%) 0%, rgb(255 255 255 / 50%) 40%, rgb(255 255 255 / 50%) 100%);
    z-index: 1;
}

.about-section .main-container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 700px;
    text-align: star;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
}

.section-badge {
    width: fit-content;
    margin-right: auto;
    background: var(--light-color);
    color: var(--second-color);
    padding: clamp(.6rem, 1vw, .8rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 999px;
    font-size: clamp(.9rem, 1vw, 1rem);
    font-weight: 600;
}

.about-content h2 {
    color: var(--black-color);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.4;
    font-weight: 700;
}

.about-content h2 span {
    display: block;
    color: var(--second-color);
}

.about-content p {
    color: #444;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 2;
}

.stats {
    display: flex;
    justify-content: flex-start;
    margin-top: clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
}

.stat-box {
    padding-inline: clamp(1rem, 2vw, 2rem);
    position: relative;
    text-align: center;
}

.stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background: var(--second-color);
}

.stat-box h3 {
    color: var(--second-color);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
}

.stat-box span {
    color: var(--second-color);
    font-size: clamp(.9rem, 1vw, 3rem);
    font-weight: 500;
}
/*! =================== Download Section =================== */
.download-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 6rem);
}
.download-images{
    width: 100%;
    display: flex;
    justify-content: center;
}
.download-images .dn-lo-im {
    position: relative;
    width: min(100%, 550px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* الدائرة الخلفية */
.circle-bg {
    position: absolute;
    width: 475px;
    height: 490px;
    border-radius: 50%;
    background: var(--light-color);
    border: 18px solid var(--second-color);
    box-shadow: 0 0 20px var(--second-color);
    z-index: 1;
    animation: rotateCircle 20s linear infinite;
    transform-origin: center;
    position: relative;
}

.circle-bg::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #269f15, #269f15) border-box;
    background-size: 100% 100%, 300% 100%;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.circle-bg::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #269f15, #269f15) border-box;
    background-size: 100% 100%, 300% 100%;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* إعدادات عامة للصور */
.phone {
    position: absolute;
    width: 200px;
    height: 420px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, .15));
    z-index: 2;
}

/* الموبايل الخلفي */
.back-phone {
    left: 110px;
    top: 20px;
    transform: rotate(-14deg);
    z-index: 3;
    animation: floatBack 4s ease-in-out infinite;
}

/* الموبايل الأمامي */
.front-phone {
    right: 120px;
    top: 20px;
    transform: rotate(6deg);
    animation: floatFront 4s ease-in-out infinite;
}

@keyframes floatFront {
    0% {
        transform: rotate(6deg) translateY(0);
    }
    50% {
        transform: rotate(6deg) translateY(-18px);
    }
    100% {
        transform: rotate(6deg) translateY(0);
    }
}

@keyframes floatBack {
    0% {
        transform: rotate(-14deg) translateY(0);
    }
    50% {
        transform: rotate(-14deg) translateY(18px);
    }
    100% {
        transform: rotate(-14deg) translateY(0);
    }
}

.download-content {
    text-align: start;
}

.download-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.4;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.download-content h2 span {
    display: block;
    color: var(--second-color);
}

.download-content p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 2;
    color: #555;
}

.download-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.store-btn {
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(.5rem, 1vw, 1rem);
    padding: 1rem 1.4rem;
    border-radius: 18px;
    background: var(--second-color);
    color: var(--white-color);
    text-decoration: none;
    transition: .3s;
}

.store-btn:hover {
    transform: translateY(-4px);
}

.store-btn .store-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-btn small {
    display: block;
    font-size: .8rem;
}

.store-btn span {
    font-size: 1.1rem;
    font-weight: 600;
}

.store-btn i {
    font-size: 1.7rem;
}

.qr-box {
    text-align: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: anchor-center;
}

.qr-box img {
    width: 140px;
    display: block;
    margin-bottom: .7rem;
}

.qr-box span {
    font-size: .8rem;
    color: #666;
}

/*! =================== Contact Section =================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    background: var(--light-color);
    color: var(--second-color);
    padding: .7rem 1.8rem;
    border-radius: 50px;
    font-size: clamp(.9rem, 1vw, 1rem);
    font-family: "font_bold";
    margin-bottom: 2rem;
}

.contact-form form {
    width: 100%;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.4rem;
}

.input-group label {
    color: var(--main-color);
    font-size: clamp(.9rem, 1vw, 1rem);
    font-family: "font_bold";
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: var(--light-color);
    border: 1px solid transparent;
    border-radius: 15px !important;
    padding: 1rem 1.2rem;
    font-size: clamp(.9rem, 1vw, 1rem);
    color: var(--main-color);
    resize: none;
    transition: .3s;
    text-align: right;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--second-color);
}

.input-group textarea {
    min-height: 150px;
}

.send-btn {
    width: 180px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    margin: 2rem auto 0;
    background: var(--second-color);
    color: var(--white-color);
    border-radius: 50px;
    cursor: pointer;
    font-family: "font_bold";
    transition: .3s;
}

.send-btn:hover {
    background: var(--main-color);
}

/*! =================== Contact Info Section =================== */
.contact-info {
    display: flex;
    flex-direction: column;
}
.contact-info h2 {
    font-family: "font_bold";
    font-size: clamp(2rem, 3vw, 3.3rem);
    color: var(--main-color);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.contact-info h2 span {
    display: block;
    color: var(--second-color);
}

.contact-info p {
    color: #444;
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 400;
    line-height: 2;
    margin-bottom: 2.5rem;
}

.info-card {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: start;
    flex-direction: row-reverse;
    align-items: center;
    background: var(--light-color);
    border: 1px solid var(--second-color);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.info-text {
    padding: 0 1.5rem;
}

.info-text h4 {
    font-family: "font_bold";
    font-size: .95rem;
    color: var(--main-color);
    margin-bottom: .3rem;
}

.info-text span {
    color: #666;
    font-size: .9rem;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--second-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    border-radius: 50px;
}
